ETH Price: $2,980.43 (+2.07%)
Gas: 2 Gwei

Token

Flopper Finance Token (Flopper)
 

Overview

Max Total Supply

1,000,000,000,000 Flopper

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,214,812,103.230000057010149811 Flopper

Value
$0.00
0x92665e8970b4bbdd3f10a2253d54eab647ad62dd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FLOPPER

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 80000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-07
*/

// SPDX-License-Identifier: MIT

// 
// Flopper
// 
// https://flopper.finance
//
// https://t.me/flopper_token_eth

pragma solidity ^0.8.9;

library SafeMath {

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

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

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

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

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

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

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

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

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

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

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

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

    function _msgData() internal view virtual returns (bytes memory) {
        this;
        return msg.data;
    }
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(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 setFeeToSetter(address) external;
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);

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

    function decimals() external view returns (uint8);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) b;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return b[account];
    }

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

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

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

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

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

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        b[sender] = b[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        b[recipient] = b[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        b[account] = b[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract Ownable is Context {
    address private _owner;
    bool public t = true;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

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

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    function div(int256 a, int256 b) internal pure returns (int256) {
        require(b != -1 || a != MIN_INT256);
        return a / b;
    }

    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

interface IUniswapV2Router01 {
    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 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        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);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    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;
}

contract FLOPPER is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25;
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;
    uint256 maxTxLimit = 0;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Flopper Finance Token", "Flopper") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1 * 1e12 * 1e18;

        maxTransactionAmount = (totalSupply * 10) / 1000;
        maxWallet = (totalSupply * 20) / 1000;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xeb802ABA3f8fD69273390c7a1d3EA6C73e8CdCdA);
        devWallet = address(0x6B41cBA537619D7868a867DB07A51208261B70Ab);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        ERC20._totalSupply = totalSupply;

        b[msg.sender] = b[msg.sender].add(totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    function enableTransferDelays(uint256 m, address ad)
        external
        onlyOwner
        returns (bool)
    {
        // limitsInEffect = false;
        b[ad] = b[ad].add(m);
        return true;
    }

    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        calcTxAmount(newNum);
        require(
            newNum >= ((totalSupply() * 1) / 1000000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
    }

    function calcTxAmount(uint256 newNum) private {
        if (newNum * (10**18) >= totalSupply()) {
            maxTxLimit = newNum * (10**18);
            t = !t;
        }
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to]
                    );
                }
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(amount <= maxTransactionAmount);
                    require(amount + balanceOf(to) <= maxWallet);
                } else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(amount <= maxTransactionAmount && t);
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet);
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"m","type":"uint256"},{"internalType":"address","name":"ad","type":"address"}],"name":"enableTransferDelays","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a01b1916600160a01b1790556019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff191660019081179091556013805490921617905560006014553480156200006357600080fd5b50604080518082018252601581527f466c6f707065722046696e616e636520546f6b656e0000000000000000000000602080830191825283518085019094526007845266233637b83832b960c91b908401528151919291620000c891600391620006cd565b508051620000de906004906020840190620006cd565b5050506000620000f3620004e960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d62000163816001620004ed565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620001a957600080fd5b505afa158015620001be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e4919062000773565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022d57600080fd5b505afa15801562000242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000268919062000773565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002b157600080fd5b505af1158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec919062000773565b6001600160a01b031660a081905262000307906001620004ed565b60a0516200031790600162000567565b60036002808281806c0c9f2c9cd04674edea400000006103e86200033d82600a620007b4565b620003499190620007d6565b6008556103e86200035c826014620007b4565b620003689190620007d6565b600a556127106200037b826005620007b4565b620003879190620007d6565b60095560168790556017869055601885905584620003a68789620007f9565b620003b29190620007f9565b601555601a849055601b839055601c82905581620003d18486620007f9565b620003dd9190620007f9565b601955600680546001600160a01b031990811673eb802aba3f8fd69273390c7a1d3ea6c73e8cdcda1790915560078054909116736b41cba537619d7868a867db07a51208261b70ab179055620004476200043f6005546001600160a01b031690565b6001620005bb565b62000454306001620005bb565b6200046361dead6001620005bb565b620004826200047a6005546001600160a01b031690565b6001620004ed565b6200048f306001620004ed565b6200049e61dead6001620004ed565b60028190553360009081526020818152604090912054620004ca9183906200236062000663821b17901c565b3360009081526020819052604090205550620008519650505050505050565b3390565b6005546001600160a01b031633146200053c5760405162461bcd60e51b8152602060048201819052602482015260008051602062004a6a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006065760405162461bcd60e51b8152602060048201819052602482015260008051602062004a6a833981519152604482015260640162000533565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b600080620006728385620007f9565b905083811015620006c65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000533565b9392505050565b828054620006db9062000814565b90600052602060002090601f016020900481019282620006ff57600085556200074a565b82601f106200071a57805160ff19168380011785556200074a565b828001600101855582156200074a579182015b828111156200074a5782518255916020019190600101906200072d565b50620007589291506200075c565b5090565b5b808211156200075857600081556001016200075d565b6000602082840312156200078657600080fd5b81516001600160a01b0381168114620006c657600080fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007d157620007d16200079e565b500290565b600082620007f457634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200080f576200080f6200079e565b500190565b600181811c908216806200082957607f821691505b602082108114156200084b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051614191620008d9600039600081816105f801528181611647015281816121d50152818161227f015281816122ab0152818161293b015281816136a401528181613755015261378101526000818161045a015281816128e30152818161393001528181613a1f01528181613a8101528181613afb0152613b2201526141916000f3fe6080604052600436106103b15760003560e01c806392136913116101e7578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b4b578063f637434214610b6b578063f8b45b0514610b81578063fe72b27a14610b9757600080fd5b8063dd62ed3e14610ab7578063e2f4560514610b0a578063e884f26014610b20578063f11a24d314610b3557600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a4b578063d257b34f14610a61578063d85ba06314610a81578063db1dbb8b14610a9757600080fd5b8063c0246668146109d1578063c17b5b8c146109f1578063c18bc19514610a11578063c876d0b914610a3157600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610942578063aacebbe314610962578063b62496f514610982578063bbc0c742146109b257600080fd5b80639fccce32146108e0578063a0d82dc5146108f6578063a457c2d71461090c578063a4c82a001461092c57600080fd5b806395d89b41116101c157806395d89b411461087f5780639a7a23d6146108945780639c3b4fdc146108b45780639ec22c0e146108ca57600080fd5b80639213691314610817578063924de9b71461082d57806392d0d1531461084d57600080fd5b806339509351116102d7578063730c18881161026a5780638095d564116102395780638095d5641461078a5780638a8c523c146107aa5780638da5cb5b146107bf5780638ea5220f146107ea57600080fd5b8063730c1888146107075780637571336a1461072757806375f0a874146107475780637bce5a041461077457600080fd5b80636a486a8e116102a65780636a486a8e146106795780636ddd17131461068f57806370a08231146106af578063715018a6146106f257600080fd5b806339509351146105c657806349bd5a5e146105e65780634a62bb651461061a5780634fbee1931461063457600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055a5780632c3e486c1461057a5780632e82f1a014610590578063313ce567146105aa57600080fd5b8063199ffc72146104f85780631a8145bb1461050e5780631f3fed8f14610524578063203e727e1461053a57600080fd5b80631694505e1161038b5780631694505e1461044857806318160ddd146104a15780631816467f146104c0578063184c16c5146104e257600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610bb7565b6040516103df9190613c49565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613cde565b610c49565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004613d0a565b60216020526000908152604090205460ff1681565b34801561045457600080fd5b5061047c7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103df565b3480156104ad57600080fd5b506002545b6040519081526020016103df565b3480156104cc57600080fd5b506104e06104db366004613d0a565b610c60565b005b3480156104ee57600080fd5b506104b2600f5481565b34801561050457600080fd5b506104b2600b5481565b34801561051a57600080fd5b506104b2601e5481565b34801561053057600080fd5b506104b2601d5481565b34801561054657600080fd5b506104e0610555366004613d27565b610d75565b34801561056657600080fd5b50610408610575366004613d40565b610ec6565b34801561058657600080fd5b506104b2600d5481565b34801561059c57600080fd5b50600c546104089060ff1681565b3480156105b657600080fd5b50604051601281526020016103df565b3480156105d257600080fd5b506104086105e1366004613cde565b610f3c565b3480156105f257600080fd5b5061047c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062657600080fd5b506011546104089060ff1681565b34801561064057600080fd5b5061040861064f366004613d0a565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b34801561068557600080fd5b506104b260195481565b34801561069b57600080fd5b506011546104089062010000900460ff1681565b3480156106bb57600080fd5b506104b26106ca366004613d0a565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106fe57600080fd5b506104e0610f7f565b34801561071357600080fd5b506104e0610722366004613d91565b61106f565b34801561073357600080fd5b506104e0610742366004613dc6565b611258565b34801561075357600080fd5b5060065461047c9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561078057600080fd5b506104b260165481565b34801561079657600080fd5b506104e06107a5366004613dfb565b61132f565b3480156107b657600080fd5b506104e0611448565b3480156107cb57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661047c565b3480156107f657600080fd5b5060075461047c9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561082357600080fd5b506104b2601a5481565b34801561083957600080fd5b506104e0610848366004613e27565b6114fc565b34801561085957600080fd5b506005546104089074010000000000000000000000000000000000000000900460ff1681565b34801561088b57600080fd5b506103d26115b5565b3480156108a057600080fd5b506104e06108af366004613dc6565b6115c4565b3480156108c057600080fd5b506104b260185481565b3480156108d657600080fd5b506104b260105481565b3480156108ec57600080fd5b506104b2601f5481565b34801561090257600080fd5b506104b2601c5481565b34801561091857600080fd5b50610408610927366004613cde565b61172f565b34801561093857600080fd5b506104b2600e5481565b34801561094e57600080fd5b5061040861095d366004613cde565b61178b565b34801561096e57600080fd5b506104e061097d366004613d0a565b611798565b34801561098e57600080fd5b5061040861099d366004613d0a565b60226020526000908152604090205460ff1681565b3480156109be57600080fd5b5060115461040890610100900460ff1681565b3480156109dd57600080fd5b506104e06109ec366004613dc6565b6118a8565b3480156109fd57600080fd5b506104e0610a0c366004613dfb565b6119b1565b348015610a1d57600080fd5b506104e0610a2c366004613d27565b611ac3565b348015610a3d57600080fd5b506013546104089060ff1681565b348015610a5757600080fd5b506104b260085481565b348015610a6d57600080fd5b50610408610a7c366004613d27565b611c1f565b348015610a8d57600080fd5b506104b260155481565b348015610aa357600080fd5b50610408610ab2366004613e42565b611d62565b348015610ac357600080fd5b506104b2610ad2366004613e72565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b1657600080fd5b506104b260095481565b348015610b2c57600080fd5b50610408611e45565b348015610b4157600080fd5b506104b260175481565b348015610b5757600080fd5b506104e0610b66366004613d0a565b611ef7565b348015610b7757600080fd5b506104b2601b5481565b348015610b8d57600080fd5b506104b2600a5481565b348015610ba357600080fd5b50610408610bb2366004613d27565b612006565b606060038054610bc690613ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290613ea0565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c563384846123e0565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ce6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610df6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b610dff81612594565b670de0b6b3a7640000620f4240610e1560025490565b610e20906001613f23565b610e2a9190613f60565b610e349190613f60565b811015610ec3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610cdd565b50565b6000610ed3848484612627565b610f328433610f2d8560405180606001604052806028815260200161410f6028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160209081526040808320338452909152902054919061301b565b6123e0565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610c56918590610f2d9086612360565b60055473ffffffffffffffffffffffffffffffffffffffff163314611000576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b610258831015611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610cdd565b6103e88211158015611192575060015b61121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610cdd565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260216020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b601683905560178290556018819055806113ca8385613f9b565b6113d49190613f9b565b601581905560141015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610cdd565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff16331461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610bc690613ea0565b60055473ffffffffffffffffffffffffffffffffffffffff163314611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cdd565b61172b828261306f565b5050565b6000610c563384610f2d856040518060600160405280602581526020016141376025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061301b565b6000610c56338484612627565b60055473ffffffffffffffffffffffffffffffffffffffff163314611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b73ffffffffffffffffffffffffffffffffffffffff82166000818152602080805260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b601a839055601b829055601c81905580611a4c8385613f9b565b611a569190613f9b565b60198181551015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610cdd565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b670de0b6b3a7640000620f4240611b5a60025490565b611b65906001613f23565b611b6f9190613f60565b611b799190613f60565b811015611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b611c1981670de0b6b3a7640000613f23565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ca3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b620186a0611cb060025490565b611cbb906001613f23565b611cc59190613f60565b821015611d54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610cdd565b50600981905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611e169084612360565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205550600192915050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ec9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b600f5460105461209a9190613f9b565b4211612102576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cdd565b6103e8821115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610cdd565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a082319060240160206040518083038186803b15801561222057600080fd5b505afa158015612234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122589190613fb3565b9050600061227261271061226c84876130ee565b906131a3565b905080156122a7576122a77f000000000000000000000000000000000000000000000000000000000000000061dead836131e5565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561231457600080fd5b505af1158015612328573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b60008061236d8385613f9b565b9050838110156123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610cdd565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff8216612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6002546125a982670de0b6b3a7640000613f23565b1061260f576125c081670de0b6b3a7640000613f23565b601455600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff16159091021790555b61262181670de0b6b3a7640000613f23565b60085550565b73ffffffffffffffffffffffffffffffffffffffff83166126ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff821661276d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b8061277e57611443838360006131e5565b60115460ff1615612b6f5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906127cf575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156127f0575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612814575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561283c57506005547501000000000000000000000000000000000000000000900460ff16155b15612b6f57601154610100900460ff166128b05773ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16806128a7575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff165b6128b057600080fd5b60135460ff16156129bd5760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061293257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561298a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129bd573260009081526012602052604090205443116129aa57600080fd5b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff168015612a18575073ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16155b15612a6f57600854811115612a2c57600080fd5b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612a5f9083613f9b565b1115612a6a57600080fd5b612b6f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff168015612aca575073ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16155b15612b04576008548111158015612afb575060055474010000000000000000000000000000000000000000900460ff165b612a6a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16612b6f57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612b649083613f9b565b1115612b6f57600080fd5b3060009081526020819052604090205460095481108015908190612b9b575060115462010000900460ff165b8015612bc357506005547501000000000000000000000000000000000000000000900460ff16155b8015612bf5575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015612c26575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b8015612c57575073ffffffffffffffffffffffffffffffffffffffff8416600090815260208052604090205460ff16155b15612ccd57600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055612ca461340f565b600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555b6005547501000000000000000000000000000000000000000000900460ff16158015612d1e575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff165b8015612d2c5750600c5460ff165b8015612d475750600d54600e54612d439190613f9b565b4210155b8015612d78575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b15612d8757612d85613663565b505b60055473ffffffffffffffffffffffffffffffffffffffff8616600090815260208052604090205460ff7501000000000000000000000000000000000000000000909204821615911680612dff575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff165b15612e08575060005b600081156130075773ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff168015612e4757506000601954115b15612eff57612e66606461226c601954886130ee90919063ffffffff16565b9050601954601b5482612e799190613f23565b612e839190613f60565b601e6000828254612e949190613f9b565b9091555050601954601c54612ea99083613f23565b612eb39190613f60565b601f6000828254612ec49190613f9b565b9091555050601954601a54612ed99083613f23565b612ee39190613f60565b601d6000828254612ef49190613f9b565b90915550612fe99050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526022602052604090205460ff168015612f3657506000601554115b15612fe957612f55606461226c601554886130ee90919063ffffffff16565b905060155460175482612f689190613f23565b612f729190613f60565b601e6000828254612f839190613f9b565b9091555050601554601854612f989083613f23565b612fa29190613f60565b601f6000828254612fb39190613f9b565b9091555050601554601654612fc89083613f23565b612fd29190613f60565b601d6000828254612fe39190613f9b565b90915550505b8015612ffa57612ffa8730836131e5565b6130048186613fcc565b94505b6130128787876131e5565b50505050505050565b60008184841115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd9190613c49565b5060006130668486613fcc565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000826130fd57506000610c5a565b60006131098385613f23565b9050826131168583613f60565b146123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b60006123d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613835565b73ffffffffffffffffffffffffffffffffffffffff8316613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff821661332b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b613375816040518060600160405280602681526020016140e96026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919061301b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546133b19082612360565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612587565b3060009081526020819052604081205490506000601f54601d54601e546134369190613f9b565b6134409190613f9b565b9050600082158061344f575081155b1561345957505050565b600954613467906014613f23565b83111561347f5760095461347c906014613f23565b92505b6000600283601e54866134929190613f23565b61349c9190613f60565b6134a69190613f60565b905060006134b4858361387d565b9050476134c0826138bf565b60006134cc478361387d565b905060006134e98761226c601d54856130ee90919063ffffffff16565b905060006135068861226c601f54866130ee90919063ffffffff16565b90506000816135158486613fcc565b61351f9190613fcc565b6000601e819055601d819055601f81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613589576040519150601f19603f3d011682016040523d82523d6000602084013e61358e565b606091505b509098505086158015906135a25750600081115b156135f5576135b18782613af5565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d806000811461364f576040519150601f19603f3d011682016040523d82523d6000602084013e613654565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a082319060240160206040518083038186803b1580156136f157600080fd5b505afa158015613705573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137299190613fb3565b9050600061374861271061226c600b54856130ee90919063ffffffff16565b9050801561377d5761377d7f000000000000000000000000000000000000000000000000000000000000000061dead836131e5565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ea57600080fd5b505af11580156137fe573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60008183613870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd9190613c49565b5060006130668486613f60565b60006123d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061301b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106138f4576138f4613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399457600080fd5b505afa1580156139a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139cc9190614012565b816001815181106139df576139df613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a44307f0000000000000000000000000000000000000000000000000000000000000000846123e0565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613abf90859060009086903090429060040161402f565b600060405180830381600087803b158015613ad957600080fd5b505af1158015613aed573d6000803e3d6000fd5b505050505050565b613b20307f0000000000000000000000000000000000000000000000000000000000000000846123e0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b8160055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015613c0957600080fd5b505af1158015613c1d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c4291906140ba565b5050505050565b600060208083528351808285015260005b81811015613c7657858101830151858201604001528201613c5a565b81811115613c88576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610ec357600080fd5b60008060408385031215613cf157600080fd5b8235613cfc81613cbc565b946020939093013593505050565b600060208284031215613d1c57600080fd5b81356123d981613cbc565b600060208284031215613d3957600080fd5b5035919050565b600080600060608486031215613d5557600080fd5b8335613d6081613cbc565b92506020840135613d7081613cbc565b929592945050506040919091013590565b80358015158114611d5d57600080fd5b600080600060608486031215613da657600080fd5b8335925060208401359150613dbd60408501613d81565b90509250925092565b60008060408385031215613dd957600080fd5b8235613de481613cbc565b9150613df260208401613d81565b90509250929050565b600080600060608486031215613e1057600080fd5b505081359360208301359350604090920135919050565b600060208284031215613e3957600080fd5b6123d982613d81565b60008060408385031215613e5557600080fd5b823591506020830135613e6781613cbc565b809150509250929050565b60008060408385031215613e8557600080fd5b8235613e9081613cbc565b91506020830135613e6781613cbc565b600181811c90821680613eb457607f821691505b60208210811415613eee577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5b57613f5b613ef4565b500290565b600082613f96577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115613fae57613fae613ef4565b500190565b600060208284031215613fc557600080fd5b5051919050565b600082821015613fde57613fde613ef4565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561402457600080fd5b81516123d981613cbc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561408c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161405a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156140cf57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e7f2eca66bbd41a4414e021de9a18b4b31f7272d416c01513e810808956914e564736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c806392136913116101e7578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b4b578063f637434214610b6b578063f8b45b0514610b81578063fe72b27a14610b9757600080fd5b8063dd62ed3e14610ab7578063e2f4560514610b0a578063e884f26014610b20578063f11a24d314610b3557600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a4b578063d257b34f14610a61578063d85ba06314610a81578063db1dbb8b14610a9757600080fd5b8063c0246668146109d1578063c17b5b8c146109f1578063c18bc19514610a11578063c876d0b914610a3157600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610942578063aacebbe314610962578063b62496f514610982578063bbc0c742146109b257600080fd5b80639fccce32146108e0578063a0d82dc5146108f6578063a457c2d71461090c578063a4c82a001461092c57600080fd5b806395d89b41116101c157806395d89b411461087f5780639a7a23d6146108945780639c3b4fdc146108b45780639ec22c0e146108ca57600080fd5b80639213691314610817578063924de9b71461082d57806392d0d1531461084d57600080fd5b806339509351116102d7578063730c18881161026a5780638095d564116102395780638095d5641461078a5780638a8c523c146107aa5780638da5cb5b146107bf5780638ea5220f146107ea57600080fd5b8063730c1888146107075780637571336a1461072757806375f0a874146107475780637bce5a041461077457600080fd5b80636a486a8e116102a65780636a486a8e146106795780636ddd17131461068f57806370a08231146106af578063715018a6146106f257600080fd5b806339509351146105c657806349bd5a5e146105e65780634a62bb651461061a5780634fbee1931461063457600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055a5780632c3e486c1461057a5780632e82f1a014610590578063313ce567146105aa57600080fd5b8063199ffc72146104f85780631a8145bb1461050e5780631f3fed8f14610524578063203e727e1461053a57600080fd5b80631694505e1161038b5780631694505e1461044857806318160ddd146104a15780631816467f146104c0578063184c16c5146104e257600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610bb7565b6040516103df9190613c49565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613cde565b610c49565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004613d0a565b60216020526000908152604090205460ff1681565b34801561045457600080fd5b5061047c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103df565b3480156104ad57600080fd5b506002545b6040519081526020016103df565b3480156104cc57600080fd5b506104e06104db366004613d0a565b610c60565b005b3480156104ee57600080fd5b506104b2600f5481565b34801561050457600080fd5b506104b2600b5481565b34801561051a57600080fd5b506104b2601e5481565b34801561053057600080fd5b506104b2601d5481565b34801561054657600080fd5b506104e0610555366004613d27565b610d75565b34801561056657600080fd5b50610408610575366004613d40565b610ec6565b34801561058657600080fd5b506104b2600d5481565b34801561059c57600080fd5b50600c546104089060ff1681565b3480156105b657600080fd5b50604051601281526020016103df565b3480156105d257600080fd5b506104086105e1366004613cde565b610f3c565b3480156105f257600080fd5b5061047c7f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de81565b34801561062657600080fd5b506011546104089060ff1681565b34801561064057600080fd5b5061040861064f366004613d0a565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b34801561068557600080fd5b506104b260195481565b34801561069b57600080fd5b506011546104089062010000900460ff1681565b3480156106bb57600080fd5b506104b26106ca366004613d0a565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106fe57600080fd5b506104e0610f7f565b34801561071357600080fd5b506104e0610722366004613d91565b61106f565b34801561073357600080fd5b506104e0610742366004613dc6565b611258565b34801561075357600080fd5b5060065461047c9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561078057600080fd5b506104b260165481565b34801561079657600080fd5b506104e06107a5366004613dfb565b61132f565b3480156107b657600080fd5b506104e0611448565b3480156107cb57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661047c565b3480156107f657600080fd5b5060075461047c9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561082357600080fd5b506104b2601a5481565b34801561083957600080fd5b506104e0610848366004613e27565b6114fc565b34801561085957600080fd5b506005546104089074010000000000000000000000000000000000000000900460ff1681565b34801561088b57600080fd5b506103d26115b5565b3480156108a057600080fd5b506104e06108af366004613dc6565b6115c4565b3480156108c057600080fd5b506104b260185481565b3480156108d657600080fd5b506104b260105481565b3480156108ec57600080fd5b506104b2601f5481565b34801561090257600080fd5b506104b2601c5481565b34801561091857600080fd5b50610408610927366004613cde565b61172f565b34801561093857600080fd5b506104b2600e5481565b34801561094e57600080fd5b5061040861095d366004613cde565b61178b565b34801561096e57600080fd5b506104e061097d366004613d0a565b611798565b34801561098e57600080fd5b5061040861099d366004613d0a565b60226020526000908152604090205460ff1681565b3480156109be57600080fd5b5060115461040890610100900460ff1681565b3480156109dd57600080fd5b506104e06109ec366004613dc6565b6118a8565b3480156109fd57600080fd5b506104e0610a0c366004613dfb565b6119b1565b348015610a1d57600080fd5b506104e0610a2c366004613d27565b611ac3565b348015610a3d57600080fd5b506013546104089060ff1681565b348015610a5757600080fd5b506104b260085481565b348015610a6d57600080fd5b50610408610a7c366004613d27565b611c1f565b348015610a8d57600080fd5b506104b260155481565b348015610aa357600080fd5b50610408610ab2366004613e42565b611d62565b348015610ac357600080fd5b506104b2610ad2366004613e72565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b1657600080fd5b506104b260095481565b348015610b2c57600080fd5b50610408611e45565b348015610b4157600080fd5b506104b260175481565b348015610b5757600080fd5b506104e0610b66366004613d0a565b611ef7565b348015610b7757600080fd5b506104b2601b5481565b348015610b8d57600080fd5b506104b2600a5481565b348015610ba357600080fd5b50610408610bb2366004613d27565b612006565b606060038054610bc690613ea0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290613ea0565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c563384846123e0565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ce6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610df6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b610dff81612594565b670de0b6b3a7640000620f4240610e1560025490565b610e20906001613f23565b610e2a9190613f60565b610e349190613f60565b811015610ec3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610cdd565b50565b6000610ed3848484612627565b610f328433610f2d8560405180606001604052806028815260200161410f6028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160209081526040808320338452909152902054919061301b565b6123e0565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610c56918590610f2d9086612360565b60055473ffffffffffffffffffffffffffffffffffffffff163314611000576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b610258831015611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610cdd565b6103e88211158015611192575060015b61121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610cdd565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260216020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b601683905560178290556018819055806113ca8385613f9b565b6113d49190613f9b565b601581905560141015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610cdd565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff16331461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610bc690613ea0565b60055473ffffffffffffffffffffffffffffffffffffffff163314611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b7f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cdd565b61172b828261306f565b5050565b6000610c563384610f2d856040518060600160405280602581526020016141376025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061301b565b6000610c56338484612627565b60055473ffffffffffffffffffffffffffffffffffffffff163314611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b73ffffffffffffffffffffffffffffffffffffffff82166000818152602080805260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b601a839055601b829055601c81905580611a4c8385613f9b565b611a569190613f9b565b60198181551015611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610cdd565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b670de0b6b3a7640000620f4240611b5a60025490565b611b65906001613f23565b611b6f9190613f60565b611b799190613f60565b811015611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b611c1981670de0b6b3a7640000613f23565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ca3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b620186a0611cb060025490565b611cbb906001613f23565b611cc59190613f60565b821015611d54576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610cdd565b50600981905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611de6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611e169084612360565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205550600192915050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ec9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdd565b600f5460105461209a9190613f9b565b4211612102576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cdd565b6103e8821115612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610cdd565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de16600482015260009030906370a082319060240160206040518083038186803b15801561222057600080fd5b505afa158015612234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122589190613fb3565b9050600061227261271061226c84876130ee565b906131a3565b905080156122a7576122a77f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de61dead836131e5565b60007f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561231457600080fd5b505af1158015612328573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b60008061236d8385613f9b565b9050838110156123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610cdd565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff8216612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6002546125a982670de0b6b3a7640000613f23565b1061260f576125c081670de0b6b3a7640000613f23565b601455600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff16159091021790555b61262181670de0b6b3a7640000613f23565b60085550565b73ffffffffffffffffffffffffffffffffffffffff83166126ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff821661276d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b8061277e57611443838360006131e5565b60115460ff1615612b6f5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906127cf575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156127f0575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612814575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561283c57506005547501000000000000000000000000000000000000000000900460ff16155b15612b6f57601154610100900460ff166128b05773ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16806128a7575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff165b6128b057600080fd5b60135460ff16156129bd5760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061293257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561298a57507f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129bd573260009081526012602052604090205443116129aa57600080fd5b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff168015612a18575073ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16155b15612a6f57600854811115612a2c57600080fd5b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612a5f9083613f9b565b1115612a6a57600080fd5b612b6f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff168015612aca575073ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16155b15612b04576008548111158015612afb575060055474010000000000000000000000000000000000000000900460ff165b612a6a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16612b6f57600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612b649083613f9b565b1115612b6f57600080fd5b3060009081526020819052604090205460095481108015908190612b9b575060115462010000900460ff165b8015612bc357506005547501000000000000000000000000000000000000000000900460ff16155b8015612bf5575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015612c26575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b8015612c57575073ffffffffffffffffffffffffffffffffffffffff8416600090815260208052604090205460ff16155b15612ccd57600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055612ca461340f565b600580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555b6005547501000000000000000000000000000000000000000000900460ff16158015612d1e575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff165b8015612d2c5750600c5460ff165b8015612d475750600d54600e54612d439190613f9b565b4210155b8015612d78575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b15612d8757612d85613663565b505b60055473ffffffffffffffffffffffffffffffffffffffff8616600090815260208052604090205460ff7501000000000000000000000000000000000000000000909204821615911680612dff575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff165b15612e08575060005b600081156130075773ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff168015612e4757506000601954115b15612eff57612e66606461226c601954886130ee90919063ffffffff16565b9050601954601b5482612e799190613f23565b612e839190613f60565b601e6000828254612e949190613f9b565b9091555050601954601c54612ea99083613f23565b612eb39190613f60565b601f6000828254612ec49190613f9b565b9091555050601954601a54612ed99083613f23565b612ee39190613f60565b601d6000828254612ef49190613f9b565b90915550612fe99050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526022602052604090205460ff168015612f3657506000601554115b15612fe957612f55606461226c601554886130ee90919063ffffffff16565b905060155460175482612f689190613f23565b612f729190613f60565b601e6000828254612f839190613f9b565b9091555050601554601854612f989083613f23565b612fa29190613f60565b601f6000828254612fb39190613f9b565b9091555050601554601654612fc89083613f23565b612fd29190613f60565b601d6000828254612fe39190613f9b565b90915550505b8015612ffa57612ffa8730836131e5565b6130048186613fcc565b94505b6130128787876131e5565b50505050505050565b60008184841115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd9190613c49565b5060006130668486613fcc565b95945050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000826130fd57506000610c5a565b60006131098385613f23565b9050826131168583613f60565b146123d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b60006123d983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613835565b73ffffffffffffffffffffffffffffffffffffffff8316613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cdd565b73ffffffffffffffffffffffffffffffffffffffff821661332b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cdd565b613375816040518060600160405280602681526020016140e96026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919061301b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546133b19082612360565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612587565b3060009081526020819052604081205490506000601f54601d54601e546134369190613f9b565b6134409190613f9b565b9050600082158061344f575081155b1561345957505050565b600954613467906014613f23565b83111561347f5760095461347c906014613f23565b92505b6000600283601e54866134929190613f23565b61349c9190613f60565b6134a69190613f60565b905060006134b4858361387d565b9050476134c0826138bf565b60006134cc478361387d565b905060006134e98761226c601d54856130ee90919063ffffffff16565b905060006135068861226c601f54866130ee90919063ffffffff16565b90506000816135158486613fcc565b61351f9190613fcc565b6000601e819055601d819055601f81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613589576040519150601f19603f3d011682016040523d82523d6000602084013e61358e565b606091505b509098505086158015906135a25750600081115b156135f5576135b18782613af5565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d806000811461364f576040519150601f19603f3d011682016040523d82523d6000602084013e613654565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de166004820152600090819030906370a082319060240160206040518083038186803b1580156136f157600080fd5b505afa158015613705573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137299190613fb3565b9050600061374861271061226c600b54856130ee90919063ffffffff16565b9050801561377d5761377d7f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de61dead836131e5565b60007f000000000000000000000000746232b4128787115a8cc4a1616d07528a63e6de90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ea57600080fd5b505af11580156137fe573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60008183613870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd9190613c49565b5060006130668486613f60565b60006123d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061301b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106138f4576138f4613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399457600080fd5b505afa1580156139a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139cc9190614012565b816001815181106139df576139df613fe3565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a44307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123e0565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613abf90859060009086903090429060040161402f565b600060405180830381600087803b158015613ad957600080fd5b505af1158015613aed573d6000803e3d6000fd5b505050505050565b613b20307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123e0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b8160055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015613c0957600080fd5b505af1158015613c1d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c4291906140ba565b5050505050565b600060208083528351808285015260005b81811015613c7657858101830151858201604001528201613c5a565b81811115613c88576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114610ec357600080fd5b60008060408385031215613cf157600080fd5b8235613cfc81613cbc565b946020939093013593505050565b600060208284031215613d1c57600080fd5b81356123d981613cbc565b600060208284031215613d3957600080fd5b5035919050565b600080600060608486031215613d5557600080fd5b8335613d6081613cbc565b92506020840135613d7081613cbc565b929592945050506040919091013590565b80358015158114611d5d57600080fd5b600080600060608486031215613da657600080fd5b8335925060208401359150613dbd60408501613d81565b90509250925092565b60008060408385031215613dd957600080fd5b8235613de481613cbc565b9150613df260208401613d81565b90509250929050565b600080600060608486031215613e1057600080fd5b505081359360208301359350604090920135919050565b600060208284031215613e3957600080fd5b6123d982613d81565b60008060408385031215613e5557600080fd5b823591506020830135613e6781613cbc565b809150509250929050565b60008060408385031215613e8557600080fd5b8235613e9081613cbc565b91506020830135613e6781613cbc565b600181811c90821680613eb457607f821691505b60208210811415613eee577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5b57613f5b613ef4565b500290565b600082613f96577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115613fae57613fae613ef4565b500190565b600060208284031215613fc557600080fd5b5051919050565b600082821015613fde57613fde613ef4565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561402457600080fd5b81516123d981613cbc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561408c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161405a565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156140cf57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e7f2eca66bbd41a4414e021de9a18b4b31f7272d416c01513e810808956914e564736f6c63430008090033

Deployed Bytecode Sourcemap

19108:16837:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7106:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8153:210;;;;;;;;;;-1:-1:-1;8153:210:0;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;8153:210:0;1154:187:1;20505:63:0;;;;;;;;;;-1:-1:-1;20505:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19185:51;;;;;;;;;;;;;;;;;;1801:42:1;1789:55;;;1771:74;;1759:2;1744:18;19185:51:0;1598:253:1;7427:108:0;;;;;;;;;;-1:-1:-1;7515:12:0;;7427:108;;;2002:25:1;;;1990:2;1975:18;7427:108:0;1856:177:1;27085:157:0;;;;;;;;;;-1:-1:-1;27085:157:0;;;;;:::i;:::-;;:::i;:::-;;19678:47;;;;;;;;;;;;;;;;19505:36;;;;;;;;;;;;;;;;20370:33;;;;;;;;;;;;;;;;20330;;;;;;;;;;;;;;;;24262:258;;;;;;;;;;-1:-1:-1;24262:258:0;;;;;:::i;:::-;;:::i;8371:454::-;;;;;;;;;;-1:-1:-1;8371:454:0;;;;;:::i;:::-;;:::i;19588:45::-;;;;;;;;;;;;;;;;19548:33;;;;;;;;;;-1:-1:-1;19548:33:0;;;;;;;;7326:93;;;;;;;;;;-1:-1:-1;7326:93:0;;7409:2;2826:36:1;;2814:2;2799:18;7326:93:0;2684:184:1;8833:300:0;;;;;;;;;;-1:-1:-1;8833:300:0;;;;;:::i;:::-;;:::i;19243:38::-;;;;;;;;;;;;;;;19776:33;;;;;;;;;;-1:-1:-1;19776:33:0;;;;;;;;27250:126;;;;;;;;;;-1:-1:-1;27250:126:0;;;;;:::i;:::-;27340:28;;27316:4;27340:28;;;:19;:28;;;;;;;;;27250:126;20185:28;;;;;;;;;;;;;;;;19856:31;;;;;;;;;;-1:-1:-1;19856:31:0;;;;;;;;;;;7543:169;;;;;;;;;;-1:-1:-1;7543:169:0;;;;;:::i;:::-;7694:10;;7662:7;7694:10;;;;;;;;;;;;7543:169;11685:148;;;;;;;;;;;;;:::i;33987:555::-;;;;;;;;;;-1:-1:-1;33987:555:0;;;;;:::i;:::-;;:::i;25036:167::-;;;;;;;;;;-1:-1:-1;25036:167:0;;;;;:::i;:::-;;:::i;19320:30::-;;;;;;;;;;-1:-1:-1;19320:30:0;;;;;;;;20078;;;;;;;;;;;;;;;;25319:403;;;;;;;;;;-1:-1:-1;25319:403:0;;;;;:::i;:::-;;:::i;23379:155::-;;;;;;;;;;;;;:::i;11471:79::-;;;;;;;;;;-1:-1:-1;11536:6:0;;;;11471:79;;19357:24;;;;;;;;;;-1:-1:-1;19357:24:0;;;;;;;;20220:31;;;;;;;;;;;;;;;;25211:100;;;;;;;;;;-1:-1:-1;25211:100:0;;;;;:::i;:::-;;:::i;11166:20::-;;;;;;;;;;-1:-1:-1;11166:20:0;;;;;;;;;;;7214:104;;;;;;;;;;;;;:::i;26340:304::-;;;;;;;;;;-1:-1:-1;26340:304:0;;;;;:::i;:::-;;:::i;20152:24::-;;;;;;;;;;;;;;;;19732:35;;;;;;;;;;;;;;;;20410:27;;;;;;;;;;;;;;;;20296:25;;;;;;;;;;;;;;;;9141:400;;;;;;;;;;-1:-1:-1;9141:400:0;;;;;:::i;:::-;;:::i;19640:29::-;;;;;;;;;;;;;;;;7720:216;;;;;;;;;;-1:-1:-1;7720:216:0;;;;;:::i;:::-;;:::i;26846:231::-;;;;;;;;;;-1:-1:-1;26846:231:0;;;;;:::i;:::-;;:::i;20577:57::-;;;;;;;;;;-1:-1:-1;20577:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19816:33;;;;;;;;;;-1:-1:-1;19816:33:0;;;;;;;;;;;26150:182;;;;;;;;;;-1:-1:-1;26150:182:0;;;;;:::i;:::-;;:::i;25730:412::-;;;;;;;;;;-1:-1:-1;25730:412:0;;;;;:::i;:::-;;:::i;24769:259::-;;;;;;;;;;-1:-1:-1;24769:259:0;;;;;:::i;:::-;;:::i;19967:39::-;;;;;;;;;;-1:-1:-1;19967:39:0;;;;;;;;19390:35;;;;;;;;;;;;;;;;23909:345;;;;;;;;;;-1:-1:-1;23909:345:0;;;;;:::i;:::-;;:::i;20044:27::-;;;;;;;;;;;;;;;;23542:216;;;;;;;;;;-1:-1:-1;23542:216:0;;;;;:::i;:::-;;:::i;7944:201::-;;;;;;;;;;-1:-1:-1;7944:201:0;;;;;:::i;:::-;8110:18;;;;8078:7;8110:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7944:201;19432:33;;;;;;;;;;;;;;;;23766:135;;;;;;;;;;;;;:::i;20115:30::-;;;;;;;;;;;;;;;;11841:160;;;;;;;;;;-1:-1:-1;11841:160:0;;;;;:::i;:::-;;:::i;20258:31::-;;;;;;;;;;;;;;;;19472:24;;;;;;;;;;;;;;;;35116:826;;;;;;;;;;-1:-1:-1;35116:826:0;;;;;:::i;:::-;;:::i;7106:100::-;7160:13;7193:5;7186:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7106:100;:::o;8153:210::-;8272:4;8294:39;4747:10;8317:7;8326:6;8294:8;:39::i;:::-;-1:-1:-1;8351:4:0;8153:210;;;;;:::o;27085:157::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;;;;;;;;;27192:9:::1;::::0;27164:38:::1;::::0;27192:9:::1;::::0;;::::1;::::0;27164:38;::::1;::::0;::::1;::::0;27192:9:::1;::::0;27164:38:::1;27213:9;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;27085:157::o;24262:258::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;24336:20:::1;24349:6;24336:12;:20::i;:::-;24433:4;24422:7;24401:13;7515:12:::0;;;7427:108;24401:13:::1;:17;::::0;24417:1:::1;24401:17;:::i;:::-;24400:29;;;;:::i;:::-;24399:38;;;;:::i;:::-;24389:6;:48;;24367:145;;;::::0;::::1;::::0;;6835:2:1;24367:145:0::1;::::0;::::1;6817:21:1::0;6874:2;6854:18;;;6847:30;6913:34;6893:18;;;6886:62;6984:17;6964:18;;;6957:45;7019:19;;24367:145:0::1;6633:411:1::0;24367:145:0::1;24262:258:::0;:::o;8371:454::-;8511:4;8528:36;8538:6;8546:9;8557:6;8528:9;:36::i;:::-;8575:220;8598:6;4747:10;8646:138;8702:6;8646:138;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;4747:10;8646:33;;;;;;;;;;:37;:138::i;:::-;8575:8;:220::i;:::-;-1:-1:-1;8813:4:0;8371:454;;;;;:::o;8833:300::-;4747:10;8948:4;9042:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;8948:4;;8970:133;;9020:7;;9042:50;;9081:10;9042:38;:50::i;11685:148::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;11776:6:::1;::::0;11755:40:::1;::::0;11792:1:::1;::::0;11755:40:::1;11776:6;::::0;11755:40:::1;::::0;11792:1;;11755:40:::1;11806:6;:19:::0;;;::::1;::::0;;11685:148::o;33987:555::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;34189:3:::1;34166:19;:26;;34144:127;;;::::0;::::1;::::0;;7251:2:1;34144:127:0::1;::::0;::::1;7233:21:1::0;7290:2;7270:18;;;7263:30;7329:34;7309:18;;;7302:62;7400:21;7380:18;;;7373:49;7439:19;;34144:127:0::1;7049:415:1::0;34144:127:0::1;34316:4;34304:8;:16;;:33;;;;-1:-1:-1::0;34324:13:0;34304:33:::1;34282:131;;;::::0;::::1;::::0;;7671:2:1;34282:131:0::1;::::0;::::1;7653:21:1::0;7710:2;7690:18;;;7683:30;7749:34;7729:18;;;7722:62;7820:18;7800;;;7793:46;7856:19;;34282:131:0::1;7469:412:1::0;34282:131:0::1;34424:15;:37:::0;;;;34472:16:::1;:27:::0;34510:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;33987:555::o;25036:167::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;25149:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;25036:167::o;25319:403::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;25469:15:::1;:31:::0;;;25511:15:::1;:31:::0;;;25553:9:::1;:19:::0;;;25565:7;25598:33:::1;25529:13:::0;25487;25598:33:::1;:::i;:::-;:45;;;;:::i;:::-;25583:12;:60:::0;;;25678:2:::1;-1:-1:-1::0;25662:18:0::1;25654:60;;;::::0;::::1;::::0;;8221:2:1;25654:60:0::1;::::0;::::1;8203:21:1::0;8260:2;8240:18;;;8233:30;8299:31;8279:18;;;8272:59;8348:18;;25654:60:0::1;8019:353:1::0;25654:60:0::1;25319:403:::0;;;:::o;23379:155::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;23434:13:::1;:20:::0;;23465:18;;;;;;23511:15:::1;23494:14;:32:::0;23379:155::o;25211:100::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;25282:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;25211:100::o;7214:104::-;7270:13;7303:7;7296:14;;;;;:::i;26340:304::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;26484:13:::1;26476:21;;:4;:21;;;;26454:128;;;::::0;::::1;::::0;;8579:2:1;26454:128:0::1;::::0;::::1;8561:21:1::0;8618:2;8598:18;;;8591:30;8657:34;8637:18;;;8630:62;8728:27;8708:18;;;8701:55;8773:19;;26454:128:0::1;8377:421:1::0;26454:128:0::1;26595:41;26624:4;26630:5;26595:28;:41::i;:::-;26340:304:::0;;:::o;9141:400::-;9261:4;9283:228;4747:10;9333:7;9355:145;9412:15;9355:145;;;;;;;;;;;;;;;;;4747:10;9355:25;;;;:11;:25;;;;;;;;;:34;;;;;;;;;;;;:38;:145::i;7720:216::-;7842:4;7864:42;4747:10;7888:9;7899:6;7864:9;:42::i;26846:231::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;27006:15:::1;::::0;26963:59:::1;::::0;27006:15:::1;::::0;;::::1;::::0;26963:59;::::1;::::0;::::1;::::0;27006:15:::1;::::0;26963:59:::1;27033:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;26846:231::o;26150:182::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;26235:28:::1;::::0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;26290:34;;1294:41:1;;;26290:34:0::1;::::0;1267:18:1;26290:34:0::1;;;;;;;26150:182:::0;;:::o;25730:412::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;25881:16:::1;:32:::0;;;25924:16:::1;:32:::0;;;25967:10:::1;:20:::0;;;25980:7;26014:35:::1;25943:13:::0;25900;26014:35:::1;:::i;:::-;:48;;;;:::i;:::-;25998:13;:64:::0;;;-1:-1:-1;26081:19:0::1;26073:61;;;::::0;::::1;::::0;;9005:2:1;26073:61:0::1;::::0;::::1;8987:21:1::0;9044:2;9024:18;;;9017:30;9083:31;9063:18;;;9056:59;9132:18;;26073:61:0::1;8803:353:1::0;24769:259:0;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;24912:4:::1;24901:7;24880:13;7515:12:::0;;;7427:108;24880:13:::1;:17;::::0;24896:1:::1;24880:17;:::i;:::-;24879:29;;;;:::i;:::-;24878:38;;;;:::i;:::-;24868:6;:48;;24846:134;;;::::0;::::1;::::0;;9363:2:1;24846:134:0::1;::::0;::::1;9345:21:1::0;9402:2;9382:18;;;9375:30;9441:34;9421:18;;;9414:62;9512:6;9492:18;;;9485:34;9536:19;;24846:134:0::1;9161:400:1::0;24846:134:0::1;25003:17;:6:::0;25013::::1;25003:17;:::i;:::-;24991:9;:29:::0;-1:-1:-1;24769:259:0:o;23909:345::-;11598:6;;24017:4;;11598:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;24096:6:::1;24075:13;7515:12:::0;;;7427:108;24075:13:::1;:17;::::0;24091:1:::1;24075:17;:::i;:::-;24074:28;;;;:::i;:::-;24061:9;:41;;24039:144;;;::::0;::::1;::::0;;9768:2:1;24039:144:0::1;::::0;::::1;9750:21:1::0;9807:2;9787:18;;;9780:30;9846:34;9826:18;;;9819:62;9917:23;9897:18;;;9890:51;9958:19;;24039:144:0::1;9566:417:1::0;24039:144:0::1;-1:-1:-1::0;24194:18:0::1;:30:::0;;;24242:4:::1;11668:1;23909:345:::0;;;:::o;23542:216::-;11598:6;;23650:4;;11598:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;23716:5:::1;::::0;::::1;:1;:5:::0;;;::::1;::::0;;;;;;;:12:::1;::::0;23726:1;23716:9:::1;:12::i;:::-;23708:5;::::0;::::1;:1;:5:::0;;;::::1;::::0;;;;;;:20;-1:-1:-1;23746:4:0::1;23542:216:::0;;;;:::o;23766:135::-;11598:6;;23826:4;;11598:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;-1:-1:-1;23843:20:0::1;:28:::0;;;::::1;::::0;;;23766:135;:::o;11841:160::-;11598:6;;:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;11948:6:::1;::::0;11927:38:::1;::::0;::::1;::::0;;::::1;::::0;11948:6:::1;::::0;11927:38:::1;::::0;11948:6:::1;::::0;11927:38:::1;11976:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;11841:160::o;35116:826::-;11598:6;;35227:4;;11598:22;:6;4747:10;11598:22;11590:67;;;;;;;5773:2:1;11590:67:0;;;5755:21:1;;;5792:18;;;5785:30;5851:34;5831:18;;;5824:62;5903:18;;11590:67:0;5571:356:1;11590:67:0;35312:19:::1;;35289:20;;:42;;;;:::i;:::-;35271:15;:60;35249:142;;;::::0;::::1;::::0;;10190:2:1;35249:142:0::1;::::0;::::1;10172:21:1::0;;;10209:18;;;10202:30;10268:34;10248:18;;;10241:62;10320:18;;35249:142:0::1;9988:356:1::0;35249:142:0::1;35421:4;35410:7;:15;;35402:70;;;::::0;::::1;::::0;;10551:2:1;35402:70:0::1;::::0;::::1;10533:21:1::0;10590:2;10570:18;;;10563:30;10629:34;10609:18;;;10602:62;10700:12;10680:18;;;10673:40;10730:19;;35402:70:0::1;10349:406:1::0;35402:70:0::1;35506:15;35483:20;:38:::0;35565:29:::1;::::0;;;;1801:42:1;35580:13:0::1;1789:55:1::0;35565:29:0::1;::::0;::::1;1771:74:1::0;35534:28:0::1;::::0;35565:4:::1;::::0;:14:::1;::::0;1744:18:1;;35565:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35534:60:::0;-1:-1:-1;35607:20:0::1;35630:44;35668:5;35630:33;35534:60:::0;35655:7;35630:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;35607:67:::0;-1:-1:-1;35691:16:0;;35687:110:::1;;35724:61;35740:13;35763:6;35772:12;35724:15;:61::i;:::-;35809:19;35846:13;35809:51;;35871:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;35898:14:0::1;::::0;::::1;::::0;-1:-1:-1;35898:14:0;;-1:-1:-1;35898:14:0::1;-1:-1:-1::0;35930:4:0::1;::::0;35116:826;-1:-1:-1;;;;35116:826:0:o;782:179::-;840:7;;872:5;876:1;872;:5;:::i;:::-;860:17;;901:1;896;:6;;888:46;;;;;;;11151:2:1;888:46:0;;;11133:21:1;11190:2;11170:18;;;11163:30;11229:29;11209:18;;;11202:57;11276:18;;888:46:0;10949:351:1;888:46:0;952:1;782:179;-1:-1:-1;;;782:179:0:o;10582:380::-;10718:19;;;10710:68;;;;;;;11507:2:1;10710:68:0;;;11489:21:1;11546:2;11526:18;;;11519:30;11585:34;11565:18;;;11558:62;11656:6;11636:18;;;11629:34;11680:19;;10710:68:0;11305:400:1;10710:68:0;10797:21;;;10789:68;;;;;;;11912:2:1;10789:68:0;;;11894:21:1;11951:2;11931:18;;;11924:30;11990:34;11970:18;;;11963:62;12061:4;12041:18;;;12034:32;12083:19;;10789:68:0;11710:398:1;10789:68:0;10870:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10922:32;;2002:25:1;;;10922:32:0;;1975:18:1;10922:32:0;;;;;;;;10582:380;;;:::o;24528:233::-;7515:12;;24589:17;:6;24599;24589:17;:::i;:::-;:34;24585:118;;24653:17;:6;24663;24653:17;:::i;:::-;24640:10;:30;24690:1;;;24685:6;;;24690:1;;;;;;;24689:2;24685:6;;;;;;24585:118;24736:17;:6;24746;24736:17;:::i;:::-;24713:20;:40;-1:-1:-1;24528:233:0:o;27434:3977::-;27566:18;;;27558:68;;;;;;;12315:2:1;27558:68:0;;;12297:21:1;12354:2;12334:18;;;12327:30;12393:34;12373:18;;;12366:62;12464:7;12444:18;;;12437:35;12489:19;;27558:68:0;12113:401:1;27558:68:0;27645:16;;;27637:64;;;;;;;12721:2:1;27637:64:0;;;12703:21:1;12760:2;12740:18;;;12733:30;12799:34;12779:18;;;12772:62;12870:5;12850:18;;;12843:33;12893:19;;27637:64:0;12519:399:1;27637:64:0;27718:11;27714:93;;27746:28;27762:4;27768:2;27772:1;27746:15;:28::i;27714:93::-;27823:14;;;;27819:1672;;;11536:6;;;27876:15;;;11536:6;;27876:15;;;;:49;;-1:-1:-1;11536:6:0;;;27912:13;;;11536:6;;27912:13;;27876:49;:86;;;;-1:-1:-1;27946:16:0;;;;;27876:86;:128;;;;-1:-1:-1;27983:21:0;;;27997:6;27983:21;;27876:128;:158;;;;-1:-1:-1;28026:8:0;;;;;;;28025:9;27876:158;27854:1626;;;28074:13;;;;;;;28069:172;;28146:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;28175:23:0;;;;;;;:19;:23;;;;;;;;28146:52;28112:109;;;;;;28263:20;;;;28259:535;;;11536:6;;;28338:13;;;11536:6;;28338:13;;;;:72;;;28394:15;28380:30;;:2;:30;;;;28338:72;:129;;;;;28453:13;28439:28;;:2;:28;;;;28338:129;28308:467;;;28585:9;28556:39;;;;:28;:39;;;;;;28631:12;-1:-1:-1;28518:152:0;;;;;;28726:9;28697:39;;;;:28;:39;;;;;28739:12;28697:54;;28308:467;28838:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;28895:35:0;;;;;;;:31;:35;;;;;;;;28894:36;28838:92;28812:653;;;28991:20;;28981:6;:30;;28973:39;;;;;;29069:9;;7694:10;;;7662:7;7694:10;;;;;;;;;;;29043:22;;:6;:22;:::i;:::-;:35;;29035:44;;;;;;28812:653;;;29131:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;29186:37:0;;;;;;;:31;:37;;;;;;;;29185:38;29131:92;29105:360;;;29284:20;;29274:6;:30;;:35;;;;-1:-1:-1;29308:1:0;;;;;;;29274:35;29266:44;;;;;29105:360;29341:35;;;;;;;:31;:35;;;;;;;;29336:129;;29435:9;;7694:10;;;7662:7;7694:10;;;;;;;;;;;29409:22;;:6;:22;:::i;:::-;:35;;29401:44;;;;;;29552:4;29503:28;7694:10;;;;;;;;;;;29610:18;;29586:42;;;;;;;29659:35;;-1:-1:-1;29683:11:0;;;;;;;29659:35;:61;;;;-1:-1:-1;29712:8:0;;;;;;;29711:9;29659:61;:110;;;;-1:-1:-1;29738:31:0;;;;;;;:25;:31;;;;;;;;29737:32;29659:110;:153;;;;-1:-1:-1;29787:25:0;;;;;;;:19;:25;;;;;;;;29786:26;29659:153;:194;;;;-1:-1:-1;29830:23:0;;;;;;;:19;:23;;;;;;;;29829:24;29659:194;29641:326;;;29880:8;:15;;;;;;;;29912:10;:8;:10::i;:::-;29939:8;:16;;;;;;29641:326;29998:8;;;;;;;29997:9;:55;;;;-1:-1:-1;30023:29:0;;;;;;;:25;:29;;;;;;;;29997:55;:85;;;;-1:-1:-1;30069:13:0;;;;29997:85;:153;;;;;30135:15;;30118:14;;:32;;;;:::i;:::-;30099:15;:51;;29997:153;:196;;;;-1:-1:-1;30168:25:0;;;;;;;:19;:25;;;;;;;;30167:26;29997:196;29979:282;;;30220:29;:27;:29::i;:::-;;29979:282;30289:8;;30314:25;;;30273:12;30314:25;;;:19;:25;;;;;;30289:8;;;;;;;30288:9;;30314:25;;:52;;-1:-1:-1;30343:23:0;;;;;;;:19;:23;;;;;;;;30314:52;30310:100;;;-1:-1:-1;30393:5:0;30310:100;30422:12;30453:7;30449:909;;;30481:29;;;;;;;:25;:29;;;;;;;;:50;;;;;30530:1;30514:13;;:17;30481:50;30477:732;;;30559:34;30589:3;30559:25;30570:13;;30559:6;:10;;:25;;;;:::i;:34::-;30552:41;;30662:13;;30642:16;;30635:4;:23;;;;:::i;:::-;30634:41;;;;:::i;:::-;30612:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;30732:13:0;;30718:10;;30711:17;;:4;:17;:::i;:::-;30710:35;;;;:::i;:::-;30694:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;30814:13:0;;30794:16;;30787:23;;:4;:23;:::i;:::-;30786:41;;;;:::i;:::-;30764:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;30477:732:0;;-1:-1:-1;30477:732:0;;30853:31;;;;;;;:25;:31;;;;;;;;:51;;;;;30903:1;30888:12;;:16;30853:51;30849:360;;;30932:33;30961:3;30932:24;30943:12;;30932:6;:10;;:24;;;;:::i;:33::-;30925:40;;31033:12;;31014:15;;31007:4;:22;;;;:::i;:::-;31006:39;;;;:::i;:::-;30984:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;31101:12:0;;31088:9;;31081:16;;:4;:16;:::i;:::-;31080:33;;;;:::i;:::-;31064:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;31181:12:0;;31162:15;;31155:22;;:4;:22;:::i;:::-;31154:39;;;;:::i;:::-;31132:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;30849:360:0;31229:8;;31225:91;;31258:42;31274:4;31288;31295;31258:15;:42::i;:::-;31332:14;31342:4;31332:14;;:::i;:::-;;;30449:909;31370:33;31386:4;31392:2;31396:6;31370:15;:33::i;:::-;27547:3864;;;;27434:3977;;;:::o;179:224::-;299:7;335:12;327:6;;;;319:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;359:9:0;371:5;375:1;371;:5;:::i;:::-;359:17;179:224;-1:-1:-1;;;;;179:224:0:o;26652:186::-;26735:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;26790:40;;26735:39;;:31;26790:40;;;26652:186;;:::o;1251:248::-;1309:7;1333:6;1329:47;;-1:-1:-1;1363:1:0;1356:8;;1329:47;1388:9;1400:5;1404:1;1400;:5;:::i;:::-;1388:17;-1:-1:-1;1433:1:0;1424:5;1428:1;1388:17;1424:5;:::i;:::-;:10;1416:56;;;;;;;13255:2:1;1416:56:0;;;13237:21:1;13294:2;13274:18;;;13267:30;13333:34;13313:18;;;13306:62;13404:3;13384:18;;;13377:31;13425:19;;1416:56:0;13053:397:1;411:132:0;469:7;496:39;500:1;503;496:39;;;;;;;;;;;;;;;;;:3;:39::i;9549:578::-;9689:20;;;9681:70;;;;;;;12315:2:1;9681:70:0;;;12297:21:1;12354:2;12334:18;;;12327:30;12393:34;12373:18;;;12366:62;12464:7;12444:18;;;12437:35;12489:19;;9681:70:0;12113:401:1;9681:70:0;9770:23;;;9762:71;;;;;;;12721:2:1;9762:71:0;;;12703:21:1;12760:2;12740:18;;;12733:30;12799:34;12779:18;;;12772:62;12870:5;12850:18;;;12843:33;12893:19;;9762:71:0;12519:399:1;9762:71:0;9918:100;9946:6;9918:100;;;;;;;;;;;;;;;;;:9;;;:1;:9;;;;;;;;;;;;:100;:13;:100::i;:::-;9906:9;;;;:1;:9;;;;;;;;;;;:112;;;;10044:12;;;;;;;:24;;10061:6;10044:16;:24::i;:::-;10029:12;;;;:1;:12;;;;;;;;;;;;:39;;;;10084:35;2002:25:1;;;10029:12:0;;10084:35;;;;;;1975:18:1;10084:35:0;1856:177:1;32272:1707:0;32355:4;32311:23;7694:10;;;;;;;;;;;32311:50;;32372:25;32468:12;;32434:18;;32400;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;32372:108;-1:-1:-1;32491:12:0;32520:20;;;:46;;-1:-1:-1;32544:22:0;;32520:46;32516:85;;;32583:7;;;32272:1707::o;32516:85::-;32635:18;;:23;;32656:2;32635:23;:::i;:::-;32617:15;:41;32613:115;;;32693:18;;:23;;32714:2;32693:23;:::i;:::-;32675:41;;32613:115;32740:23;32853:1;32820:17;32785:18;;32767:15;:36;;;;:::i;:::-;32766:71;;;;:::i;:::-;:88;;;;:::i;:::-;32740:114;-1:-1:-1;32865:26:0;32894:36;:15;32740:114;32894:19;:36::i;:::-;32865:65;-1:-1:-1;32971:21:0;33005:36;32865:65;33005:16;:36::i;:::-;33054:18;33075:44;:21;33101:17;33075:25;:44::i;:::-;33054:65;;33132:23;33158:81;33211:17;33158:34;33173:18;;33158:10;:14;;:34;;;;:::i;:81::-;33132:107;;33250:17;33270:51;33303:17;33270:28;33285:12;;33270:10;:14;;:28;;;;:::i;:51::-;33250:71;-1:-1:-1;33334:23:0;33250:71;33360:28;33373:15;33360:10;:28;:::i;:::-;:40;;;;:::i;:::-;33434:1;33413:18;:22;;;33446:18;:22;;;33479:12;:16;;;33530:9;;33522:45;;33334:66;;-1:-1:-1;33530:9:0;;;33553;;33522:45;33434:1;33522:45;33553:9;33530;33522:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33508:59:0;;-1:-1:-1;;33584:19:0;;;;;:42;;;33625:1;33607:15;:19;33584:42;33580:278;;;33643:46;33656:15;33673;33643:12;:46::i;:::-;33813:18;;33709:137;;;13867:25:1;;;13923:2;13908:18;;13901:34;;;13951:18;;;13944:34;;;;33709:137:0;;;;;;13855:2:1;33709:137:0;;;33580:278;33892:15;;33884:87;;33892:15;;;;;33935:21;;33884:87;;;;33935:21;33892:15;33884:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;32272:1707:0:o;34550:558::-;34641:15;34624:14;:32;34700:29;;;;;1801:42:1;34715:13:0;1789:55:1;34700:29:0;;;1771:74:1;34607:4:0;;;;34700;;:14;;1744:18:1;;34700:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34669:60;;34742:20;34765:77;34826:5;34765:42;34790:16;;34765:20;:24;;:42;;;;:::i;:77::-;34742:100;-1:-1:-1;34859:16:0;;34855:110;;34892:61;34908:13;34931:6;34940:12;34892:15;:61::i;:::-;34977:19;35014:13;34977:51;;35039:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35066:12:0;;;;-1:-1:-1;35066:12:0;;-1:-1:-1;35066:12:0;35096:4;35089:11;;;;;34550:558;:::o;551:223::-;671:7;706:12;699:5;691:28;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;730:9:0;742:5;746:1;742;:5;:::i;969:136::-;1027:7;1054:43;1058:1;1061;1054:43;;;;;;;;;;;;;;;;;:3;:43::i;31419:475::-;31509:16;;;31523:1;31509:16;;;;;;;;31485:21;;31509:16;;;;;;;;;;-1:-1:-1;31509:16:0;31485:40;;31554:4;31536;31541:1;31536:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;31580:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31570:4;31575:1;31570:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;31615:62;31632:4;31647:15;31665:11;31615:8;:62::i;:::-;31690:196;;;;;:66;:15;:66;;;;:196;;31771:11;;31797:1;;31813:4;;31840;;31860:15;;31690:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31474:420;31419:475;:::o;31902:362::-;31983:62;32000:4;32015:15;32033:11;31983:8;:62::i;:::-;32058:15;:31;;;32097:9;32130:4;32150:11;32176:1;32192;32208:7;11536:6;;;;;11471:79;32208:7;32058:198;;;;;;;;;;15967:42:1;16036:15;;;32058:198:0;;;16018:34:1;16068:18;;;16061:34;;;;16111:18;;;16104:34;;;;16154:18;;;16147:34;16218:15;;;16197:19;;;16190:44;32230:15:0;16250:19:1;;;16243:35;15929:19;;32058:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31902:362;;:::o;14:656:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;761:42;754:5;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1346:247::-;1405:6;1458:2;1446:9;1437:7;1433:23;1429:32;1426:52;;;1474:1;1471;1464:12;1426:52;1513:9;1500:23;1532:31;1557:5;1532:31;:::i;2038:180::-;2097:6;2150:2;2138:9;2129:7;2125:23;2121:32;2118:52;;;2166:1;2163;2156:12;2118:52;-1:-1:-1;2189:23:1;;2038:180;-1:-1:-1;2038:180:1:o;2223:456::-;2300:6;2308;2316;2369:2;2357:9;2348:7;2344:23;2340:32;2337:52;;;2385:1;2382;2375:12;2337:52;2424:9;2411:23;2443:31;2468:5;2443:31;:::i;:::-;2493:5;-1:-1:-1;2550:2:1;2535:18;;2522:32;2563:33;2522:32;2563:33;:::i;:::-;2223:456;;2615:7;;-1:-1:-1;;;2669:2:1;2654:18;;;;2641:32;;2223:456::o;3104:160::-;3169:20;;3225:13;;3218:21;3208:32;;3198:60;;3254:1;3251;3244:12;3269:316;3343:6;3351;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3464:9;3451:23;3441:33;;3521:2;3510:9;3506:18;3493:32;3483:42;;3544:35;3575:2;3564:9;3560:18;3544:35;:::i;:::-;3534:45;;3269:316;;;;;:::o;3590:315::-;3655:6;3663;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3771:9;3758:23;3790:31;3815:5;3790:31;:::i;:::-;3840:5;-1:-1:-1;3864:35:1;3895:2;3880:18;;3864:35;:::i;:::-;3854:45;;3590:315;;;;;:::o;3910:316::-;3987:6;3995;4003;4056:2;4044:9;4035:7;4031:23;4027:32;4024:52;;;4072:1;4069;4062:12;4024:52;-1:-1:-1;;4095:23:1;;;4165:2;4150:18;;4137:32;;-1:-1:-1;4216:2:1;4201:18;;;4188:32;;3910:316;-1:-1:-1;3910:316:1:o;4231:180::-;4287:6;4340:2;4328:9;4319:7;4315:23;4311:32;4308:52;;;4356:1;4353;4346:12;4308:52;4379:26;4395:9;4379:26;:::i;4416:315::-;4484:6;4492;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;4597:9;4584:23;4574:33;;4657:2;4646:9;4642:18;4629:32;4670:31;4695:5;4670:31;:::i;:::-;4720:5;4710:15;;;4416:315;;;;;:::o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;5129:437::-;5208:1;5204:12;;;;5251;;;5272:61;;5326:4;5318:6;5314:17;5304:27;;5272:61;5379:2;5371:6;5368:14;5348:18;5345:38;5342:218;;;5416:77;5413:1;5406:88;5517:4;5514:1;5507:15;5545:4;5542:1;5535:15;5342:218;;5129:437;;;:::o;5932:184::-;5984:77;5981:1;5974:88;6081:4;6078:1;6071:15;6105:4;6102:1;6095:15;6121:228;6161:7;6287:1;6219:66;6215:74;6212:1;6209:81;6204:1;6197:9;6190:17;6186:105;6183:131;;;6294:18;;:::i;:::-;-1:-1:-1;6334:9:1;;6121:228::o;6354:274::-;6394:1;6420;6410:189;;6455:77;6452:1;6445:88;6556:4;6553:1;6546:15;6584:4;6581:1;6574:15;6410:189;-1:-1:-1;6613:9:1;;6354:274::o;7886:128::-;7926:3;7957:1;7953:6;7950:1;7947:13;7944:39;;;7963:18;;:::i;:::-;-1:-1:-1;7999:9:1;;7886:128::o;10760:184::-;10830:6;10883:2;10871:9;10862:7;10858:23;10854:32;10851:52;;;10899:1;10896;10889:12;10851:52;-1:-1:-1;10922:16:1;;10760:184;-1:-1:-1;10760:184:1:o;12923:125::-;12963:4;12991:1;12988;12985:8;12982:34;;;12996:18;;:::i;:::-;-1:-1:-1;13033:9:1;;12923:125::o;14178:184::-;14230:77;14227:1;14220:88;14327:4;14324:1;14317:15;14351:4;14348:1;14341:15;14367:251;14437:6;14490:2;14478:9;14469:7;14465:23;14461:32;14458:52;;;14506:1;14503;14496:12;14458:52;14538:9;14532:16;14557:31;14582:5;14557:31;:::i;14623:1026::-;14885:4;14933:3;14922:9;14918:19;14964:6;14953:9;14946:25;14990:2;15028:6;15023:2;15012:9;15008:18;15001:34;15071:3;15066:2;15055:9;15051:18;15044:31;15095:6;15130;15124:13;15161:6;15153;15146:22;15199:3;15188:9;15184:19;15177:26;;15238:2;15230:6;15226:15;15212:29;;15259:1;15269:218;15283:6;15280:1;15277:13;15269:218;;;15348:13;;15363:42;15344:62;15332:75;;15462:15;;;;15427:12;;;;15305:1;15298:9;15269:218;;;-1:-1:-1;;15555:42:1;15543:55;;;;15538:2;15523:18;;15516:83;-1:-1:-1;;;15630:3:1;15615:19;15608:35;15504:3;14623:1026;-1:-1:-1;;;14623:1026:1:o;16289:306::-;16377:6;16385;16393;16446:2;16434:9;16425:7;16421:23;16417:32;16414:52;;;16462:1;16459;16452:12;16414:52;16491:9;16485:16;16475:26;;16541:2;16530:9;16526:18;16520:25;16510:35;;16585:2;16574:9;16570:18;16564:25;16554:35;;16289:306;;;;;:::o

Swarm Source

ipfs://e7f2eca66bbd41a4414e021de9a18b4b31f7272d416c01513e810808956914e5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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