false
false
0

Contract Address Details

0x1c8f68e8AdBD75c23281e5c88E44D0b7023a4238

Creator
0xe4d68a–950cf5 at 0x4954b8–e14986
Balance
0 EOS
Tokens
Fetching tokens...
Transactions
366,234 Transactions
Transfers
409,629 Transfers
Gas Used
52,442,186,728
Last Balance Update
54312685
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
NoahRouter




Optimization enabled
true
Compiler version
v0.6.6+commit.6c089d02




Optimization runs
99999
Verified at
2023-04-14T08:44:04.306321Z

Constructor Arguments

00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b2752000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f

Arg [0] (address) : 0x75782a57c6522b8b17fcc01ff11759f4535b2752
Arg [1] (address) : 0xc00592aa41d32d137dc480d9f6d0df19b860104f

              

contracts/NoahRouter.sol

Sol2uml
new
// SPDX-License-Identifier: GPL-3.0
pragma solidity =0.6.6;

import '@uniswap/lib/contracts/libraries/TransferHelper.sol';

import "./interfaces/INoahRouter02.sol";
import "./interfaces/INoahFactory.sol";
import "./libraries/NoahLibrary.sol";
import "./libraries/SafeMath.sol";
import "./interfaces/IERC20.sol";
import "./interfaces/IWETH.sol";

contract NoahRouter is INoahRouter02 {
    using SafeMath for uint256;

    address public immutable override factory;
    address public immutable override WETH;

    modifier ensure(uint256 deadline) {
        require(deadline >= block.timestamp, "NoahRouter: EXPIRED");
        _;
    }

    constructor(address _factory, address _WETH) public {
        factory = _factory;
        WETH = _WETH;
    }

    receive() external payable {
        assert(msg.sender == WETH); // only accept ETH via fallback from the WETH contract
    }

    // **** ADD LIQUIDITY ****
    function _addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin
    ) internal virtual returns (uint256 amountA, uint256 amountB) {
        // create the pair if it doesn't exist yet
        if (INoahFactory(factory).getPair(tokenA, tokenB) == address(0)) {
            INoahFactory(factory).createPair(tokenA, tokenB);
        }
        (uint256 reserveA, uint256 reserveB) = NoahLibrary.getReserves(factory, tokenA, tokenB);
        if (reserveA == 0 && reserveB == 0) {
            (amountA, amountB) = (amountADesired, amountBDesired);
        } else {
            uint256 amountBOptimal = NoahLibrary.quote(amountADesired, reserveA, reserveB);
            if (amountBOptimal <= amountBDesired) {
                require(amountBOptimal >= amountBMin, "NoahRouter: INSUFFICIENT_B_AMOUNT");
                (amountA, amountB) = (amountADesired, amountBOptimal);
            } else {
                uint256 amountAOptimal = NoahLibrary.quote(amountBDesired, reserveB, reserveA);
                assert(amountAOptimal <= amountADesired);
                require(amountAOptimal >= amountAMin, "NoahRouter: INSUFFICIENT_A_AMOUNT");
                (amountA, amountB) = (amountAOptimal, amountBDesired);
            }
        }
    }

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        virtual
        override
        ensure(deadline)
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        )
    {
        (amountA, amountB) = _addLiquidity(tokenA, tokenB, amountADesired, amountBDesired, amountAMin, amountBMin);
        address pair = NoahLibrary.pairFor(factory, tokenA, tokenB);
        TransferHelper.safeTransferFrom(tokenA, msg.sender, pair, amountA);
        TransferHelper.safeTransferFrom(tokenB, msg.sender, pair, amountB);
        liquidity = INoahPair(pair).mint(to);
    }

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        virtual
        override
        ensure(deadline)
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        )
    {
        (amountToken, amountETH) = _addLiquidity(
            token,
            WETH,
            amountTokenDesired,
            msg.value,
            amountTokenMin,
            amountETHMin
        );
        address pair = NoahLibrary.pairFor(factory, token, WETH);
        TransferHelper.safeTransferFrom(token, msg.sender, pair, amountToken);
        IWETH(WETH).deposit{value: amountETH}();
        assert(IWETH(WETH).transfer(pair, amountETH));
        liquidity = INoahPair(pair).mint(to);
        // refund dust eth, if any
        if (msg.value > amountETH) TransferHelper.safeTransferETH(msg.sender, msg.value - amountETH);
    }

    // **** REMOVE LIQUIDITY ****
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) public virtual override ensure(deadline) returns (uint256 amountA, uint256 amountB) {
        address pair = NoahLibrary.pairFor(factory, tokenA, tokenB);
        INoahPair(pair).transferFrom(msg.sender, pair, liquidity); // send liquidity to pair
        (uint256 amount0, uint256 amount1) = INoahPair(pair).burn(to);
        (address token0, ) = NoahLibrary.sortTokens(tokenA, tokenB);
        (amountA, amountB) = tokenA == token0 ? (amount0, amount1) : (amount1, amount0);
        require(amountA >= amountAMin, "NoahRouter: INSUFFICIENT_A_AMOUNT");
        require(amountB >= amountBMin, "NoahRouter: INSUFFICIENT_B_AMOUNT");
    }

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) public virtual override ensure(deadline) returns (uint256 amountToken, uint256 amountETH) {
        (amountToken, amountETH) = removeLiquidity(
            token,
            WETH,
            liquidity,
            amountTokenMin,
            amountETHMin,
            address(this),
            deadline
        );
        TransferHelper.safeTransfer(token, to, amountToken);
        IWETH(WETH).withdraw(amountETH);
        TransferHelper.safeTransferETH(to, amountETH);
    }

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external virtual override returns (uint256 amountA, uint256 amountB) {
        address pair = NoahLibrary.pairFor(factory, tokenA, tokenB);
        uint256 value = approveMax ? uint256(-1) : liquidity;
        INoahPair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountA, amountB) = removeLiquidity(tokenA, tokenB, liquidity, amountAMin, amountBMin, to, deadline);
    }

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external virtual override returns (uint256 amountToken, uint256 amountETH) {
        address pair = NoahLibrary.pairFor(factory, token, WETH);
        uint256 value = approveMax ? uint256(-1) : liquidity;
        INoahPair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountToken, amountETH) = removeLiquidityETH(token, liquidity, amountTokenMin, amountETHMin, to, deadline);
    }

    // **** REMOVE LIQUIDITY (supporting fee-on-transfer tokens) ****
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) public virtual override ensure(deadline) returns (uint256 amountETH) {
        (, amountETH) = removeLiquidity(token, WETH, liquidity, amountTokenMin, amountETHMin, address(this), deadline);
        TransferHelper.safeTransfer(token, to, IERC20(token).balanceOf(address(this)));
        IWETH(WETH).withdraw(amountETH);
        TransferHelper.safeTransferETH(to, amountETH);
    }

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external virtual override returns (uint256 amountETH) {
        address pair = NoahLibrary.pairFor(factory, token, WETH);
        uint256 value = approveMax ? uint256(-1) : liquidity;
        INoahPair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        amountETH = removeLiquidityETHSupportingFeeOnTransferTokens(
            token,
            liquidity,
            amountTokenMin,
            amountETHMin,
            to,
            deadline
        );
    }

    // **** SWAP ****
    // requires the initial amount to have already been sent to the first pair
    function _swap(
        uint256[] memory amounts,
        address[] memory path,
        address _to
    ) internal virtual {
        for (uint256 i; i < path.length - 1; i++) {
            (address input, address output) = (path[i], path[i + 1]);
            (address token0, ) = NoahLibrary.sortTokens(input, output);
            uint256 amountOut = amounts[i + 1];
            (uint256 amount0Out, uint256 amount1Out) =
                input == token0 ? (uint256(0), amountOut) : (amountOut, uint256(0));
            address to = i < path.length - 2 ? NoahLibrary.pairFor(factory, output, path[i + 2]) : _to;
            INoahPair(NoahLibrary.pairFor(factory, input, output)).swap(amount0Out, amount1Out, to, new bytes(0));
        }
    }

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external virtual override ensure(deadline) returns (uint256[] memory amounts) {
        amounts = NoahLibrary.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, "NoahRouter: INSUFFICIENT_OUTPUT_AMOUNT");
        TransferHelper.safeTransferFrom(
            path[0],
            msg.sender,
            NoahLibrary.pairFor(factory, path[0], path[1]),
            amounts[0]
        );
        _swap(amounts, path, to);
    }

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external virtual override ensure(deadline) returns (uint256[] memory amounts) {
        amounts = NoahLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, "NoahRouter: EXCESSIVE_INPUT_AMOUNT");
        TransferHelper.safeTransferFrom(
            path[0],
            msg.sender,
            NoahLibrary.pairFor(factory, path[0], path[1]),
            amounts[0]
        );
        _swap(amounts, path, to);
    }

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable virtual override ensure(deadline) returns (uint256[] memory amounts) {
        require(path[0] == WETH, "NoahRouter: INVALID_PATH");
        amounts = NoahLibrary.getAmountsOut(factory, msg.value, path);
        require(amounts[amounts.length - 1] >= amountOutMin, "NoahRouter: INSUFFICIENT_OUTPUT_AMOUNT");
        IWETH(WETH).deposit{value: amounts[0]}();
        assert(IWETH(WETH).transfer(NoahLibrary.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
    }

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external virtual override ensure(deadline) returns (uint256[] memory amounts) {
        require(path[path.length - 1] == WETH, "NoahRouter: INVALID_PATH");
        amounts = NoahLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, "NoahRouter: EXCESSIVE_INPUT_AMOUNT");
        TransferHelper.safeTransferFrom(
            path[0],
            msg.sender,
            NoahLibrary.pairFor(factory, path[0], path[1]),
            amounts[0]
        );
        _swap(amounts, path, address(this));
        IWETH(WETH).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external virtual override ensure(deadline) returns (uint256[] memory amounts) {
        require(path[path.length - 1] == WETH, "NoahRouter: INVALID_PATH");
        amounts = NoahLibrary.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, "NoahRouter: INSUFFICIENT_OUTPUT_AMOUNT");
        TransferHelper.safeTransferFrom(
            path[0],
            msg.sender,
            NoahLibrary.pairFor(factory, path[0], path[1]),
            amounts[0]
        );
        _swap(amounts, path, address(this));
        IWETH(WETH).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable virtual override ensure(deadline) returns (uint256[] memory amounts) {
        require(path[0] == WETH, "NoahRouter: INVALID_PATH");
        amounts = NoahLibrary.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= msg.value, "NoahRouter: EXCESSIVE_INPUT_AMOUNT");
        IWETH(WETH).deposit{value: amounts[0]}();
        assert(IWETH(WETH).transfer(NoahLibrary.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
        // refund dust eth, if any
        if (msg.value > amounts[0]) TransferHelper.safeTransferETH(msg.sender, msg.value - amounts[0]);
    }

    // **** SWAP (supporting fee-on-transfer tokens) ****
    // requires the initial amount to have already been sent to the first pair
    function _swapSupportingFeeOnTransferTokens(address[] memory path, address _to) internal virtual {
        for (uint256 i; i < path.length - 1; i++) {
            (address input, address output) = (path[i], path[i + 1]);
            (address token0, ) = NoahLibrary.sortTokens(input, output);
            INoahPair pair = INoahPair(NoahLibrary.pairFor(factory, input, output));
            uint256 feeRate = INoahFactory(factory).getFeeRate(address(pair));
            uint256 amountInput;
            uint256 amountOutput;
            {
                // scope to avoid stack too deep errors
                (uint256 reserve0, uint256 reserve1, ) = pair.getReserves();
                (uint256 reserveInput, uint256 reserveOutput) =
                    input == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
                amountInput = IERC20(input).balanceOf(address(pair)).sub(reserveInput);
                amountOutput = NoahLibrary.getAmountOut(feeRate, amountInput, reserveInput, reserveOutput);
            }
            (uint256 amount0Out, uint256 amount1Out) =
                input == token0 ? (uint256(0), amountOutput) : (amountOutput, uint256(0));
            address to = i < path.length - 2 ? NoahLibrary.pairFor(factory, output, path[i + 2]) : _to;
            pair.swap(amount0Out, amount1Out, to, new bytes(0));
        }
    }

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external virtual override ensure(deadline) {
        TransferHelper.safeTransferFrom(
            path[0],
            msg.sender,
            NoahLibrary.pairFor(factory, path[0], path[1]),
            amountIn
        );
        uint256 balanceBefore = IERC20(path[path.length - 1]).balanceOf(to);
        _swapSupportingFeeOnTransferTokens(path, to);
        require(
            IERC20(path[path.length - 1]).balanceOf(to).sub(balanceBefore) >= amountOutMin,
            "NoahRouter: INSUFFICIENT_OUTPUT_AMOUNT"
        );
    }

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable virtual override ensure(deadline) {
        require(path[0] == WETH, "NoahRouter: INVALID_PATH");
        uint256 amountIn = msg.value;
        IWETH(WETH).deposit{value: amountIn}();
        assert(IWETH(WETH).transfer(NoahLibrary.pairFor(factory, path[0], path[1]), amountIn));
        uint256 balanceBefore = IERC20(path[path.length - 1]).balanceOf(to);
        _swapSupportingFeeOnTransferTokens(path, to);
        require(
            IERC20(path[path.length - 1]).balanceOf(to).sub(balanceBefore) >= amountOutMin,
            "NoahRouter: INSUFFICIENT_OUTPUT_AMOUNT"
        );
    }

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external virtual override ensure(deadline) {
        require(path[path.length - 1] == WETH, "NoahRouter: INVALID_PATH");
        TransferHelper.safeTransferFrom(
            path[0],
            msg.sender,
            NoahLibrary.pairFor(factory, path[0], path[1]),
            amountIn
        );
        _swapSupportingFeeOnTransferTokens(path, address(this));
        uint256 amountOut = IERC20(WETH).balanceOf(address(this));
        require(amountOut >= amountOutMin, "NoahRouter: INSUFFICIENT_OUTPUT_AMOUNT");
        IWETH(WETH).withdraw(amountOut);
        TransferHelper.safeTransferETH(to, amountOut);
    }

    // **** LIBRARY FUNCTIONS ****
    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) public pure virtual override returns (uint256 amountB) {
        return NoahLibrary.quote(amountA, reserveA, reserveB);
    }

    function getAmountOut(
        uint256 feeRate,
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) public pure virtual override returns (uint256 amountOut) {
        return NoahLibrary.getAmountOut(feeRate, amountIn, reserveIn, reserveOut);
    }

    function getAmountIn(
        uint256 feeRate,
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) public pure virtual override returns (uint256 amountIn) {
        return NoahLibrary.getAmountIn(feeRate, amountOut, reserveIn, reserveOut);
    }

    function getAmountsOut(uint256 amountIn, address[] memory path)
        public
        view
        virtual
        override
        returns (uint256[] memory amounts)
    {
        return NoahLibrary.getAmountsOut(factory, amountIn, path);
    }

    function getAmountsIn(uint256 amountOut, address[] memory path)
        public
        view
        virtual
        override
        returns (uint256[] memory amounts)
    {
        return NoahLibrary.getAmountsIn(factory, amountOut, path);
    }
}
        

@uniswap/lib/contracts/libraries/TransferHelper.sol

// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity >=0.6.0;

// helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false
library TransferHelper {
    function safeApprove(
        address token,
        address to,
        uint256 value
    ) internal {
        // bytes4(keccak256(bytes('approve(address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::safeApprove: approve failed'
        );
    }

    function safeTransfer(
        address token,
        address to,
        uint256 value
    ) internal {
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::safeTransfer: transfer failed'
        );
    }

    function safeTransferFrom(
        address token,
        address from,
        address to,
        uint256 value
    ) internal {
        // bytes4(keccak256(bytes('transferFrom(address,address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::transferFrom: transferFrom failed'
        );
    }

    function safeTransferETH(address to, uint256 value) internal {
        (bool success, ) = to.call{value: value}(new bytes(0));
        require(success, 'TransferHelper::safeTransferETH: ETH transfer failed');
    }
}
          

contracts/interfaces/IERC20.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0;

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

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);
}
          

contracts/interfaces/INoahFactory.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0;

interface INoahFactory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint256 pid);
    event SetFeeRate(address indexed pair,  uint256 feeRate);
    
    // Returns uint
    // Pending  - 0
    // Active  - 1
    enum State {Pending, Active}

    function state() external view returns (State);
    
    function feeTo() external view returns (address);

    function admin() external view returns (address);

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

    function getFeeRate(address pair) external view returns (uint256 feeRate);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setAdmin(address) external;

    function setFeeRate(address pair, uint256 _feeRate) external;
    
    function toggleState() external;

    function INIT_CODE_PAIR_HASH() external view returns (bytes32);
}
          

contracts/interfaces/INoahPair.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1, uint256 balance, uint256 liquidity);
    event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to, uint256 balance, uint256 liquidity);

    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1, uint256 totalSupply);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}
          

contracts/interfaces/INoahRouter01.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.2;

interface INoahRouter01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 feeRate,
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 feeRate,
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}
          

contracts/interfaces/INoahRouter02.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.2;

import "./INoahRouter01.sol";

interface INoahRouter02 is INoahRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}
          

contracts/interfaces/IWETH.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;

    function transfer(address to, uint256 value) external returns (bool);

    function withdraw(uint256) external;
}
          

contracts/libraries/NoahLibrary.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0;

import "./SafeMath.sol";
import "../interfaces/INoahFactory.sol";
import "../interfaces/INoahPair.sol";

library NoahLibrary {
    using SafeMath for uint256;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, "NoahLibrary: IDENTICAL_ADDRESSES");
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), "NoahLibrary: ZERO_ADDRESS");
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(
        address factory,
        address tokenA,
        address tokenB
    ) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(
            uint256(
                keccak256(
                    abi.encodePacked(
                        hex"ff",
                        factory,
                        keccak256(abi.encodePacked(token0, token1)),
                        hex"a6b26402ddb47609a12397932ea9563f6d23b8a0e91815a74e73c4358e3a2338" // init code hash
                    )
                )
            )
        );
    }

    // fetches and sorts the reserves for a pair
    function getReserves(
        address factory,
        address tokenA,
        address tokenB
    ) internal view returns (uint256 reserveA, uint256 reserveB) {
        (address token0, ) = sortTokens(tokenA, tokenB);
        (uint256 reserve0, uint256 reserve1, ) = INoahPair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) internal pure returns (uint256 amountB) {
        require(amountA > 0, "NoahLibrary: INSUFFICIENT_AMOUNT");
        require(reserveA > 0 && reserveB > 0, "NoahLibrary: INSUFFICIENT_LIQUIDITY");
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(
        uint256 feeRate,
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) internal pure returns (uint256 amountOut) {
        require(amountIn > 0, "NoahLibrary: INSUFFICIENT_INPUT_AMOUNT");
        require(reserveIn > 0 && reserveOut > 0, "NoahLibrary: INSUFFICIENT_LIQUIDITY");
        uint256 amountInWithFee = amountIn.mul(uint256(10000).sub(feeRate));
        uint256 numerator = amountInWithFee.mul(reserveOut);
        uint256 denominator = reserveIn.mul(10000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(
        uint256 feeRate,
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) internal pure returns (uint256 amountIn) {
        require(amountOut > 0, "NoahLibrary: INSUFFICIENT_OUTPUT_AMOUNT");
        require(reserveIn > 0 && reserveOut > 0, "NoahLibrary: INSUFFICIENT_LIQUIDITY");
        uint256 numerator = reserveIn.mul(amountOut).mul(10000);
        uint256 denominator = reserveOut.sub(amountOut).mul(uint256(10000).sub(feeRate));
        amountIn = (numerator / denominator).add(1);
    }

    // performs chained getAmountOut calculations on any number of pairs
    function getAmountsOut(
        address factory,
        uint256 amountIn,
        address[] memory path
    ) internal view returns (uint256[] memory amounts) {
        require(path.length >= 2, "NoahLibrary: INVALID_PATH");
        amounts = new uint256[](path.length);
        amounts[0] = amountIn;
        for (uint256 i; i < path.length - 1; i++) {
            (uint256 reserveIn, uint256 reserveOut) = getReserves(factory, path[i], path[i + 1]);
            address pair = pairFor(factory, path[i], path[i + 1]);
            uint256 feeRate = INoahFactory(factory).getFeeRate(pair);
            amounts[i + 1] = getAmountOut(feeRate, amounts[i], reserveIn, reserveOut);
        }
    }

    // performs chained getAmountIn calculations on any number of pairs
    function getAmountsIn(
        address factory,
        uint256 amountOut,
        address[] memory path
    ) internal view returns (uint256[] memory amounts) {
        require(path.length >= 2, "NoahLibrary: INVALID_PATH");
        amounts = new uint256[](path.length);
        amounts[amounts.length - 1] = amountOut;
        for (uint256 i = path.length - 1; i > 0; i--) {
            (uint256 reserveIn, uint256 reserveOut) = getReserves(factory, path[i - 1], path[i]);
            address pair = pairFor(factory, path[i-1], path[i]);
            uint256 feeRate = INoahFactory(factory).getFeeRate(pair);
            amounts[i - 1] = getAmountIn(feeRate, amounts[i], reserveIn, reserveOut);
        }
    }
}
          

contracts/libraries/SafeMath.sol

// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.7.0;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

library SafeMath {
    function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x + y) >= x, "ds-math-add-overflow");
    }

    function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x - y) <= x, "ds-math-sub-underflow");
    }

    function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow");
    }
}
          

contracts/systemtest/DeflatingERC20.sol

pragma solidity =0.6.6;

import '../libraries/SafeMath.sol';

contract DeflatingERC20 {
    using SafeMath for uint;

    string public constant name = 'Deflating Test Token';
    string public constant symbol = 'DTT';
    uint8 public constant decimals = 18;
    uint  public totalSupply;
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;

    bytes32 public DOMAIN_SEPARATOR;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint) public nonces;

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

    constructor(uint _totalSupply) public {
        uint chainId;
        assembly {
            chainId := chainid()
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                keccak256(bytes(name)),
                keccak256(bytes('1')),
                chainId,
                address(this)
            )
        );
        _mint(msg.sender, _totalSupply);
    }

    function _mint(address to, uint value) internal {
        totalSupply = totalSupply.add(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(address(0), to, value);
    }

    function _burn(address from, uint value) internal {
        balanceOf[from] = balanceOf[from].sub(value);
        totalSupply = totalSupply.sub(value);
        emit Transfer(from, address(0), value);
    }

    function _approve(address owner, address spender, uint value) private {
        allowance[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function _transfer(address from, address to, uint value) private {
        uint burnAmount = value / 100;
        _burn(from, burnAmount);
        uint transferAmount = value.sub(burnAmount);
        balanceOf[from] = balanceOf[from].sub(transferAmount);
        balanceOf[to] = balanceOf[to].add(transferAmount);
        emit Transfer(from, to, transferAmount);
    }

    function approve(address spender, uint value) external returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function transfer(address to, uint value) external returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    function transferFrom(address from, address to, uint value) external returns (bool) {
        if (allowance[from][msg.sender] != uint(-1)) {
            allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
        }
        _transfer(from, to, value);
        return true;
    }

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        require(deadline >= block.timestamp, 'EXPIRED');
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
            )
        );
        address recoveredAddress = ecrecover(digest, v, r, s);
        require(recoveredAddress != address(0) && recoveredAddress == owner, 'INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}
          

contracts/systemtest/RouterEventEmitter.sol

pragma solidity =0.6.6;

import '../interfaces/INoahRouter02.sol';

contract RouterEventEmitter {
    event Amounts(uint[] amounts);

    receive() external payable {}

    function swapExactTokensForTokens(
        address router,
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external {
        (bool success, bytes memory returnData) = router.delegatecall(abi.encodeWithSelector(
            INoahRouter02(router).swapExactTokensForTokens.selector, amountIn, amountOutMin, path, to, deadline
        ));
        assert(success);
        emit Amounts(abi.decode(returnData, (uint[])));
    }

    function swapTokensForExactTokens(
        address router,
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external {
        (bool success, bytes memory returnData) = router.delegatecall(abi.encodeWithSelector(
            INoahRouter02(router).swapTokensForExactTokens.selector, amountOut, amountInMax, path, to, deadline
        ));
        assert(success);
        emit Amounts(abi.decode(returnData, (uint[])));
    }

    function swapExactETHForTokens(
        address router,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable {
        (bool success, bytes memory returnData) = router.delegatecall(abi.encodeWithSelector(
            INoahRouter02(router).swapExactETHForTokens.selector, amountOutMin, path, to, deadline
        ));
        assert(success);
        emit Amounts(abi.decode(returnData, (uint[])));
    }

    function swapTokensForExactETH(
        address router,
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external {
        (bool success, bytes memory returnData) = router.delegatecall(abi.encodeWithSelector(
            INoahRouter02(router).swapTokensForExactETH.selector, amountOut, amountInMax, path, to, deadline
        ));
        assert(success);
        emit Amounts(abi.decode(returnData, (uint[])));
    }

    function swapExactTokensForETH(
        address router,
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external {
        (bool success, bytes memory returnData) = router.delegatecall(abi.encodeWithSelector(
            INoahRouter02(router).swapExactTokensForETH.selector, amountIn, amountOutMin, path, to, deadline
        ));
        assert(success);
        emit Amounts(abi.decode(returnData, (uint[])));
    }

    function swapETHForExactTokens(
        address router,
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable {
        (bool success, bytes memory returnData) = router.delegatecall(abi.encodeWithSelector(
            INoahRouter02(router).swapETHForExactTokens.selector, amountOut, path, to, deadline
        ));
        assert(success);
        emit Amounts(abi.decode(returnData, (uint[])));
    }
}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_factory","internalType":"address"},{"type":"address","name":"_WETH","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"WETH","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"amountB","internalType":"uint256"},{"type":"uint256","name":"liquidity","internalType":"uint256"}],"name":"addLiquidity","inputs":[{"type":"address","name":"tokenA","internalType":"address"},{"type":"address","name":"tokenB","internalType":"address"},{"type":"uint256","name":"amountADesired","internalType":"uint256"},{"type":"uint256","name":"amountBDesired","internalType":"uint256"},{"type":"uint256","name":"amountAMin","internalType":"uint256"},{"type":"uint256","name":"amountBMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256","name":"amountToken","internalType":"uint256"},{"type":"uint256","name":"amountETH","internalType":"uint256"},{"type":"uint256","name":"liquidity","internalType":"uint256"}],"name":"addLiquidityETH","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"amountTokenDesired","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"factory","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"}],"name":"getAmountIn","inputs":[{"type":"uint256","name":"feeRate","internalType":"uint256"},{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"uint256","name":"reserveIn","internalType":"uint256"},{"type":"uint256","name":"reserveOut","internalType":"uint256"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"}],"name":"getAmountOut","inputs":[{"type":"uint256","name":"feeRate","internalType":"uint256"},{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"reserveIn","internalType":"uint256"},{"type":"uint256","name":"reserveOut","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"getAmountsIn","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"getAmountsOut","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"amountB","internalType":"uint256"}],"name":"quote","inputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"reserveA","internalType":"uint256"},{"type":"uint256","name":"reserveB","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"amountB","internalType":"uint256"}],"name":"removeLiquidity","inputs":[{"type":"address","name":"tokenA","internalType":"address"},{"type":"address","name":"tokenB","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountAMin","internalType":"uint256"},{"type":"uint256","name":"amountBMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountToken","internalType":"uint256"},{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETH","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETHSupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountToken","internalType":"uint256"},{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETHWithPermit","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"bool","name":"approveMax","internalType":"bool"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountETH","internalType":"uint256"}],"name":"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountTokenMin","internalType":"uint256"},{"type":"uint256","name":"amountETHMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"bool","name":"approveMax","internalType":"bool"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"amountA","internalType":"uint256"},{"type":"uint256","name":"amountB","internalType":"uint256"}],"name":"removeLiquidityWithPermit","inputs":[{"type":"address","name":"tokenA","internalType":"address"},{"type":"address","name":"tokenB","internalType":"address"},{"type":"uint256","name":"liquidity","internalType":"uint256"},{"type":"uint256","name":"amountAMin","internalType":"uint256"},{"type":"uint256","name":"amountBMin","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"bool","name":"approveMax","internalType":"bool"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapETHForExactTokens","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapExactETHForTokens","inputs":[{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"swapExactETHForTokensSupportingFeeOnTransferTokens","inputs":[{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapExactTokensForETH","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapExactTokensForTokens","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","inputs":[{"type":"uint256","name":"amountIn","internalType":"uint256"},{"type":"uint256","name":"amountOutMin","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapTokensForExactETH","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"uint256","name":"amountInMax","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256[]","name":"amounts","internalType":"uint256[]"}],"name":"swapTokensForExactTokens","inputs":[{"type":"uint256","name":"amountOut","internalType":"uint256"},{"type":"uint256","name":"amountInMax","internalType":"uint256"},{"type":"address[]","name":"path","internalType":"address[]"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"deadline","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x60c06040523480156200001157600080fd5b5060405162005a2b38038062005a2b833981810160405260408110156200003757600080fd5b5080516020909101516001600160601b0319606092831b8116608052911b1660a05260805160601c60a05160601c61589f6200018c600039806101ac5280610e695280610ea45280610fcc528061128f52806116e952806118f25280611e3a5280611fbe528061208e5280612195528061234852806123dd528061268252806127315280612806528061290b52806129f35280612a7452806131035280613439528061348f52806134c35280613544528061375e528061390e52806139a35250806110be52806111bc5280611362528061139b528061154652806117db52806118d05280611abd528061227b528061241c52806125b85280612ab35280612df6528061308852806130b152806130e152806132be528061346d528061384452806139e25280614418528061444e5280614afb5280614b275280614dcf5280615253528061533452806153b4525061589f6000f3fe60806040526004361061018f5760003560e01c80638803dbee116100d6578063c45a01551161007f578063e8e3370011610059578063e8e3370014610c7d578063f305d71914610d0a578063fb3bdb4114610d5d576101d5565b8063c45a015514610b31578063d06ca61f14610b46578063ded9382a14610bfd576101d5565b8063af2979eb116100b0578063af2979eb146109d4578063b6f9de9514610a34578063baa2abde14610ac7576101d5565b80638803dbee146108bb578063ad5c464814610960578063ad615dec1461099e576101d5565b806352707d8c116101385780635c11d795116101125780635c11d795146106de578063791ac947146107835780637ff36ab514610828576101d5565b806352707d8c146105d4578063571fd012146106225780635b0d59841461065e576101d5565b80632195995c116101695780632195995c146103ff57806338ed17391461048a5780634a25d94a1461052f576101d5565b806302751cec146101da57806318cbafe5146102535780631f00ca7414610348576101d5565b366101d5573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146101d357fe5b005b600080fd5b3480156101e657600080fd5b5061023a600480360360c08110156101fd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610df0565b6040805192835260208301919091528051918290030190f35b34801561025f57600080fd5b506102f8600480360360a081101561027657600080fd5b81359160208101359181019060608101604082013564010000000081111561029d57600080fd5b8201836020820111156102af57600080fd5b803590602001918460208302840111640100000000831117156102d157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f43565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561033457818101518382015260200161031c565b505050509050019250505060405180910390f35b34801561035457600080fd5b506102f86004803603604081101561036b57600080fd5b8135919081019060408101602082013564010000000081111561038d57600080fd5b82018360208201111561039f57600080fd5b803590602001918460208302840111640100000000831117156103c157600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061135b945050505050565b34801561040b57600080fd5b5061023a600480360361016081101561042357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff6101008201351690610120810135906101400135611391565b34801561049657600080fd5b506102f8600480360360a08110156104ad57600080fd5b8135916020810135918101906060810160408201356401000000008111156104d457600080fd5b8201836020820111156104e657600080fd5b8035906020019184602083028401116401000000008311171561050857600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356114cf565b34801561053b57600080fd5b506102f8600480360360a081101561055257600080fd5b81359160208101359181019060608101604082013564010000000081111561057957600080fd5b82018360208201111561058b57600080fd5b803590602001918460208302840111640100000000831117156105ad57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611660565b3480156105e057600080fd5b50610610600480360360808110156105f757600080fd5b50803590602081013590604081013590606001356118a3565b60408051918252519081900360200190f35b34801561062e57600080fd5b506106106004803603608081101561064557600080fd5b50803590602081013590604081013590606001356118ba565b34801561066a57600080fd5b50610610600480360361014081101561068257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356118c8565b3480156106ea57600080fd5b506101d3600480360360a081101561070157600080fd5b81359160208101359181019060608101604082013564010000000081111561072857600080fd5b82018360208201111561073a57600080fd5b8035906020019184602083028401116401000000008311171561075c57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611a1a565b34801561078f57600080fd5b506101d3600480360360a08110156107a657600080fd5b8135916020810135918101906060810160408201356401000000008111156107cd57600080fd5b8201836020820111156107df57600080fd5b8035906020019184602083028401116401000000008311171561080157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611db3565b6102f86004803603608081101561083e57600080fd5b8135919081019060408101602082013564010000000081111561086057600080fd5b82018360208201111561087257600080fd5b8035906020019184602083028401116401000000008311171561089457600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612121565b3480156108c757600080fd5b506102f8600480360360a08110156108de57600080fd5b81359160208101359181019060608101604082013564010000000081111561090557600080fd5b82018360208201111561091757600080fd5b8035906020019184602083028401116401000000008311171561093957600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612541565b34801561096c57600080fd5b50610975612680565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156109aa57600080fd5b50610610600480360360608110156109c157600080fd5b50803590602081013590604001356126a4565b3480156109e057600080fd5b50610610600480360360c08110156109f757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356126b9565b6101d360048036036080811015610a4a57600080fd5b81359190810190604081016020820135640100000000811115610a6c57600080fd5b820183602082011115610a7e57600080fd5b80359060200191846020830284011164010000000083111715610aa057600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612899565b348015610ad357600080fd5b5061023a600480360360e0811015610aea57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c00135612d7c565b348015610b3d57600080fd5b50610975613086565b348015610b5257600080fd5b506102f860048036036040811015610b6957600080fd5b81359190810190604081016020820135640100000000811115610b8b57600080fd5b820183602082011115610b9d57600080fd5b80359060200191846020830284011164010000000083111715610bbf57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506130aa945050505050565b348015610c0957600080fd5b5061023a6004803603610140811015610c2157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356130d7565b348015610c8957600080fd5b50610cec6004803603610100811015610ca157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e0013561322f565b60408051938452602084019290925282820152519081900360600190f35b610cec600480360360c0811015610d2057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356133be565b6102f860048036036080811015610d7357600080fd5b81359190810190604081016020820135640100000000811115610d9557600080fd5b820183602082011115610da757600080fd5b80359060200191846020830284011164010000000083111715610dc957600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356136ea565b6000808242811015610e6357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b610e92897f00000000000000000000000000000000000000000000000000000000000000008a8a8a308a612d7c565b9093509150610ea2898685613b39565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610f1557600080fd5b505af1158015610f29573d6000803e3d6000fd5b50505050610f378583613d00565b50965096945050505050565b60608142811015610fb557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061101a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110b957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b6111177f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e3d92505050565b9150868260018451038151811061112a57fe5b60200260200101511015611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b61124e8686600081811061119957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336112347f00000000000000000000000000000000000000000000000000000000000000008a8a60008181106111e857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061121257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16614094565b8560008151811061124157fe5b602002602001015161417f565b61128d8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525030925061434f915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836001855103815181106112d957fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561131757600080fd5b505af115801561132b573d6000803e3d6000fd5b50505050611350848360018551038151811061134357fe5b6020026020010151613d00565b509695505050505050565b60606113887f000000000000000000000000000000000000000000000000000000000000000084846145c9565b90505b92915050565b60008060006113c17f00000000000000000000000000000000000000000000000000000000000000008f8f614094565b90506000876113d0578c6113f2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561148e57600080fd5b505af11580156114a2573d6000803e3d6000fd5b505050506114b58f8f8f8f8f8f8f612d7c565b809450819550505050509b509b9950505050505050505050565b6060814281101561154157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b61159f7f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e3d92505050565b915086826001845103815181106115b257fe5b60200260200101511015611611576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b6116218686600081811061119957fe5b6113508287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061434f915050565b606081428110156116d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061173757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b6118347f0000000000000000000000000000000000000000000000000000000000000000898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506145c992505050565b9150868260008151811061184457fe5b60200260200101511115611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157696022913960400191505060405180910390fd5b60006118b18585858561483b565b95945050505050565b60006118b185858585614970565b6000806119167f00000000000000000000000000000000000000000000000000000000000000008d7f0000000000000000000000000000000000000000000000000000000000000000614094565b9050600086611925578b611947565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156119e357600080fd5b505af11580156119f7573d6000803e3d6000fd5b50505050611a098d8d8d8d8d8d6126b9565b9d9c50505050505050505050505050565b8042811015611a8a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b611b1985856000818110611a9a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611b137f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061121257fe5b8a61417f565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611b4957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611be257600080fd5b505afa158015611bf6573d6000803e3d6000fd5b505050506040513d6020811015611c0c57600080fd5b50516040805160208881028281018201909352888252929350611c4e929091899189918291850190849080828437600092019190915250889250614aa4915050565b86611d528288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611c8157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1a57600080fd5b505afa158015611d2e573d6000803e3d6000fd5b505050506040513d6020811015611d4457600080fd5b50519063ffffffff614f2b16565b1015611da9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b5050505050505050565b8042811015611e2357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611e8857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f2757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b611f3785856000818110611a9a57fe5b611f75858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614aa4915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016916370a0823191602480820192602092909190829003018186803b15801561200557600080fd5b505afa158015612019573d6000803e3d6000fd5b505050506040513d602081101561202f57600080fd5b505190508681101561208c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156120ff57600080fd5b505af1158015612113573d6000803e3d6000fd5b50505050611da98482613d00565b6060814281101561219357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16868660008181106121d757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b6122d47f000000000000000000000000000000000000000000000000000000000000000034888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e3d92505050565b915086826001845103815181106122e757fe5b60200260200101511015612346576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061238f57fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156123c257600080fd5b505af11580156123d6573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6124487f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae957fe5b8460008151811061245557fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124c657600080fd5b505af11580156124da573d6000803e3d6000fd5b505050506040513d60208110156124f057600080fd5b50516124f857fe5b6125378287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061434f915050565b5095945050505050565b606081428110156125b357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6126117f0000000000000000000000000000000000000000000000000000000000000000898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506145c992505050565b9150868260008151811061262157fe5b60200260200101511115611611576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157696022913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081565b60006126b1848484614f9d565b949350505050565b6000814281101561272b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b61275a887f00000000000000000000000000000000000000000000000000000000000000008989893089612d7c565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191945061280492508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b1580156127d357600080fd5b505afa1580156127e7573d6000803e3d6000fd5b505050506040513d60208110156127fd57600080fd5b5051613b39565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561287757600080fd5b505af115801561288b573d6000803e3d6000fd5b505050506113508483613d00565b804281101561290957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168585600081811061294d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129ec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b60003490507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612a5957600080fd5b505af1158015612a6d573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612adf7f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae957fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612b4957600080fd5b505af1158015612b5d573d6000803e3d6000fd5b505050506040513d6020811015612b7357600080fd5b5051612b7b57fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612bab57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612c4457600080fd5b505afa158015612c58573d6000803e3d6000fd5b505050506040513d6020811015612c6e57600080fd5b50516040805160208981028281018201909352898252929350612cb09290918a918a918291850190849080828437600092019190915250899250614aa4915050565b87611d528289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612ce357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1a57600080fd5b6000808242811015612def57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6000612e1c7f00000000000000000000000000000000000000000000000000000000000000008c8c614094565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b158015612e9d57600080fd5b505af1158015612eb1573d6000803e3d6000fd5b505050506040513d6020811015612ec757600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b158015612f3a57600080fd5b505af1158015612f4e573d6000803e3d6000fd5b505050506040513d6040811015612f6457600080fd5b50805160209091015190925090506000612f7e8e8e615093565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff1614612fbb578183612fbe565b82825b90975095508a87101561301c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157b26021913960400191505060405180910390fd5b89861015613075576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157d36021913960400191505060405180910390fd5b505050505097509795505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606113887f00000000000000000000000000000000000000000000000000000000000000008484613e3d565b60008060006131277f00000000000000000000000000000000000000000000000000000000000000008e7f0000000000000000000000000000000000000000000000000000000000000000614094565b9050600087613136578c613158565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156131f457600080fd5b505af1158015613208573d6000803e3d6000fd5b5050505061321a8e8e8e8e8e8e610df0565b909f909e509c50505050505050505050505050565b600080600083428110156132a457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6132b28c8c8c8c8c8c6151fc565b909450925060006132e47f00000000000000000000000000000000000000000000000000000000000000008e8e614094565b90506132f28d33838861417f565b6132fe8c33838761417f565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561337d57600080fd5b505af1158015613391573d6000803e3d6000fd5b505050506040513d60208110156133a757600080fd5b5051949d939c50939a509198505050505050505050565b6000806000834281101561343357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6134618a7f00000000000000000000000000000000000000000000000000000000000000008b348c8c6151fc565b909450925060006134b37f00000000000000000000000000000000000000000000000000000000000000008c7f0000000000000000000000000000000000000000000000000000000000000000614094565b90506134c18b33838861417f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561352957600080fd5b505af115801561353d573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156135e957600080fd5b505af11580156135fd573d6000803e3d6000fd5b505050506040513d602081101561361357600080fd5b505161361b57fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561369a57600080fd5b505af11580156136ae573d6000803e3d6000fd5b505050506040513d60208110156136c457600080fd5b50519250348410156136dc576136dc33853403613d00565b505096509650969350505050565b6060814281101561375c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16868660008181106137a057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461383f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b61389d7f0000000000000000000000000000000000000000000000000000000000000000888888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506145c992505050565b915034826000815181106138ad57fe5b6020026020010151111561390c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157696022913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061395557fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561398857600080fd5b505af115801561399c573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613a0e7f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae957fe5b84600081518110613a1b57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a8c57600080fd5b505af1158015613aa0573d6000803e3d6000fd5b505050506040513d6020811015613ab657600080fd5b5051613abe57fe5b613afd8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061434f915050565b81600081518110613b0a57fe5b6020026020010151341115612537576125373383600081518110613b2a57fe5b60200260200101513403613d00565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b60208310613c0f57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613bd2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613c71576040519150601f19603f3d011682016040523d82523d6000602084013e613c76565b606091505b5091509150818015613ca4575080511580613ca45750808060200190516020811015613ca157600080fd5b50515b613cf9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806157f4602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b60208310613d7757805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613d3a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613dd9576040519150601f19603f3d011682016040523d82523d6000602084013e613dde565b606091505b5050905080613e38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603481526020018061570f6034913960400191505060405180910390fd5b505050565b6060600282511015613eb057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f61684c6962726172793a20494e56414c49445f5041544800000000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015613ec857600080fd5b50604051908082528060200260200182016040528015613ef2578160200160208202803683370190505b5090508281600081518110613f0357fe5b60200260200101818152505060005b600183510381101561408c57600080613f5587868581518110613f3157fe5b6020026020010151878660010181518110613f4857fe5b60200260200101516154fd565b915091506000613f8f88878681518110613f6b57fe5b6020026020010151888760010181518110613f8257fe5b6020026020010151614094565b905060008873ffffffffffffffffffffffffffffffffffffffff16638198edbf836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561401057600080fd5b505afa158015614024573d6000803e3d6000fd5b505050506040513d602081101561403a57600080fd5b5051865190915061406290829088908890811061405357fe5b6020026020010151868661483b565b86866001018151811061407157fe5b6020908102919091010152505060019092019150613f129050565b509392505050565b60008060006140a38585615093565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527fa6b26402ddb47609a12397932ea9563f6d23b8a0e91815a74e73c4358e3a2338609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b6020831061425d57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614220565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146142bf576040519150601f19603f3d011682016040523d82523d6000602084013e6142c4565b606091505b50915091508180156142f25750805115806142f257508080602001905160208110156142ef57600080fd5b50515b614347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806156de6031913960400191505060405180910390fd5b505050505050565b60005b60018351038110156145c35760008084838151811061436d57fe5b602002602001015185846001018151811061438457fe5b602002602001015191509150600061439c8383615093565b50905060008785600101815181106143b057fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146143f8578260006143fc565b6000835b91509150600060028a510388106144135788614447565b6144477f0000000000000000000000000000000000000000000000000000000000000000878c8b60020181518110613f8257fe5b90506144747f00000000000000000000000000000000000000000000000000000000000000008888614094565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f1916602001820160405280156144be576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614549578181015183820152602001614531565b50505050905090810190601f1680156145765780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561459857600080fd5b505af11580156145ac573d6000803e3d6000fd5b505060019099019850614352975050505050505050565b50505050565b606060028251101561463c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f61684c6962726172793a20494e56414c49445f5041544800000000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561465457600080fd5b5060405190808252806020026020018201604052801561467e578160200160208202803683370190505b509050828160018351038151811061469257fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b801561408c576000806146f2878660018603815181106146de57fe5b6020026020010151878681518110613f4857fe5b91509150600061471f8887600187038151811061470b57fe5b6020026020010151888781518110613f8257fe5b905060008873ffffffffffffffffffffffffffffffffffffffff16638198edbf836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156147a057600080fd5b505afa1580156147b4573d6000803e3d6000fd5b505050506040513d60208110156147ca57600080fd5b505186519091506147f29082908890889081106147e357fe5b60200260200101518686614970565b86600187038151811061480157fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191506146c29050565b6000808411614895576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157436026913960400191505060405180910390fd5b6000831180156148a55750600082115b6148fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158216023913960400191505060405180910390fd5b600061491e6149116127108863ffffffff614f2b16565b869063ffffffff6155e516565b90506000614932828563ffffffff6155e516565b905060006149588361494c8861271063ffffffff6155e516565b9063ffffffff61566b16565b905080828161496357fe5b0498975050505050505050565b60008084116149ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061578b6027913960400191505060405180910390fd5b6000831180156149da5750600082115b614a2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158216023913960400191505060405180910390fd5b6000614a53612710614a47868863ffffffff6155e516565b9063ffffffff6155e516565b90506000614a7c614a6c6127108963ffffffff614f2b16565b614a47868963ffffffff614f2b16565b9050614a996001828481614a8c57fe5b049063ffffffff61566b16565b979650505050505050565b60005b6001835103811015613e3857600080848381518110614ac257fe5b6020026020010151858460010181518110614ad957fe5b6020026020010151915091506000614af18383615093565b5090506000614b217f00000000000000000000000000000000000000000000000000000000000000008585614094565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638198edbf836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015614bc257600080fd5b505afa158015614bd6573d6000803e3d6000fd5b505050506040513d6020811015614bec57600080fd5b5051604080517f0902f1ac000000000000000000000000000000000000000000000000000000008152905191925060009182918291829173ffffffffffffffffffffffffffffffffffffffff881691630902f1ac91600480820192606092909190829003018186803b158015614c6157600080fd5b505afa158015614c75573d6000803e3d6000fd5b505050506040513d6060811015614c8b57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060008073ffffffffffffffffffffffffffffffffffffffff8b8116908a1614614cd5578284614cd8565b83835b91509150614d5d828c73ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1a57600080fd5b9550614d6b8787848461483b565b9450505050506000808673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614614daf57826000614db3565b6000835b91509150600060028d51038b10614dca578b614dfe565b614dfe7f00000000000000000000000000000000000000000000000000000000000000008a8f8e60020181518110613f8257fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908d169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b83811015614eae578181015183820152602001614e96565b50505050905090810190601f168015614edb5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614efd57600080fd5b505af1158015614f11573d6000803e3d6000fd5b50506001909c019b50614aa79a5050505050505050505050565b8082038281111561138b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b600080841161500d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4e6f61684c6962726172793a20494e53554646494349454e545f414d4f554e54604482015290519081900360640190fd5b60008311801561501d5750600082115b615072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158216023913960400191505060405180910390fd5b82615083858463ffffffff6155e516565b8161508a57fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561513157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4e6f61684c6962726172793a204944454e544943414c5f414444524553534553604482015290519081900360640190fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161061516b57828461516e565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff82166151f557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f61684c6962726172793a205a45524f5f4144445245535300000000000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000000000000000000000000000000000000000000009092169163e6a4390591604480820192602092909190829003018186803b15801561529c57600080fd5b505afa1580156152b0573d6000803e3d6000fd5b505050506040513d60208110156152c657600080fd5b505173ffffffffffffffffffffffffffffffffffffffff1614156153ac57604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163c9c65396916044808201926020929091908290030181600087803b15801561537f57600080fd5b505af1158015615393573d6000803e3d6000fd5b505050506040513d60208110156153a957600080fd5b50505b6000806153da7f00000000000000000000000000000000000000000000000000000000000000008b8b6154fd565b915091508160001480156153ec575080155b156153fc578793508692506154f0565b6000615409898484614f9d565b9050878111615476578581101561546b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157d36021913960400191505060405180910390fd5b8894509250826154ee565b6000615483898486614f9d565b90508981111561548f57fe5b878110156154e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157b26021913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b600080600061550c8585615093565b50905060008061551d888888614094565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561556257600080fd5b505afa158015615576573d6000803e3d6000fd5b505050506040513d606081101561558c57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff878116908416146155d35780826155d6565b81815b90999098509650505050505050565b6000811580615600575050808202828282816155fd57fe5b04145b61138b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561138b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe5472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65644e6f61684c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e544e6f6168526f757465723a204558434553534956455f494e5055545f414d4f554e544e6f61684c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e544e6f6168526f757465723a20494e53554646494349454e545f415f414d4f554e544e6f6168526f757465723a20494e53554646494349454e545f425f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c65644e6f61684c6962726172793a20494e53554646494349454e545f4c49515549444954594e6f6168526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54a2646970667358221220b5b1b7e8046c27ff9dee1ac0bec3c4fd8832ff34c12df170de405c121cdcf5c564736f6c6343000606003300000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b2752000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f

Deployed ByteCode

0x60806040526004361061018f5760003560e01c80638803dbee116100d6578063c45a01551161007f578063e8e3370011610059578063e8e3370014610c7d578063f305d71914610d0a578063fb3bdb4114610d5d576101d5565b8063c45a015514610b31578063d06ca61f14610b46578063ded9382a14610bfd576101d5565b8063af2979eb116100b0578063af2979eb146109d4578063b6f9de9514610a34578063baa2abde14610ac7576101d5565b80638803dbee146108bb578063ad5c464814610960578063ad615dec1461099e576101d5565b806352707d8c116101385780635c11d795116101125780635c11d795146106de578063791ac947146107835780637ff36ab514610828576101d5565b806352707d8c146105d4578063571fd012146106225780635b0d59841461065e576101d5565b80632195995c116101695780632195995c146103ff57806338ed17391461048a5780634a25d94a1461052f576101d5565b806302751cec146101da57806318cbafe5146102535780631f00ca7414610348576101d5565b366101d5573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f16146101d357fe5b005b600080fd5b3480156101e657600080fd5b5061023a600480360360c08110156101fd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610df0565b6040805192835260208301919091528051918290030190f35b34801561025f57600080fd5b506102f8600480360360a081101561027657600080fd5b81359160208101359181019060608101604082013564010000000081111561029d57600080fd5b8201836020820111156102af57600080fd5b803590602001918460208302840111640100000000831117156102d157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f43565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561033457818101518382015260200161031c565b505050509050019250505060405180910390f35b34801561035457600080fd5b506102f86004803603604081101561036b57600080fd5b8135919081019060408101602082013564010000000081111561038d57600080fd5b82018360208201111561039f57600080fd5b803590602001918460208302840111640100000000831117156103c157600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061135b945050505050565b34801561040b57600080fd5b5061023a600480360361016081101561042357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff6101008201351690610120810135906101400135611391565b34801561049657600080fd5b506102f8600480360360a08110156104ad57600080fd5b8135916020810135918101906060810160408201356401000000008111156104d457600080fd5b8201836020820111156104e657600080fd5b8035906020019184602083028401116401000000008311171561050857600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356114cf565b34801561053b57600080fd5b506102f8600480360360a081101561055257600080fd5b81359160208101359181019060608101604082013564010000000081111561057957600080fd5b82018360208201111561058b57600080fd5b803590602001918460208302840111640100000000831117156105ad57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611660565b3480156105e057600080fd5b50610610600480360360808110156105f757600080fd5b50803590602081013590604081013590606001356118a3565b60408051918252519081900360200190f35b34801561062e57600080fd5b506106106004803603608081101561064557600080fd5b50803590602081013590604081013590606001356118ba565b34801561066a57600080fd5b50610610600480360361014081101561068257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356118c8565b3480156106ea57600080fd5b506101d3600480360360a081101561070157600080fd5b81359160208101359181019060608101604082013564010000000081111561072857600080fd5b82018360208201111561073a57600080fd5b8035906020019184602083028401116401000000008311171561075c57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611a1a565b34801561078f57600080fd5b506101d3600480360360a08110156107a657600080fd5b8135916020810135918101906060810160408201356401000000008111156107cd57600080fd5b8201836020820111156107df57600080fd5b8035906020019184602083028401116401000000008311171561080157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611db3565b6102f86004803603608081101561083e57600080fd5b8135919081019060408101602082013564010000000081111561086057600080fd5b82018360208201111561087257600080fd5b8035906020019184602083028401116401000000008311171561089457600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612121565b3480156108c757600080fd5b506102f8600480360360a08110156108de57600080fd5b81359160208101359181019060608101604082013564010000000081111561090557600080fd5b82018360208201111561091757600080fd5b8035906020019184602083028401116401000000008311171561093957600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612541565b34801561096c57600080fd5b50610975612680565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156109aa57600080fd5b50610610600480360360608110156109c157600080fd5b50803590602081013590604001356126a4565b3480156109e057600080fd5b50610610600480360360c08110156109f757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356126b9565b6101d360048036036080811015610a4a57600080fd5b81359190810190604081016020820135640100000000811115610a6c57600080fd5b820183602082011115610a7e57600080fd5b80359060200191846020830284011164010000000083111715610aa057600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135612899565b348015610ad357600080fd5b5061023a600480360360e0811015610aea57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c00135612d7c565b348015610b3d57600080fd5b50610975613086565b348015610b5257600080fd5b506102f860048036036040811015610b6957600080fd5b81359190810190604081016020820135640100000000811115610b8b57600080fd5b820183602082011115610b9d57600080fd5b80359060200191846020830284011164010000000083111715610bbf57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506130aa945050505050565b348015610c0957600080fd5b5061023a6004803603610140811015610c2157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356130d7565b348015610c8957600080fd5b50610cec6004803603610100811015610ca157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e0013561322f565b60408051938452602084019290925282820152519081900360600190f35b610cec600480360360c0811015610d2057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356133be565b6102f860048036036080811015610d7357600080fd5b81359190810190604081016020820135640100000000811115610d9557600080fd5b820183602082011115610da757600080fd5b80359060200191846020830284011164010000000083111715610dc957600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356136ea565b6000808242811015610e6357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b610e92897f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f8a8a8a308a612d7c565b9093509150610ea2898685613b39565b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610f1557600080fd5b505af1158015610f29573d6000803e3d6000fd5b50505050610f378583613d00565b50965096945050505050565b60608142811015610fb557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f1686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061101a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110b957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b6111177f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275289888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e3d92505050565b9150868260018451038151811061112a57fe5b60200260200101511015611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b61124e8686600081811061119957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336112347f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528a8a60008181106111e857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061121257fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16614094565b8560008151811061124157fe5b602002602001015161417f565b61128d8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525030925061434f915050565b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836001855103815181106112d957fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561131757600080fd5b505af115801561132b573d6000803e3d6000fd5b50505050611350848360018551038151811061134357fe5b6020026020010151613d00565b509695505050505050565b60606113887f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275284846145c9565b90505b92915050565b60008060006113c17f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528f8f614094565b90506000876113d0578c6113f2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561148e57600080fd5b505af11580156114a2573d6000803e3d6000fd5b505050506114b58f8f8f8f8f8f8f612d7c565b809450819550505050509b509b9950505050505050505050565b6060814281101561154157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b61159f7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275289888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e3d92505050565b915086826001845103815181106115b257fe5b60200260200101511015611611576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b6116218686600081811061119957fe5b6113508287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061434f915050565b606081428110156116d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f1686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061173757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b6118347f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b2752898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506145c992505050565b9150868260008151811061184457fe5b60200260200101511115611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157696022913960400191505060405180910390fd5b60006118b18585858561483b565b95945050505050565b60006118b185858585614970565b6000806119167f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528d7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f614094565b9050600086611925578b611947565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156119e357600080fd5b505af11580156119f7573d6000803e3d6000fd5b50505050611a098d8d8d8d8d8d6126b9565b9d9c50505050505050505050505050565b8042811015611a8a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b611b1985856000818110611a9a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611b137f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275289896000818110611ae957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061121257fe5b8a61417f565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611b4957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611be257600080fd5b505afa158015611bf6573d6000803e3d6000fd5b505050506040513d6020811015611c0c57600080fd5b50516040805160208881028281018201909352888252929350611c4e929091899189918291850190849080828437600092019190915250889250614aa4915050565b86611d528288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611c8157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1a57600080fd5b505afa158015611d2e573d6000803e3d6000fd5b505050506040513d6020811015611d4457600080fd5b50519063ffffffff614f2b16565b1015611da9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b5050505050505050565b8042811015611e2357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f1685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611e8857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f2757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b611f3785856000818110611a9a57fe5b611f75858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614aa4915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f16916370a0823191602480820192602092909190829003018186803b15801561200557600080fd5b505afa158015612019573d6000803e3d6000fd5b505050506040513d602081101561202f57600080fd5b505190508681101561208c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156120ff57600080fd5b505af1158015612113573d6000803e3d6000fd5b50505050611da98482613d00565b6060814281101561219357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff16868660008181106121d757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b6122d47f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275234888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e3d92505050565b915086826001845103815181106122e757fe5b60200260200101511015612346576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806158446026913960400191505060405180910390fd5b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061238f57fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156123c257600080fd5b505af11580156123d6573d6000803e3d6000fd5b50505050507f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6124487f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275289896000818110611ae957fe5b8460008151811061245557fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124c657600080fd5b505af11580156124da573d6000803e3d6000fd5b505050506040513d60208110156124f057600080fd5b50516124f857fe5b6125378287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061434f915050565b5095945050505050565b606081428110156125b357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6126117f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b2752898888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506145c992505050565b9150868260008151811061262157fe5b60200260200101511115611611576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157696022913960400191505060405180910390fd5b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f81565b60006126b1848484614f9d565b949350505050565b6000814281101561272b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b61275a887f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f8989893089612d7c565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191945061280492508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b1580156127d357600080fd5b505afa1580156127e7573d6000803e3d6000fd5b505050506040513d60208110156127fd57600080fd5b5051613b39565b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561287757600080fd5b505af115801561288b573d6000803e3d6000fd5b505050506113508483613d00565b804281101561290957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff168585600081811061294d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129ec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b60003490507f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612a5957600080fd5b505af1158015612a6d573d6000803e3d6000fd5b50505050507f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612adf7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275289896000818110611ae957fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612b4957600080fd5b505af1158015612b5d573d6000803e3d6000fd5b505050506040513d6020811015612b7357600080fd5b5051612b7b57fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612bab57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612c4457600080fd5b505afa158015612c58573d6000803e3d6000fd5b505050506040513d6020811015612c6e57600080fd5b50516040805160208981028281018201909352898252929350612cb09290918a918a918291850190849080828437600092019190915250899250614aa4915050565b87611d528289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612ce357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1a57600080fd5b6000808242811015612def57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6000612e1c7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528c8c614094565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b158015612e9d57600080fd5b505af1158015612eb1573d6000803e3d6000fd5b505050506040513d6020811015612ec757600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b158015612f3a57600080fd5b505af1158015612f4e573d6000803e3d6000fd5b505050506040513d6040811015612f6457600080fd5b50805160209091015190925090506000612f7e8e8e615093565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff1614612fbb578183612fbe565b82825b90975095508a87101561301c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157b26021913960400191505060405180910390fd5b89861015613075576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157d36021913960400191505060405180910390fd5b505050505097509795505050505050565b7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275281565b60606113887f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528484613e3d565b60008060006131277f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528e7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f614094565b9050600087613136578c613158565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156131f457600080fd5b505af1158015613208573d6000803e3d6000fd5b5050505061321a8e8e8e8e8e8e610df0565b909f909e509c50505050505050505050505050565b600080600083428110156132a457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6132b28c8c8c8c8c8c6151fc565b909450925060006132e47f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528e8e614094565b90506132f28d33838861417f565b6132fe8c33838761417f565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561337d57600080fd5b505af1158015613391573d6000803e3d6000fd5b505050506040513d60208110156133a757600080fd5b5051949d939c50939a509198505050505050505050565b6000806000834281101561343357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b6134618a7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f8b348c8c6151fc565b909450925060006134b37f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528c7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f614094565b90506134c18b33838861417f565b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561352957600080fd5b505af115801561353d573d6000803e3d6000fd5b50505050507f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156135e957600080fd5b505af11580156135fd573d6000803e3d6000fd5b505050506040513d602081101561361357600080fd5b505161361b57fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561369a57600080fd5b505af11580156136ae573d6000803e3d6000fd5b505050506040513d60208110156136c457600080fd5b50519250348410156136dc576136dc33853403613d00565b505096509650969350505050565b6060814281101561375c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6168526f757465723a204558504952454400000000000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff16868660008181106137a057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461383f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e6f6168526f757465723a20494e56414c49445f504154480000000000000000604482015290519081900360640190fd5b61389d7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b2752888888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506145c992505050565b915034826000815181106138ad57fe5b6020026020010151111561390c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157696022913960400191505060405180910390fd5b7f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061395557fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561398857600080fd5b505af115801561399c573d6000803e3d6000fd5b50505050507f000000000000000000000000c00592aa41d32d137dc480d9f6d0df19b860104f73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613a0e7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275289896000818110611ae957fe5b84600081518110613a1b57fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a8c57600080fd5b505af1158015613aa0573d6000803e3d6000fd5b505050506040513d6020811015613ab657600080fd5b5051613abe57fe5b613afd8287878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925061434f915050565b81600081518110613b0a57fe5b6020026020010151341115612537576125373383600081518110613b2a57fe5b60200260200101513403613d00565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b60208310613c0f57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613bd2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613c71576040519150601f19603f3d011682016040523d82523d6000602084013e613c76565b606091505b5091509150818015613ca4575080511580613ca45750808060200190516020811015613ca157600080fd5b50515b613cf9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806157f4602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b60208310613d7757805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613d3a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613dd9576040519150601f19603f3d011682016040523d82523d6000602084013e613dde565b606091505b5050905080613e38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603481526020018061570f6034913960400191505060405180910390fd5b505050565b6060600282511015613eb057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f61684c6962726172793a20494e56414c49445f5041544800000000000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015613ec857600080fd5b50604051908082528060200260200182016040528015613ef2578160200160208202803683370190505b5090508281600081518110613f0357fe5b60200260200101818152505060005b600183510381101561408c57600080613f5587868581518110613f3157fe5b6020026020010151878660010181518110613f4857fe5b60200260200101516154fd565b915091506000613f8f88878681518110613f6b57fe5b6020026020010151888760010181518110613f8257fe5b6020026020010151614094565b905060008873ffffffffffffffffffffffffffffffffffffffff16638198edbf836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561401057600080fd5b505afa158015614024573d6000803e3d6000fd5b505050506040513d602081101561403a57600080fd5b5051865190915061406290829088908890811061405357fe5b6020026020010151868661483b565b86866001018151811061407157fe5b6020908102919091010152505060019092019150613f129050565b509392505050565b60008060006140a38585615093565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527fa6b26402ddb47609a12397932ea9563f6d23b8a0e91815a74e73c4358e3a2338609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b6020831061425d57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614220565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146142bf576040519150601f19603f3d011682016040523d82523d6000602084013e6142c4565b606091505b50915091508180156142f25750805115806142f257508080602001905160208110156142ef57600080fd5b50515b614347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806156de6031913960400191505060405180910390fd5b505050505050565b60005b60018351038110156145c35760008084838151811061436d57fe5b602002602001015185846001018151811061438457fe5b602002602001015191509150600061439c8383615093565b50905060008785600101815181106143b057fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16146143f8578260006143fc565b6000835b91509150600060028a510388106144135788614447565b6144477f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b2752878c8b60020181518110613f8257fe5b90506144747f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528888614094565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f1916602001820160405280156144be576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614549578181015183820152602001614531565b50505050905090810190601f1680156145765780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561459857600080fd5b505af11580156145ac573d6000803e3d6000fd5b505060019099019850614352975050505050505050565b50505050565b606060028251101561463c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f61684c6962726172793a20494e56414c49445f5041544800000000000000604482015290519081900360640190fd5b815167ffffffffffffffff8111801561465457600080fd5b5060405190808252806020026020018201604052801561467e578160200160208202803683370190505b509050828160018351038151811061469257fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b801561408c576000806146f2878660018603815181106146de57fe5b6020026020010151878681518110613f4857fe5b91509150600061471f8887600187038151811061470b57fe5b6020026020010151888781518110613f8257fe5b905060008873ffffffffffffffffffffffffffffffffffffffff16638198edbf836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156147a057600080fd5b505afa1580156147b4573d6000803e3d6000fd5b505050506040513d60208110156147ca57600080fd5b505186519091506147f29082908890889081106147e357fe5b60200260200101518686614970565b86600187038151811061480157fe5b602090810291909101015250507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191506146c29050565b6000808411614895576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157436026913960400191505060405180910390fd5b6000831180156148a55750600082115b6148fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158216023913960400191505060405180910390fd5b600061491e6149116127108863ffffffff614f2b16565b869063ffffffff6155e516565b90506000614932828563ffffffff6155e516565b905060006149588361494c8861271063ffffffff6155e516565b9063ffffffff61566b16565b905080828161496357fe5b0498975050505050505050565b60008084116149ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061578b6027913960400191505060405180910390fd5b6000831180156149da5750600082115b614a2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158216023913960400191505060405180910390fd5b6000614a53612710614a47868863ffffffff6155e516565b9063ffffffff6155e516565b90506000614a7c614a6c6127108963ffffffff614f2b16565b614a47868963ffffffff614f2b16565b9050614a996001828481614a8c57fe5b049063ffffffff61566b16565b979650505050505050565b60005b6001835103811015613e3857600080848381518110614ac257fe5b6020026020010151858460010181518110614ad957fe5b6020026020010151915091506000614af18383615093565b5090506000614b217f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528585614094565b905060007f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b275273ffffffffffffffffffffffffffffffffffffffff16638198edbf836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015614bc257600080fd5b505afa158015614bd6573d6000803e3d6000fd5b505050506040513d6020811015614bec57600080fd5b5051604080517f0902f1ac000000000000000000000000000000000000000000000000000000008152905191925060009182918291829173ffffffffffffffffffffffffffffffffffffffff881691630902f1ac91600480820192606092909190829003018186803b158015614c6157600080fd5b505afa158015614c75573d6000803e3d6000fd5b505050506040513d6060811015614c8b57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905060008073ffffffffffffffffffffffffffffffffffffffff8b8116908a1614614cd5578284614cd8565b83835b91509150614d5d828c73ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1a57600080fd5b9550614d6b8787848461483b565b9450505050506000808673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614614daf57826000614db3565b6000835b91509150600060028d51038b10614dca578b614dfe565b614dfe7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528a8f8e60020181518110613f8257fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908d169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b83811015614eae578181015183820152602001614e96565b50505050905090810190601f168015614edb5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614efd57600080fd5b505af1158015614f11573d6000803e3d6000fd5b50506001909c019b50614aa79a5050505050505050505050565b8082038281111561138b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b600080841161500d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4e6f61684c6962726172793a20494e53554646494349454e545f414d4f554e54604482015290519081900360640190fd5b60008311801561501d5750600082115b615072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806158216023913960400191505060405180910390fd5b82615083858463ffffffff6155e516565b8161508a57fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561513157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4e6f61684c6962726172793a204944454e544943414c5f414444524553534553604482015290519081900360640190fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161061516b57828461516e565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff82166151f557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f61684c6962726172793a205a45524f5f4144445245535300000000000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27529092169163e6a4390591604480820192602092909190829003018186803b15801561529c57600080fd5b505afa1580156152b0573d6000803e3d6000fd5b505050506040513d60208110156152c657600080fd5b505173ffffffffffffffffffffffffffffffffffffffff1614156153ac57604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27529092169163c9c65396916044808201926020929091908290030181600087803b15801561537f57600080fd5b505af1158015615393573d6000803e3d6000fd5b505050506040513d60208110156153a957600080fd5b50505b6000806153da7f00000000000000000000000075782a57c6522b8b17fcc01ff11759f4535b27528b8b6154fd565b915091508160001480156153ec575080155b156153fc578793508692506154f0565b6000615409898484614f9d565b9050878111615476578581101561546b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157d36021913960400191505060405180910390fd5b8894509250826154ee565b6000615483898486614f9d565b90508981111561548f57fe5b878110156154e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157b26021913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b600080600061550c8585615093565b50905060008061551d888888614094565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561556257600080fd5b505afa158015615576573d6000803e3d6000fd5b505050506040513d606081101561558c57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff878116908416146155d35780826155d6565b81815b90999098509650505050505050565b6000811580615600575050808202828282816155fd57fe5b04145b61138b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561138b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe5472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c65644e6f61684c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e544e6f6168526f757465723a204558434553534956455f494e5055545f414d4f554e544e6f61684c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e544e6f6168526f757465723a20494e53554646494349454e545f415f414d4f554e544e6f6168526f757465723a20494e53554646494349454e545f425f414d4f554e545472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c65644e6f61684c6962726172793a20494e53554646494349454e545f4c49515549444954594e6f6168526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54a2646970667358221220b5b1b7e8046c27ff9dee1ac0bec3c4fd8832ff34c12df170de405c121cdcf5c564736f6c63430006060033