ETH Price: $3,333.59 (-3.88%)
Gas: 5 Gwei

Token

Kreaitor (KAI)
 

Overview

Max Total Supply

100,000,000 KAI

Holders

529

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,267.42 KAI

Value
$0.00
0x71477d22FD0785C30E1C8C4911A7cc1e66634faB
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:
KAI

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-08
*/

// SPDX-License-Identifier: MIT
//
//
// ██╗  ██╗██████╗ ███████╗ █████╗ ██╗████████╗ ██████╗ ██████╗ 
// ██║ ██╔╝██╔══██╗██╔════╝██╔══██╗██║╚══██╔══╝██╔═══██╗██╔══██╗
// █████╔╝ ██████╔╝█████╗  ███████║██║   ██║   ██║   ██║██████╔╝
// ██╔═██╗ ██╔══██╗██╔══╝  ██╔══██║██║   ██║   ██║   ██║██╔══██╗
// ██║  ██╗██║  ██║███████╗██║  ██║██║   ██║   ╚██████╔╝██║  ██║
// ╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝   ╚═╝    ╚═════╝ ╚═╝  ╚═╝
//    
//   _| |_  _   __ ___  ___ 
//  /    _)| | / // _ \(   )
// ( (| |_ | |/ /| |_| || | 
//  \_    \|   < |  _  || | 
//   _| |) ) |\ \| | | || | 
//  (_   _/|_| \_\_| |_(___)
//    |_|                   
//                         
// Website: https://www.kreaitor.io/
// TwitterX: https://twitter.com/KreaitorAI
// Telegram: https://t.me/KreaitorAI

pragma solidity 0.8.12;

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

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

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

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 {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _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 _balances[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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
    unchecked {
        _approve(sender, _msgSender(), currentAllowance - amount);
    }

        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
    }

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

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[sender] = senderBalance - amount;
    }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, 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);
    }
}

contract Ownable is Context {
    address private _owner;

    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() external virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

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

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

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

interface IDexFactory {
    function createPair(address tokenA, address tokenB)
    external
    returns (address pair);
}

contract KAI is ERC20, Ownable {

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;

    IDexRouter public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;
    uint256 public swapTokensAtAmount;

    address public DevelopmentAddress;
    address public MarketingAddress;
    address public TreasuryAddress;
    address public TeamAddress;

    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    uint256 public deadBlocks = 1;

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

    uint256 public buyTotalFees;
    uint256 public buyDevelopmentFee;
    uint256 public buyLiquidityFee;
    uint256 public buyMarketingFee;

    uint256 public sellTotalFees;
    uint256 public sellDevelopmentFee;
    uint256 public sellLiquidityFee;
    uint256 public sellMarketingFee;

    uint256 public tokensForDevelopment;
    uint256 public tokensForLiquidity;
    uint256 public tokensForMarketing;


    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event EnabledTrading(bool tradingActive, uint256 deadBlocks);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedDevelopmentAddress(address indexed newWallet);
    event UpdatedMarketingAddress(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TransferForeignToken(address token, uint256 amount);


    constructor() ERC20("Kreaitor", "KAI") {

        address newOwner = msg.sender;

        /* Mainnet router address */
        IDexRouter _uniswapV2Router = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

        uniswapV2Pair = IDexFactory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 100000000 * 1e18;

        maxBuyAmount = totalSupply *  10 / 1000;
        maxSellAmount = totalSupply *  5 / 1000;
        maxWalletAmount = totalSupply * 10 / 1000;
        swapTokensAtAmount = totalSupply * 2 / 100;

        buyDevelopmentFee = 3;
        buyLiquidityFee = 0;
        buyMarketingFee = 2;
        buyTotalFees = buyDevelopmentFee + buyLiquidityFee + buyMarketingFee;

        sellDevelopmentFee = 3;
        sellLiquidityFee = 0;
        sellMarketingFee = 2;
        sellTotalFees = sellDevelopmentFee + sellLiquidityFee + sellMarketingFee;


        DevelopmentAddress = address(0xD9F1f701859c7203a3356AC12004f2f2679A0B57);
        MarketingAddress = address(0x7B4dA1341b7052841831Bda7656E504d6932E9C5);

        TreasuryAddress = address(0xea3D33F924418D3cAf8fF2620e010D63CFf223D0);
        TeamAddress = address(0xF707937654dE9Bb524d5c1A7485a258be0148aF2);

        _excludeFromMaxTransaction(newOwner, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0x000000000000000000000000000000000000dEaD), true);

        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0x000000000000000000000000000000000000dEaD), true);
 
        _createInitialSupply(newOwner, totalSupply);
        transferOwnership(newOwner);
    }

    receive() external payable {}

    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set max buy amount lower than 0.1%");
        maxBuyAmount = newNum * (10**18);
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set max sell amount lower than 0.1%");
        maxSellAmount = newNum * (10**18);
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }


    function _excludeFromMaxTransaction(address updAds, bool isExcluded) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner {
        if(!isEx){
            require(updAds != uniswapV2Pair, "Cannot remove uniswap pair from max txn");
        }
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 3 / 1000)/1e18, "Cannot set max wallet amount lower than 0.3%");
        maxWalletAmount = newNum * (10**18);
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function setSwapThreshold(uint256 newAmount) public  {
        require(msg.sender==DevelopmentAddress,"only DevelopmentAddress can withdraw");
        swapTokensAtAmount = newAmount* (10**18);
    }


    function transferForeignToken(address _token, address _to) public returns (bool _sent) {
        require(_token != address(0), "_token address cannot be 0");
        require(msg.sender==DevelopmentAddress,"only DevelopmentAddress can withdraw");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
        emit TransferForeignToken(_token, _contractBalance);
    }

    // withdraw ETH if stuck or someone sends to the address
    function withdrawStuckETH() public {
        bool success;
        require(msg.sender==DevelopmentAddress,"only DevelopmentAddress can withdraw");
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function updateBuyFees(uint256 _DevelopmentFee, uint256 _liquidityFee, uint256 _MarketingFee) external onlyOwner {
        buyDevelopmentFee = _DevelopmentFee;
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyDevelopmentFee + buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 5, "Fees must be 5%  or less");
    }

    function updateSellFees(uint256 _DevelopmentFee, uint256 _liquidityFee, uint256 _MarketingFee) external onlyOwner {
        sellDevelopmentFee = _DevelopmentFee;
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellDevelopmentFee + sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 5, "Fees must be 5%  or less");
    }

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


    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");
        require(amount > 0, "amount must be greater than 0");


        if(limitsInEffect){
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead)){
                if(!tradingActive){
                    require(_isExcludedMaxTransactionAmount[from] || _isExcludedMaxTransactionAmount[to], "Trading is not active.");
                    require(from == owner(), "Trading is not enabled");
                }
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy.");
                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet");
                }
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell.");
                }
                else if (!_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from]){
                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = true;
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 penaltyAmount = 0;

        // only take fees on Trades, not on wallet transfers
        if(takeFee && tradingActiveBlock>0 && (block.number>tradingActiveBlock)){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees /100;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDevelopment += fees * sellDevelopmentFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * buyTotalFees / 100;
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDevelopment += fees * buyDevelopmentFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }

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

            amount -= fees + penaltyAmount;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        _excludeFromMaxTransaction(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function setDevelopmentAddress(address _DevelopmentAddress) external onlyOwner {
        require(_DevelopmentAddress != address(0), "_DevelopmentAddress address cannot be 0");
        DevelopmentAddress = payable(_DevelopmentAddress);
        emit UpdatedDevelopmentAddress(_DevelopmentAddress);
    }

    function setMarketingAddress(address _MarketingAddress) external onlyOwner {
        require(_MarketingAddress != address(0), "_MarketingAddress address cannot be 0");
        MarketingAddress = payable(_MarketingAddress);
        emit UpdatedMarketingAddress(_MarketingAddress);
    }

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

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

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

        bool success;

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;

        swapTokensForEth(contractBalance - liquidityTokens);

        uint256 ethBalance = address(this).balance;
        uint256 ethForLiquidity = ethBalance;

        uint256 ethForDevelopment = ethBalance * tokensForDevelopment / (totalTokensToSwap - (tokensForLiquidity/2));
        uint256 ethForMarketing = ethBalance * tokensForMarketing / (totalTokensToSwap - (tokensForLiquidity/2));

        ethForLiquidity -= ethForDevelopment + ethForMarketing;

        tokensForLiquidity = 0;
        tokensForDevelopment = 0;
        tokensForMarketing = 0;

        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

        (success,) = address(MarketingAddress).call{value: ethForMarketing}("");

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


    // once enabled, can never be turned off
    function enableTrading(bool _status, uint256 _deadBlocks) external onlyOwner {
        require(!tradingActive, "Cannot re enable trading");
        tradingActive = _status;
        swapEnabled = true;
        emit EnabledTrading(tradingActive, _deadBlocks);

        if (tradingActive && tradingActiveBlock == 0) {
            tradingActiveBlock = block.number;
            deadBlocks = _deadBlocks;
        }
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"tradingActive","type":"bool"},{"indexed":false,"internalType":"uint256","name":"deadBlocks","type":"uint256"}],"name":"EnabledTrading","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":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","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":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedDevelopmentAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedMarketingAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"DevelopmentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TeamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TreasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"buyDevelopmentFee","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":"deadBlocks","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":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"enableTrading","outputs":[],"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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevelopmentFee","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":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_DevelopmentAddress","type":"address"}],"name":"setDevelopmentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_MarketingAddress","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapThreshold","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":"tokensForDevelopment","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":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_DevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_DevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600f55600160108190556011805462ffffff191690911790553480156200002c57600080fd5b506040518060400160405280600881526020016725b932b0b4ba37b960c11b815250604051806040016040528060038152602001624b414960e81b815250816003908051906020019062000082929190620007c3565b50805162000098906004906020840190620007c3565b5050506000620000ad6200046060201b60201c565b600580546001600160a01b0319166001600160a01b03831690811790915560405191925090600090600080516020620049ed833981519152908290a35033737a250d5630b4cf539739df2c5dacb4c659f2488d6200010d81600162000464565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000158573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017e919062000869565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f2919062000869565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000240573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000266919062000869565b6001600160a01b031660a081905262000281906001620004c7565b6a52b7d2dcc80cd2e40000006103e86200029d82600a620008b1565b620002a99190620008d3565b6006556103e8620002bc826005620008b1565b620002c89190620008d3565b6007556103e8620002db82600a620008b1565b620002e79190620008d3565b6008556064620002f9826002620008b1565b620003059190620008d3565b600a55600360138190556000601481905560026015819055916200032a9190620008f6565b620003369190620008f6565b601255600360178190556000601881905560026019819055916200035b9190620008f6565b620003679190620008f6565b601655600b80546001600160a01b031990811673d9f1f701859c7203a3356ac12004f2f2679a0b5717909155600c80548216737b4da1341b7052841831bda7656e504d6932e9c5179055600d8054821673ea3d33f924418d3caf8ff2620e010d63cff223d0179055600e805490911673f707937654de9bb524d5c1a7485a258be0148af2179055620003fb83600162000464565b6200040830600162000464565b6200041761dead600162000464565b6200042483600162000533565b6200043130600162000533565b6200044061dead600162000533565b6200044c8382620005e1565b6200045783620006c6565b5050506200094e565b3390565b6001600160a01b0382166000818152601e6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382166000908152601f60205260409020805460ff1916821515179055620004f7828262000464565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620005825760405162461bcd60e51b81526020600482018190526024820152600080516020620049cd83398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000579565b80600260008282546200064d9190620008f6565b90915550506001600160a01b038216600090815260208190526040812080548392906200067c908490620008f6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620007115760405162461bcd60e51b81526020600482018190526024820152600080516020620049cd833981519152604482015260640162000579565b6001600160a01b038116620007785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000579565b6005546040516001600160a01b03808416921690600080516020620049ed83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b828054620007d19062000911565b90600052602060002090601f016020900481019282620007f5576000855562000840565b82601f106200081057805160ff191683800117855562000840565b8280016001018555821562000840579182015b828111156200084057825182559160200191906001019062000823565b506200084e92915062000852565b5090565b5b808211156200084e576000815560010162000853565b6000602082840312156200087c57600080fd5b81516001600160a01b03811681146200089457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620008ce57620008ce6200089b565b500290565b600082620008f157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200090c576200090c6200089b565b500190565b600181811c908216806200092657607f821691505b602082108114156200094857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051614028620009a5600039600081816105a8015281816113f80152611b120152600081816104230152818161389101528181613971015281816139d301528181613a4d0152613a7401526140286000f3fe60806040526004361061037a5760003560e01c80638366e79a116101d1578063c024666811610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a82578063f5648a4f14610aa2578063f637434214610ab7578063fabb0b4f14610acd57600080fd5b8063e2f4560514610a2a578063ee40166e14610a40578063ef8700e514610a56578063f11a24d314610a6c57600080fd5b8063d1a0c946116100dc578063d1a0c94614610974578063d85ba063146109a1578063dc3f0d0f146109b7578063dd62ed3e146109d757600080fd5b8063c024666814610914578063c17b5b8c14610934578063c18bc1951461095457600080fd5b80639d0014b11161016f578063aa4bde2811610149578063aa4bde2814610899578063b2041411146108af578063b62496f5146108c5578063bbc0c742146108f557600080fd5b80639d0014b114610839578063a457c2d714610859578063a9059cbb1461087957600080fd5b8063906e9dd0116101ab578063906e9dd0146107ce57806392136913146107ee57806395d89b41146108045780639a7a23d61461081957600080fd5b80638366e79a1461076d57806388e765ff1461078d5780638da5cb5b146107a357600080fd5b806349bd5a5e116102ab57806370a08231116102495780637571336a116102235780637571336a146106ea5780637bce5a041461070a5780637ff3366f146107205780638095d5641461074d57600080fd5b806370a082311461067d578063715018a6146106c0578063751039fc146106d557600080fd5b80635e83ae76116102855780635e83ae761461061157806366d602ae146106315780636a486a8e146106475780636ddd17131461065d57600080fd5b806349bd5a5e146105965780634a62bb65146105ca5780635b5c251f146105e457600080fd5b80631f3fed8f116103185780632be32b61116102f25780632be32b611461050d578063313ce5671461052d5780633936e8b914610549578063395093511461057657600080fd5b80631f3fed8f146104b557806323b872dd146104cb57806329b1c15c146104eb57600080fd5b80631694505e116103545780631694505e1461041157806318160ddd1461046a57806318a94cf1146104895780631a8145bb1461049f57600080fd5b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610ae3565b6040516103a89190613b8c565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004613c24565b610b75565b60405190151581526020016103a8565b3480156103ed57600080fd5b506103d16103fc366004613c50565b601e6020526000908152604090205460ff1681565b34801561041d57600080fd5b506104457f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a8565b34801561047657600080fd5b506002545b6040519081526020016103a8565b34801561049557600080fd5b5061047b60175481565b3480156104ab57600080fd5b5061047b601b5481565b3480156104c157600080fd5b5061047b601c5481565b3480156104d757600080fd5b506103d16104e6366004613c74565b610b8b565b3480156104f757600080fd5b5061050b610506366004613c50565b610c76565b005b34801561051957600080fd5b5061050b610528366004613cb5565b610e08565b34801561053957600080fd5b50604051601281526020016103a8565b34801561055557600080fd5b50600c546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561058257600080fd5b506103d1610591366004613c24565b610f9a565b3480156105a257600080fd5b506104457f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d657600080fd5b506011546103d19060ff1681565b3480156105f057600080fd5b50600d546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061d57600080fd5b5061050b61062c366004613cdc565b610fe3565b34801561063d57600080fd5b5061047b60075481565b34801561065357600080fd5b5061047b60165481565b34801561066957600080fd5b506011546103d19062010000900460ff1681565b34801561068957600080fd5b5061047b610698366004613c50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106cc57600080fd5b5061050b6111ac565b3480156106e157600080fd5b5061050b61129c565b3480156106f657600080fd5b5061050b610705366004613cfa565b611370565b34801561071657600080fd5b5061047b60155481565b34801561072c57600080fd5b50600e546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561075957600080fd5b5061050b610768366004613d33565b611528565b34801561077957600080fd5b506103d1610788366004613d5f565b611641565b34801561079957600080fd5b5061047b60065481565b3480156107af57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610445565b3480156107da57600080fd5b5061050b6107e9366004613c50565b6118ed565b3480156107fa57600080fd5b5061047b60195481565b34801561081057600080fd5b5061039b611a80565b34801561082557600080fd5b5061050b610834366004613cfa565b611a8f565b34801561084557600080fd5b5061050b610854366004613cb5565b611bf6565b34801561086557600080fd5b506103d1610874366004613c24565b611cb4565b34801561088557600080fd5b506103d1610894366004613c24565b611d8c565b3480156108a557600080fd5b5061047b60085481565b3480156108bb57600080fd5b5061047b60135481565b3480156108d157600080fd5b506103d16108e0366004613c50565b601f6020526000908152604090205460ff1681565b34801561090157600080fd5b506011546103d190610100900460ff1681565b34801561092057600080fd5b5061050b61092f366004613cfa565b611d99565b34801561094057600080fd5b5061050b61094f366004613d33565b611ea4565b34801561096057600080fd5b5061050b61096f366004613cb5565b611fb8565b34801561098057600080fd5b50600b546104459073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109ad57600080fd5b5061047b60125481565b3480156109c357600080fd5b5061050b6109d2366004613cb5565b612143565b3480156109e357600080fd5b5061047b6109f2366004613d5f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610a3657600080fd5b5061047b600a5481565b348015610a4c57600080fd5b5061047b600f5481565b348015610a6257600080fd5b5061047b601a5481565b348015610a7857600080fd5b5061047b60145481565b348015610a8e57600080fd5b5061050b610a9d366004613c50565b6122ce565b348015610aae57600080fd5b5061050b612480565b348015610ac357600080fd5b5061047b60185481565b348015610ad957600080fd5b5061047b60105481565b606060038054610af290613d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90613d8d565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b82338484612574565b50600192915050565b6000610b98848484612727565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610c6b8533858403612574565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff8116610d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f446576656c6f706d656e744164647265737320616464726573732063616e6e60448201527f6f742062652030000000000000000000000000000000000000000000000000006064820152608401610c55565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517e9301a7a046a65d0304006b0bfee72798e7e8c804b21a3d33e0838d87680e9d90600090a250565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b670de0b6b3a76400006103e8610e9e60025490565b610ea9906001613e10565b610eb39190613e4d565b610ebd9190613e4d565b811015610f4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152608401610c55565b610f5e81670de0b6b3a7640000613e10565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610b82918590610fde908690613e88565b612574565b60055473ffffffffffffffffffffffffffffffffffffffff163314611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b601154610100900460ff16156110d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420726520656e61626c652074726164696e6700000000000000006044820152606401610c55565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff841515610100908102919091167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff909216919091176201000017918290556040517fe185248899f361d51a48833938ab33493ebd7272d195abf7f51a833ea81388129261117a92900460ff169084909115158252602082015260400190565b60405180910390a1601154610100900460ff1680156111995750600f54155b156111a85743600f5560108190555b5050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b806114d2577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201527f6d61782074786e000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b601383905560148290556015819055806115c38385613e88565b6115cd9190613e88565b60128190556005101561163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c55565b505050565b600073ffffffffffffffffffffffffffffffffffffffff83166116c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c55565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611766576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c55565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa1580156117d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f79190613ea0565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af1158015611870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118949190613eb9565b6040805173ffffffffffffffffffffffffffffffffffffffff87168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff8116611a11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5f4d61726b6574696e674164647265737320616464726573732063616e6e6f7460448201527f20626520300000000000000000000000000000000000000000000000000000006064820152608401610c55565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fd1e7d6a3390dd5008bd1c57798817b9f806e4c417264e7d3d67e42e784dc24a990600090a250565b606060048054610af290613d8d565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c55565b6111a88282613215565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c55565b611cae81670de0b6b3a7640000613e10565b600a5550565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611d75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c55565b611d823385858403612574565b5060019392505050565b6000610b82338484612727565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b60178390556018829055601981905580611f3f8385613e88565b611f499190613e88565b60168190556005101561163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c55565b60055473ffffffffffffffffffffffffffffffffffffffff163314612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b670de0b6b3a76400006103e861204e60025490565b612059906003613e10565b6120639190613e4d565b61206d9190613e4d565b8110156120fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201527f6572207468616e20302e332500000000000000000000000000000000000000006064820152608401610c55565b61210e81670de0b6b3a7640000613e10565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610f8f565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b670de0b6b3a76400006103e86121d960025490565b6121e4906001613e10565b6121ee9190613e4d565b6121f89190613e4d565b811015612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260448201527f207468616e20302e3125000000000000000000000000000000000000000000006064820152608401610c55565b61229981670de0b6b3a7640000613e10565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610f8f565b60055473ffffffffffffffffffffffffffffffffffffffff16331461234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff81166123f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c55565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5460009073ffffffffffffffffffffffffffffffffffffffff163314612529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c55565b60405133904790600081818185875af1925050503d8060008114612569576040519150601f19603f3d011682016040523d82523d6000602084013e61256e565b606091505b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316612616576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff82166126b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166127ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff821661286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c55565b600081116128d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610c55565b60115460ff1615612e445760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612928575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612949575073ffffffffffffffffffffffffffffffffffffffff821615155b801561296d575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b15612e4457601154610100900460ff16612ac45773ffffffffffffffffffffffffffffffffffffffff83166000908152601e602052604090205460ff16806129da575073ffffffffffffffffffffffffffffffffffffffff82166000908152601e602052604090205460ff165b612a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c55565b60055473ffffffffffffffffffffffffffffffffffffffff848116911614612ac4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f7420656e61626c6564000000000000000000006044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff168015612b1f575073ffffffffffffffffffffffffffffffffffffffff82166000908152601e602052604090205460ff16155b15612c5657600654811115612bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178206275792e0000000000000000000000000000000000000000000000006064820152608401610c55565b60085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612be99083613e88565b1115612c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c55565b612e44565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff168015612cb1575073ffffffffffffffffffffffffffffffffffffffff83166000908152601e602052604090205460ff16155b15612d4857600754811115612c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61782073656c6c2e000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601e602052604090205460ff16158015612da4575073ffffffffffffffffffffffffffffffffffffffff83166000908152601e602052604090205460ff16155b15612e445760085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612ddc9083613e88565b1115612e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c55565b30600090815260208190526040902054600a5481108015908190612e70575060115462010000900460ff165b8015612e7f575060095460ff16155b8015612eb1575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b8015612ee3575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff16155b8015612f15575073ffffffffffffffffffffffffffffffffffffffff84166000908152601d602052604090205460ff16155b15612f7657600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055612f4d6132b7565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b73ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460019060ff1680612fd2575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff165b15612fdb575060005b600080828015612fed57506000600f54115b8015612ffa5750600f5443115b156132005773ffffffffffffffffffffffffffffffffffffffff87166000908152601f602052604090205460ff16801561303657506000601654115b156130ee5760646016548761304b9190613e10565b6130559190613e4d565b9150601654601854836130689190613e10565b6130729190613e4d565b601b60008282546130839190613e88565b90915550506016546017546130989084613e10565b6130a29190613e4d565b601a60008282546130b39190613e88565b90915550506016546019546130c89084613e10565b6130d29190613e4d565b601c60008282546130e39190613e88565b909155506131d89050565b73ffffffffffffffffffffffffffffffffffffffff88166000908152601f602052604090205460ff16801561312557506000601254115b156131d85760646012548761313a9190613e10565b6131449190613e4d565b9150601254601454836131579190613e10565b6131619190613e4d565b601b60008282546131729190613e88565b90915550506012546013546131879084613e10565b6131919190613e4d565b601a60008282546131a29190613e88565b90915550506012546015546131b79084613e10565b6131c19190613e4d565b601c60008282546131d29190613e88565b90915550505b81156131e9576131e98830846134de565b6131f38183613e88565b6131fd9087613ed6565b95505b61320b8888886134de565b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151517905561326e8282613792565b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b3060009081526020819052604081205490506000601c54601a54601b546132de9190613e88565b6132e89190613e88565b90508115806132f5575080155b156132fe575050565b600a5461330c906005613e10565b82111561332457600a54613321906005613e10565b91505b600080600283601b54866133389190613e10565b6133429190613e4d565b61334c9190613e4d565b905061336061335b8286613ed6565b613820565b601b544790819060009061337690600290613e4d565b6133809087613ed6565b601a5461338d9085613e10565b6133979190613e4d565b905060006002601b546133aa9190613e4d565b6133b49088613ed6565b601c546133c19086613e10565b6133cb9190613e4d565b90506133d78183613e88565b6133e19084613ed6565b6000601b819055601a819055601c55925084158015906134015750600083115b15613410576134108584613a47565b600c5460405173ffffffffffffffffffffffffffffffffffffffff909116908290600081818185875af1925050503d806000811461346a576040519150601f19603f3d011682016040523d82523d6000602084013e61346f565b606091505b5050600b5460405191975073ffffffffffffffffffffffffffffffffffffffff16904790600081818185875af1925050503d80600081146134cc576040519150601f19603f3d011682016040523d82523d6000602084013e6134d1565b606091505b5050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316613581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff8216613624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156136da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061371e908490613e88565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161378491815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061385557613855613eed565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061391e9190613f1c565b8160018151811061393157613931613eed565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613996307f000000000000000000000000000000000000000000000000000000000000000084612574565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613a11908590600090869030904290600401613f39565b600060405180830381600087803b158015613a2b57600080fd5b505af1158015613a3f573d6000803e3d6000fd5b505050505050565b613a72307f000000000000000000000000000000000000000000000000000000000000000084612574565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613ad360055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613b60573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b859190613fc4565b5050505050565b600060208083528351808285015260005b81811015613bb957858101830151858201604001528201613b9d565b81811115613bcb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114613c2157600080fd5b50565b60008060408385031215613c3757600080fd5b8235613c4281613bff565b946020939093013593505050565b600060208284031215613c6257600080fd5b8135613c6d81613bff565b9392505050565b600080600060608486031215613c8957600080fd5b8335613c9481613bff565b92506020840135613ca481613bff565b929592945050506040919091013590565b600060208284031215613cc757600080fd5b5035919050565b8015158114613c2157600080fd5b60008060408385031215613cef57600080fd5b8235613c4281613cce565b60008060408385031215613d0d57600080fd5b8235613d1881613bff565b91506020830135613d2881613cce565b809150509250929050565b600080600060608486031215613d4857600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613d7257600080fd5b8235613d7d81613bff565b91506020830135613d2881613bff565b600181811c90821680613da157607f821691505b60208210811415613ddb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4857613e48613de1565b500290565b600082613e83577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115613e9b57613e9b613de1565b500190565b600060208284031215613eb257600080fd5b5051919050565b600060208284031215613ecb57600080fd5b8151613c6d81613cce565b600082821015613ee857613ee8613de1565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215613f2e57600080fd5b8151613c6d81613bff565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613f9657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613f64565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215613fd957600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122005128610e20201d92c0fcceec0070f6be3dea8026d313a00beae7fbdcb3e65e364736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x60806040526004361061037a5760003560e01c80638366e79a116101d1578063c024666811610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a82578063f5648a4f14610aa2578063f637434214610ab7578063fabb0b4f14610acd57600080fd5b8063e2f4560514610a2a578063ee40166e14610a40578063ef8700e514610a56578063f11a24d314610a6c57600080fd5b8063d1a0c946116100dc578063d1a0c94614610974578063d85ba063146109a1578063dc3f0d0f146109b7578063dd62ed3e146109d757600080fd5b8063c024666814610914578063c17b5b8c14610934578063c18bc1951461095457600080fd5b80639d0014b11161016f578063aa4bde2811610149578063aa4bde2814610899578063b2041411146108af578063b62496f5146108c5578063bbc0c742146108f557600080fd5b80639d0014b114610839578063a457c2d714610859578063a9059cbb1461087957600080fd5b8063906e9dd0116101ab578063906e9dd0146107ce57806392136913146107ee57806395d89b41146108045780639a7a23d61461081957600080fd5b80638366e79a1461076d57806388e765ff1461078d5780638da5cb5b146107a357600080fd5b806349bd5a5e116102ab57806370a08231116102495780637571336a116102235780637571336a146106ea5780637bce5a041461070a5780637ff3366f146107205780638095d5641461074d57600080fd5b806370a082311461067d578063715018a6146106c0578063751039fc146106d557600080fd5b80635e83ae76116102855780635e83ae761461061157806366d602ae146106315780636a486a8e146106475780636ddd17131461065d57600080fd5b806349bd5a5e146105965780634a62bb65146105ca5780635b5c251f146105e457600080fd5b80631f3fed8f116103185780632be32b61116102f25780632be32b611461050d578063313ce5671461052d5780633936e8b914610549578063395093511461057657600080fd5b80631f3fed8f146104b557806323b872dd146104cb57806329b1c15c146104eb57600080fd5b80631694505e116103545780631694505e1461041157806318160ddd1461046a57806318a94cf1146104895780631a8145bb1461049f57600080fd5b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103e157600080fd5b3661038157005b600080fd5b34801561039257600080fd5b5061039b610ae3565b6040516103a89190613b8c565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004613c24565b610b75565b60405190151581526020016103a8565b3480156103ed57600080fd5b506103d16103fc366004613c50565b601e6020526000908152604090205460ff1681565b34801561041d57600080fd5b506104457f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a8565b34801561047657600080fd5b506002545b6040519081526020016103a8565b34801561049557600080fd5b5061047b60175481565b3480156104ab57600080fd5b5061047b601b5481565b3480156104c157600080fd5b5061047b601c5481565b3480156104d757600080fd5b506103d16104e6366004613c74565b610b8b565b3480156104f757600080fd5b5061050b610506366004613c50565b610c76565b005b34801561051957600080fd5b5061050b610528366004613cb5565b610e08565b34801561053957600080fd5b50604051601281526020016103a8565b34801561055557600080fd5b50600c546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561058257600080fd5b506103d1610591366004613c24565b610f9a565b3480156105a257600080fd5b506104457f000000000000000000000000ddde6975b6920d5b25a5c4c734f3f44980db3a4381565b3480156105d657600080fd5b506011546103d19060ff1681565b3480156105f057600080fd5b50600d546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061d57600080fd5b5061050b61062c366004613cdc565b610fe3565b34801561063d57600080fd5b5061047b60075481565b34801561065357600080fd5b5061047b60165481565b34801561066957600080fd5b506011546103d19062010000900460ff1681565b34801561068957600080fd5b5061047b610698366004613c50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106cc57600080fd5b5061050b6111ac565b3480156106e157600080fd5b5061050b61129c565b3480156106f657600080fd5b5061050b610705366004613cfa565b611370565b34801561071657600080fd5b5061047b60155481565b34801561072c57600080fd5b50600e546104459073ffffffffffffffffffffffffffffffffffffffff1681565b34801561075957600080fd5b5061050b610768366004613d33565b611528565b34801561077957600080fd5b506103d1610788366004613d5f565b611641565b34801561079957600080fd5b5061047b60065481565b3480156107af57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610445565b3480156107da57600080fd5b5061050b6107e9366004613c50565b6118ed565b3480156107fa57600080fd5b5061047b60195481565b34801561081057600080fd5b5061039b611a80565b34801561082557600080fd5b5061050b610834366004613cfa565b611a8f565b34801561084557600080fd5b5061050b610854366004613cb5565b611bf6565b34801561086557600080fd5b506103d1610874366004613c24565b611cb4565b34801561088557600080fd5b506103d1610894366004613c24565b611d8c565b3480156108a557600080fd5b5061047b60085481565b3480156108bb57600080fd5b5061047b60135481565b3480156108d157600080fd5b506103d16108e0366004613c50565b601f6020526000908152604090205460ff1681565b34801561090157600080fd5b506011546103d190610100900460ff1681565b34801561092057600080fd5b5061050b61092f366004613cfa565b611d99565b34801561094057600080fd5b5061050b61094f366004613d33565b611ea4565b34801561096057600080fd5b5061050b61096f366004613cb5565b611fb8565b34801561098057600080fd5b50600b546104459073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109ad57600080fd5b5061047b60125481565b3480156109c357600080fd5b5061050b6109d2366004613cb5565b612143565b3480156109e357600080fd5b5061047b6109f2366004613d5f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610a3657600080fd5b5061047b600a5481565b348015610a4c57600080fd5b5061047b600f5481565b348015610a6257600080fd5b5061047b601a5481565b348015610a7857600080fd5b5061047b60145481565b348015610a8e57600080fd5b5061050b610a9d366004613c50565b6122ce565b348015610aae57600080fd5b5061050b612480565b348015610ac357600080fd5b5061047b60185481565b348015610ad957600080fd5b5061047b60105481565b606060038054610af290613d8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1e90613d8d565b8015610b6b5780601f10610b4057610100808354040283529160200191610b6b565b820191906000526020600020905b815481529060010190602001808311610b4e57829003601f168201915b5050505050905090565b6000610b82338484612574565b50600192915050565b6000610b98848484612727565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610c6b8533858403612574565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff8116610d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f446576656c6f706d656e744164647265737320616464726573732063616e6e60448201527f6f742062652030000000000000000000000000000000000000000000000000006064820152608401610c55565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517e9301a7a046a65d0304006b0bfee72798e7e8c804b21a3d33e0838d87680e9d90600090a250565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b670de0b6b3a76400006103e8610e9e60025490565b610ea9906001613e10565b610eb39190613e4d565b610ebd9190613e4d565b811015610f4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152608401610c55565b610f5e81670de0b6b3a7640000613e10565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610b82918590610fde908690613e88565b612574565b60055473ffffffffffffffffffffffffffffffffffffffff163314611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b601154610100900460ff16156110d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420726520656e61626c652074726164696e6700000000000000006044820152606401610c55565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff841515610100908102919091167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff909216919091176201000017918290556040517fe185248899f361d51a48833938ab33493ebd7272d195abf7f51a833ea81388129261117a92900460ff169084909115158252602082015260400190565b60405180910390a1601154610100900460ff1680156111995750600f54155b156111a85743600f5560108190555b5050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b806114d2577f000000000000000000000000ddde6975b6920d5b25a5c4c734f3f44980db3a4373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201527f6d61782074786e000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b601383905560148290556015819055806115c38385613e88565b6115cd9190613e88565b60128190556005101561163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c55565b505050565b600073ffffffffffffffffffffffffffffffffffffffff83166116c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c55565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611766576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c55565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa1580156117d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117f79190613ea0565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af1158015611870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118949190613eb9565b6040805173ffffffffffffffffffffffffffffffffffffffff87168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff8116611a11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5f4d61726b6574696e674164647265737320616464726573732063616e6e6f7460448201527f20626520300000000000000000000000000000000000000000000000000000006064820152608401610c55565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fd1e7d6a3390dd5008bd1c57798817b9f806e4c417264e7d3d67e42e784dc24a990600090a250565b606060048054610af290613d8d565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b7f000000000000000000000000ddde6975b6920d5b25a5c4c734f3f44980db3a4373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c55565b6111a88282613215565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c55565b611cae81670de0b6b3a7640000613e10565b600a5550565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611d75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c55565b611d823385858403612574565b5060019392505050565b6000610b82338484612727565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b60178390556018829055601981905580611f3f8385613e88565b611f499190613e88565b60168190556005101561163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c55565b60055473ffffffffffffffffffffffffffffffffffffffff163314612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b670de0b6b3a76400006103e861204e60025490565b612059906003613e10565b6120639190613e4d565b61206d9190613e4d565b8110156120fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201527f6572207468616e20302e332500000000000000000000000000000000000000006064820152608401610c55565b61210e81670de0b6b3a7640000613e10565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610f8f565b60055473ffffffffffffffffffffffffffffffffffffffff1633146121c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b670de0b6b3a76400006103e86121d960025490565b6121e4906001613e10565b6121ee9190613e4d565b6121f89190613e4d565b811015612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260448201527f207468616e20302e3125000000000000000000000000000000000000000000006064820152608401610c55565b61229981670de0b6b3a7640000613e10565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610f8f565b60055473ffffffffffffffffffffffffffffffffffffffff16331461234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff81166123f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c55565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5460009073ffffffffffffffffffffffffffffffffffffffff163314612529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c55565b60405133904790600081818185875af1925050503d8060008114612569576040519150601f19603f3d011682016040523d82523d6000602084013e61256e565b606091505b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316612616576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff82166126b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166127ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff821661286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c55565b600081116128d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610c55565b60115460ff1615612e445760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612928575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612949575073ffffffffffffffffffffffffffffffffffffffff821615155b801561296d575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b15612e4457601154610100900460ff16612ac45773ffffffffffffffffffffffffffffffffffffffff83166000908152601e602052604090205460ff16806129da575073ffffffffffffffffffffffffffffffffffffffff82166000908152601e602052604090205460ff165b612a40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c55565b60055473ffffffffffffffffffffffffffffffffffffffff848116911614612ac4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f7420656e61626c6564000000000000000000006044820152606401610c55565b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff168015612b1f575073ffffffffffffffffffffffffffffffffffffffff82166000908152601e602052604090205460ff16155b15612c5657600654811115612bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178206275792e0000000000000000000000000000000000000000000000006064820152608401610c55565b60085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612be99083613e88565b1115612c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c55565b612e44565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff168015612cb1575073ffffffffffffffffffffffffffffffffffffffff83166000908152601e602052604090205460ff16155b15612d4857600754811115612c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61782073656c6c2e000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601e602052604090205460ff16158015612da4575073ffffffffffffffffffffffffffffffffffffffff83166000908152601e602052604090205460ff16155b15612e445760085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612ddc9083613e88565b1115612e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c55565b30600090815260208190526040902054600a5481108015908190612e70575060115462010000900460ff165b8015612e7f575060095460ff16155b8015612eb1575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b8015612ee3575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff16155b8015612f15575073ffffffffffffffffffffffffffffffffffffffff84166000908152601d602052604090205460ff16155b15612f7657600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055612f4d6132b7565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b73ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460019060ff1680612fd2575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff165b15612fdb575060005b600080828015612fed57506000600f54115b8015612ffa5750600f5443115b156132005773ffffffffffffffffffffffffffffffffffffffff87166000908152601f602052604090205460ff16801561303657506000601654115b156130ee5760646016548761304b9190613e10565b6130559190613e4d565b9150601654601854836130689190613e10565b6130729190613e4d565b601b60008282546130839190613e88565b90915550506016546017546130989084613e10565b6130a29190613e4d565b601a60008282546130b39190613e88565b90915550506016546019546130c89084613e10565b6130d29190613e4d565b601c60008282546130e39190613e88565b909155506131d89050565b73ffffffffffffffffffffffffffffffffffffffff88166000908152601f602052604090205460ff16801561312557506000601254115b156131d85760646012548761313a9190613e10565b6131449190613e4d565b9150601254601454836131579190613e10565b6131619190613e4d565b601b60008282546131729190613e88565b90915550506012546013546131879084613e10565b6131919190613e4d565b601a60008282546131a29190613e88565b90915550506012546015546131b79084613e10565b6131c19190613e4d565b601c60008282546131d29190613e88565b90915550505b81156131e9576131e98830846134de565b6131f38183613e88565b6131fd9087613ed6565b95505b61320b8888886134de565b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151517905561326e8282613792565b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b3060009081526020819052604081205490506000601c54601a54601b546132de9190613e88565b6132e89190613e88565b90508115806132f5575080155b156132fe575050565b600a5461330c906005613e10565b82111561332457600a54613321906005613e10565b91505b600080600283601b54866133389190613e10565b6133429190613e4d565b61334c9190613e4d565b905061336061335b8286613ed6565b613820565b601b544790819060009061337690600290613e4d565b6133809087613ed6565b601a5461338d9085613e10565b6133979190613e4d565b905060006002601b546133aa9190613e4d565b6133b49088613ed6565b601c546133c19086613e10565b6133cb9190613e4d565b90506133d78183613e88565b6133e19084613ed6565b6000601b819055601a819055601c55925084158015906134015750600083115b15613410576134108584613a47565b600c5460405173ffffffffffffffffffffffffffffffffffffffff909116908290600081818185875af1925050503d806000811461346a576040519150601f19603f3d011682016040523d82523d6000602084013e61346f565b606091505b5050600b5460405191975073ffffffffffffffffffffffffffffffffffffffff16904790600081818185875af1925050503d80600081146134cc576040519150601f19603f3d011682016040523d82523d6000602084013e6134d1565b606091505b5050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316613581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff8216613624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156136da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c55565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061371e908490613e88565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161378491815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061385557613855613eed565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061391e9190613f1c565b8160018151811061393157613931613eed565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613996307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612574565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613a11908590600090869030904290600401613f39565b600060405180830381600087803b158015613a2b57600080fd5b505af1158015613a3f573d6000803e3d6000fd5b505050505050565b613a72307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612574565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613ad360055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613b60573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b859190613fc4565b5050505050565b600060208083528351808285015260005b81811015613bb957858101830151858201604001528201613b9d565b81811115613bcb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff81168114613c2157600080fd5b50565b60008060408385031215613c3757600080fd5b8235613c4281613bff565b946020939093013593505050565b600060208284031215613c6257600080fd5b8135613c6d81613bff565b9392505050565b600080600060608486031215613c8957600080fd5b8335613c9481613bff565b92506020840135613ca481613bff565b929592945050506040919091013590565b600060208284031215613cc757600080fd5b5035919050565b8015158114613c2157600080fd5b60008060408385031215613cef57600080fd5b8235613c4281613cce565b60008060408385031215613d0d57600080fd5b8235613d1881613bff565b91506020830135613d2881613cce565b809150509250929050565b600080600060608486031215613d4857600080fd5b505081359360208301359350604090920135919050565b60008060408385031215613d7257600080fd5b8235613d7d81613bff565b91506020830135613d2881613bff565b600181811c90821680613da157607f821691505b60208210811415613ddb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4857613e48613de1565b500290565b600082613e83577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115613e9b57613e9b613de1565b500190565b600060208284031215613eb257600080fd5b5051919050565b600060208284031215613ecb57600080fd5b8151613c6d81613cce565b600082821015613ee857613ee8613de1565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215613f2e57600080fd5b8151613c6d81613bff565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613f9657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613f64565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215613fd957600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122005128610e20201d92c0fcceec0070f6be3dea8026d313a00beae7fbdcb3e65e364736f6c634300080c0033

Deployed Bytecode Sourcemap

8316:15397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3034:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3948:169;;;;;;;;;;-1:-1:-1;3948:169:0;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;3948:169:0;1154:187:1;9557:64:0;;;;;;;;;;-1:-1:-1;9557:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8464:43;;;;;;;;;;;;;;;;;;1792:42:1;1780:55;;;1762:74;;1750:2;1735:18;8464:43:0;1598:244:1;3355:108:0;;;;;;;;;;-1:-1:-1;3443:12:0;;3355:108;;;1993:25:1;;;1981:2;1966:18;3355:108:0;1847:177:1;9200:33:0;;;;;;;;;;;;;;;;9360;;;;;;;;;;;;;;;;9400;;;;;;;;;;;;;;;;4125:480;;;;;;;;;;-1:-1:-1;4125:480:0;;;;;:::i;:::-;;:::i;21170:305::-;;;;;;;;;;-1:-1:-1;21170:305:0;;;;;:::i;:::-;;:::i;:::-;;12642:269;;;;;;;;;;-1:-1:-1;12642:269:0;;;;;:::i;:::-;;:::i;3254:93::-;;;;;;;;;;-1:-1:-1;3254:93:0;;3337:2;2817:36:1;;2805:2;2790:18;3254:93:0;2675:184:1;8671:31:0;;;;;;;;;;-1:-1:-1;8671:31:0;;;;;;;;4613:215;;;;;;;;;;-1:-1:-1;4613:215:0;;;;;:::i;:::-;;:::i;8514:38::-;;;;;;;;;;;;;;;8896:33;;;;;;;;;;-1:-1:-1;8896:33:0;;;;;;;;8709:30;;;;;;;;;;-1:-1:-1;8709:30:0;;;;;;;;23281:425;;;;;;;;;;-1:-1:-1;23281:425:0;;;;;:::i;:::-;;:::i;8390:28::-;;;;;;;;;;;;;;;;9165;;;;;;;;;;;;;;;;8976:31;;;;;;;;;;-1:-1:-1;8976:31:0;;;;;;;;;;;3471:127;;;;;;;;;;-1:-1:-1;3471:127:0;;;;;:::i;:::-;3572:18;;3545:7;3572:18;;;;;;;;;;;;3471:127;7075:150;;;;;;;;;;;;;:::i;13245:115::-;;;;;;;;;;;;;:::i;13585:267::-;;;;;;;;;;-1:-1:-1;13585:267:0;;;;;:::i;:::-;;:::i;9126:30::-;;;;;;;;;;;;;;;;8746:26;;;;;;;;;;-1:-1:-1;8746:26:0;;;;;;;;15136:395;;;;;;;;;;-1:-1:-1;15136:395:0;;;;;:::i;:::-;;:::i;14363:458::-;;;;;;;;;;-1:-1:-1;14363:458:0;;;;;:::i;:::-;;:::i;8356:27::-;;;;;;;;;;;;;;;;6861:79;;;;;;;;;;-1:-1:-1;6926:6:0;;;;6861:79;;21483:289;;;;;;;;;;-1:-1:-1;21483:289:0;;;;;:::i;:::-;;:::i;9278:31::-;;;;;;;;;;;;;;;;3142:104;;;;;;;;;;;;;:::i;20138:246::-;;;;;;;;;;-1:-1:-1;20138:246:0;;;;;:::i;:::-;;:::i;14152:201::-;;;;;;;;;;-1:-1:-1;14152:201:0;;;;;:::i;:::-;;:::i;4836:401::-;;;;;;;;;;-1:-1:-1;4836:401:0;;;;;:::i;:::-;;:::i;3606:175::-;;;;;;;;;;-1:-1:-1;3606:175:0;;;;;:::i;:::-;;:::i;8425:30::-;;;;;;;;;;;;;;;;9050:32;;;;;;;;;;;;;;;;9779:58;;;;;;;;;;-1:-1:-1;9779:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8936:33;;;;;;;;;;-1:-1:-1;8936:33:0;;;;;;;;;;;15951:182;;;;;;;;;;-1:-1:-1;15951:182:0;;;;;:::i;:::-;;:::i;15539:404::-;;;;;;;;;;-1:-1:-1;15539:404:0;;;;;:::i;:::-;;:::i;13860:284::-;;;;;;;;;;-1:-1:-1;13860:284:0;;;;;:::i;:::-;;:::i;8631:33::-;;;;;;;;;;-1:-1:-1;8631:33:0;;;;;;;;9016:27;;;;;;;;;;;;;;;;12919:274;;;;;;;;;;-1:-1:-1;12919:274:0;;;;;:::i;:::-;;:::i;3789:151::-;;;;;;;;;;-1:-1:-1;3789:151:0;;;;;:::i;:::-;3905:18;;;;3878:7;3905:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3789:151;8589:33;;;;;;;;;;;;;;;;8781:37;;;;;;;;;;;;;;;;9318:35;;;;;;;;;;;;;;;;9089:30;;;;;;;;;;;;;;;;7233:244;;;;;;;;;;-1:-1:-1;7233:244:0;;;;;:::i;:::-;;:::i;14891:237::-;;;;;;;;;;;;;:::i;9240:31::-;;;;;;;;;;;;;;;;8858:29;;;;;;;;;;;;;;;;3034:100;3088:13;3121:5;3114:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3034:100;:::o;3948:169::-;4031:4;4048:39;1553:10;4071:7;4080:6;4048:8;:39::i;:::-;-1:-1:-1;4105:4:0;3948:169;;;;:::o;4125:480::-;4265:4;4282:36;4292:6;4300:9;4311:6;4282:9;:36::i;:::-;4358:19;;;4331:24;4358:19;;;:11;:19;;;;;;;;1553:10;4358:33;;;;;;;;4410:26;;;;4402:79;;;;;;;5277:2:1;4402:79:0;;;5259:21:1;5316:2;5296:18;;;5289:30;5355:34;5335:18;;;5328:62;5426:10;5406:18;;;5399:38;5454:19;;4402:79:0;;;;;;;;;4509:57;4518:6;1553:10;4559:6;4540:16;:25;4509:8;:57::i;:::-;-1:-1:-1;4593:4:0;;4125:480;-1:-1:-1;;;;4125:480:0:o;21170:305::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;21268:33:::1;::::0;::::1;21260:85;;;::::0;::::1;::::0;;6047:2:1;21260:85:0::1;::::0;::::1;6029:21:1::0;6086:2;6066:18;;;6059:30;6125:34;6105:18;;;6098:62;6196:9;6176:18;;;6169:37;6223:19;;21260:85:0::1;5845:403:1::0;21260:85:0::1;21356:18;:49:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;21421:46:::1;::::0;::::1;::::0;-1:-1:-1;;21421:46:0::1;21170:305:::0;:::o;12642:269::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;12761:4:::1;12755;12735:13;3443:12:::0;;;3355:108;12735:13:::1;:17;::::0;12751:1:::1;12735:17;:::i;:::-;:24;;;;:::i;:::-;12734:31;;;;:::i;:::-;12724:6;:41;;12716:95;;;::::0;::::1;::::0;;7156:2:1;12716:95:0::1;::::0;::::1;7138:21:1::0;7195:2;7175:18;;;7168:30;7234:34;7214:18;;;7207:62;7305:11;7285:18;;;7278:39;7334:19;;12716:95:0::1;6954:405:1::0;12716:95:0::1;12837:17;:6:::0;12847::::1;12837:17;:::i;:::-;12822:12;:32:::0;;;12870:33:::1;::::0;1993:25:1;;;12870:33:0::1;::::0;1981:2:1;1966:18;12870:33:0::1;;;;;;;;12642:269:::0;:::o;4613:215::-;1553:10;4701:4;4750:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;4701:4;;4718:80;;4741:7;;4750:47;;4787:10;;4750:47;:::i;:::-;4718:8;:80::i;23281:425::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;23378:13:::1;::::0;::::1;::::0;::::1;;;23377:14;23369:51;;;::::0;::::1;::::0;;7699:2:1;23369:51:0::1;::::0;::::1;7681:21:1::0;7738:2;7718:18;;;7711:30;7777:26;7757:18;;;7750:54;7821:18;;23369:51:0::1;7497:348:1::0;23369:51:0::1;23431:13;:23:::0;;23465:18;23431:23;::::1;;;::::0;;::::1;23465:18:::0;;;;;;;;;;;;;::::1;::::0;;;;23499:42:::1;::::0;::::1;::::0;::::1;::::0;23514:13;::::1;23431:23;23514:13;::::0;23529:11;;8043:14:1;;8036:22;8018:41;;8090:2;8075:18;;8068:34;8006:2;7991:18;;7850:258;23499:42:0::1;;;;;;;;23558:13;::::0;::::1;::::0;::::1;;;:40:::0;::::1;;;-1:-1:-1::0;23575:18:0::1;::::0;:23;23558:40:::1;23554:145;;;23636:12;23615:18;:33:::0;23663:10:::1;:24:::0;;;23554:145:::1;23281:425:::0;;:::o;7075:150::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;7168:6:::1;::::0;7147:40:::1;::::0;7184:1:::1;::::0;7147:40:::1;7168:6;::::0;7147:40:::1;::::0;7184:1;;7147:40:::1;7198:6;:19:::0;;;::::1;::::0;;7075:150::o;13245:115::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;13299:14:::1;:22:::0;;;::::1;::::0;;13337:15:::1;::::0;::::1;::::0;13316:5:::1;::::0;13337:15:::1;13245:115::o:0;13585:267::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;13681:4:::1;13677:111;;13719:13;13709:23;;:6;:23;;;;13701:75;;;::::0;::::1;::::0;;8315:2:1;13701:75:0::1;::::0;::::1;8297:21:1::0;8354:2;8334:18;;;8327:30;8393:34;8373:18;;;8366:62;8464:9;8444:18;;;8437:37;8491:19;;13701:75:0::1;8113:403:1::0;13701:75:0::1;13798:39;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;13585:267::o;15136:395::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;15260:17:::1;:35:::0;;;15306:15:::1;:31:::0;;;15348:15:::1;:31:::0;;;15366:13;15405:35:::1;15324:13:::0;15280:15;15405:35:::1;:::i;:::-;:53;;;;:::i;:::-;15390:12;:68:::0;;;15493:1:::1;-1:-1:-1::0;15477:17:0::1;15469:54;;;::::0;::::1;::::0;;8723:2:1;15469:54:0::1;::::0;::::1;8705:21:1::0;8762:2;8742:18;;;8735:30;8801:26;8781:18;;;8774:54;8845:18;;15469:54:0::1;8521:348:1::0;15469:54:0::1;15136:395:::0;;;:::o;14363:458::-;14438:10;14469:20;;;14461:59;;;;;;;9076:2:1;14461:59:0;;;9058:21:1;9115:2;9095:18;;;9088:30;9154:28;9134:18;;;9127:56;9200:18;;14461:59:0;8874:350:1;14461:59:0;14551:18;;;;14539:10;:30;14531:78;;;;;;;9431:2:1;14531:78:0;;;9413:21:1;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;9580:6;9560:18;;;9553:34;9604:19;;14531:78:0;9229:400:1;14531:78:0;14647:39;;;;;14680:4;14647:39;;;1762:74:1;14620:24:0;;14647;;;;;;1735:18:1;;14647:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14705:46;;;;;:23;10015:55:1;;;14705:46:0;;;9997:74:1;10087:18;;;10080:34;;;14620:66:0;;-1:-1:-1;14705:23:0;;;;;;9970:18:1;;14705:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14767;;;10027:42:1;10015:55;;9997:74;;10102:2;10087:18;;10080:34;;;14697:54:0;;-1:-1:-1;14767:46:0;;9970:18:1;14767:46:0;;;;;;;14450:371;14363:458;;;;:::o;21483:289::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;21577:31:::1;::::0;::::1;21569:81;;;::::0;::::1;::::0;;10577:2:1;21569:81:0::1;::::0;::::1;10559:21:1::0;10616:2;10596:18;;;10589:30;10655:34;10635:18;;;10628:62;10726:7;10706:18;;;10699:35;10751:19;;21569:81:0::1;10375:401:1::0;21569:81:0::1;21661:16;:45:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;21722:42:::1;::::0;::::1;::::0;-1:-1:-1;;21722:42:0::1;21483:289:::0;:::o;3142:104::-;3198:13;3231:7;3224:14;;;;;:::i;20138:246::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;20247:13:::1;20239:21;;:4;:21;;;;20231:91;;;::::0;::::1;::::0;;10983:2:1;20231:91:0::1;::::0;::::1;10965:21:1::0;11022:2;11002:18;;;10995:30;11061:34;11041:18;;;11034:62;11132:27;11112:18;;;11105:55;11177:19;;20231:91:0::1;10781:421:1::0;20231:91:0::1;20335:41;20364:4;20370:5;20335:28;:41::i;14152:201::-:0;14236:18;;;;14224:10;:30;14216:78;;;;;;;9431:2:1;14216:78:0;;;9413:21:1;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;9580:6;9560:18;;;9553:34;9604:19;;14216:78:0;9229:400:1;14216:78:0;14326:19;:9;14338:6;14326:19;:::i;:::-;14305:18;:40;-1:-1:-1;14152:201:0:o;4836:401::-;1553:10;4929:4;4973:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;5026:35;;;;5018:85;;;;;;;11409:2:1;5018:85:0;;;11391:21:1;11448:2;11428:18;;;11421:30;11487:34;11467:18;;;11460:62;11558:7;11538:18;;;11531:35;11583:19;;5018:85:0;11207:401:1;5018:85:0;5131:67;1553:10;5154:7;5182:15;5163:16;:34;5131:8;:67::i;:::-;-1:-1:-1;5225:4:0;;4836:401;-1:-1:-1;;;4836:401:0:o;3606:175::-;3692:4;3709:42;1553:10;3733:9;3744:6;3709:9;:42::i;15951:182::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;16036:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;16091:34;;1294:41:1;;;16091:34:0::1;::::0;1267:18:1;16091:34:0::1;;;;;;;15951:182:::0;;:::o;15539:404::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;15664:18:::1;:36:::0;;;15711:16:::1;:32:::0;;;15754:16:::1;:32:::0;;;15773:13;15813:37:::1;15730:13:::0;15685:15;15813:37:::1;:::i;:::-;:56;;;;:::i;:::-;15797:13;:72:::0;;;15905:1:::1;-1:-1:-1::0;15888:18:0::1;15880:55;;;::::0;::::1;::::0;;8723:2:1;15880:55:0::1;::::0;::::1;8705:21:1::0;8762:2;8742:18;;;8735:30;8801:26;8781:18;;;8774:54;8845:18;;15880:55:0::1;8521:348:1::0;13860:284:0;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;13982:4:::1;13976;13956:13;3443:12:::0;;;3355:108;13956:13:::1;:17;::::0;13972:1:::1;13956:17;:::i;:::-;:24;;;;:::i;:::-;13955:31;;;;:::i;:::-;13945:6;:41;;13937:98;;;::::0;::::1;::::0;;11815:2:1;13937:98:0::1;::::0;::::1;11797:21:1::0;11854:2;11834:18;;;11827:30;11893:34;11873:18;;;11866:62;11964:14;11944:18;;;11937:42;11996:19;;13937:98:0::1;11613:408:1::0;13937:98:0::1;14064:17;:6:::0;14074::::1;14064:17;:::i;:::-;14046:15;:35:::0;;;14097:39:::1;::::0;1993:25:1;;;14097:39:0::1;::::0;1981:2:1;1966:18;14097:39:0::1;1847:177:1::0;12919:274:0;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;13039:4:::1;13033;13013:13;3443:12:::0;;;3355:108;13013:13:::1;:17;::::0;13029:1:::1;13013:17;:::i;:::-;:24;;;;:::i;:::-;13012:31;;;;:::i;:::-;13002:6;:41;;12994:96;;;::::0;::::1;::::0;;12228:2:1;12994:96:0::1;::::0;::::1;12210:21:1::0;12267:2;12247:18;;;12240:30;12306:34;12286:18;;;12279:62;12377:12;12357:18;;;12350:40;12407:19;;12994:96:0::1;12026:406:1::0;12994:96:0::1;13117:17;:6:::0;13127::::1;13117:17;:::i;:::-;13101:13;:33:::0;;;13150:35:::1;::::0;1993:25:1;;;13150:35:0::1;::::0;1981:2:1;1966:18;13150:35:0::1;1847:177:1::0;7233:244:0;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5686:2:1;6980:67:0;;;5668:21:1;;;5705:18;;;5698:30;5764:34;5744:18;;;5737:62;5816:18;;6980:67:0;5484:356:1;6980:67:0;7322:22:::1;::::0;::::1;7314:73;;;::::0;::::1;::::0;;12639:2:1;7314:73:0::1;::::0;::::1;12621:21:1::0;12678:2;12658:18;;;12651:30;12717:34;12697:18;;;12690:62;12788:8;12768:18;;;12761:36;12814:19;;7314:73:0::1;12437:402:1::0;7314:73:0::1;7424:6;::::0;7403:38:::1;::::0;::::1;::::0;;::::1;::::0;7424:6:::1;::::0;7403:38:::1;::::0;7424:6:::1;::::0;7403:38:::1;7452:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;7233:244::o;14891:237::-;14980:18;;14937:12;;14980:18;;14968:10;:30;14960:78;;;;;;;9431:2:1;14960:78:0;;;9413:21:1;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;9580:6;9560:18;;;9553:34;9604:19;;14960:78:0;9229:400:1;14960:78:0;15062:58;;15070:10;;15094:21;;15062:58;;;;15094:21;15070:10;15062:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;14891:237:0:o;6154:380::-;6290:19;;;6282:68;;;;;;;13256:2:1;6282:68:0;;;13238:21:1;13295:2;13275:18;;;13268:30;13334:34;13314:18;;;13307:62;13405:6;13385:18;;;13378:34;13429:19;;6282:68:0;13054:400:1;6282:68:0;6369:21;;;6361:68;;;;;;;13661:2:1;6361:68:0;;;13643:21:1;13700:2;13680:18;;;13673:30;13739:34;13719:18;;;13712:62;13810:4;13790:18;;;13783:32;13832:19;;6361:68:0;13459:398:1;6361:68:0;6442:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;6494:32;;1993:25:1;;;6494:32:0;;1966:18:1;6494:32:0;;;;;;;6154:380;;;:::o;16143:3388::-;16243:18;;;16235:68;;;;;;;14064:2:1;16235:68:0;;;14046:21:1;14103:2;14083:18;;;14076:30;14142:34;14122:18;;;14115:62;14213:7;14193:18;;;14186:35;14238:19;;16235:68:0;13862:401:1;16235:68:0;16322:16;;;16314:64;;;;;;;14470:2:1;16314:64:0;;;14452:21:1;14509:2;14489:18;;;14482:30;14548:34;14528:18;;;14521:62;14619:5;14599:18;;;14592:33;14642:19;;16314:64:0;14268:399:1;16314:64:0;16406:1;16397:6;:10;16389:52;;;;;;;14874:2:1;16389:52:0;;;14856:21:1;14913:2;14893:18;;;14886:30;14952:31;14932:18;;;14925:59;15001:18;;16389:52:0;14672:353:1;16389:52:0;16459:14;;;;16456:1224;;;6926:6;;;16493:15;;;6926:6;;16493:15;;;;:32;;-1:-1:-1;6926:6:0;;;16512:13;;;6926:6;;16512:13;;16493:32;:52;;;;-1:-1:-1;16529:16:0;;;;;16493:52;:77;;;;-1:-1:-1;16549:21:0;;;16563:6;16549:21;;16493:77;16489:1180;;;16594:13;;;;;;;16590:245;;16639:37;;;;;;;:31;:37;;;;;;;;;:76;;-1:-1:-1;16680:35:0;;;;;;;:31;:35;;;;;;;;16639:76;16631:111;;;;;;;15232:2:1;16631:111:0;;;15214:21:1;15271:2;15251:18;;;15244:30;15310:24;15290:18;;;15283:52;15352:18;;16631:111:0;15030:346:1;16631:111:0;6926:6;;;16773:15;;;6926:6;;16773:15;16765:50;;;;;;;15583:2:1;16765:50:0;;;15565:21:1;15622:2;15602:18;;;15595:30;15661:24;15641:18;;;15634:52;15703:18;;16765:50:0;15381:346:1;16765:50:0;16885:31;;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;16921:35:0;;;;;;;:31;:35;;;;;;;;16920:36;16885:71;16881:773;;;16999:12;;16989:6;:22;;16981:75;;;;;;;15934:2:1;16981:75:0;;;15916:21:1;15973:2;15953:18;;;15946:30;16012:34;15992:18;;;15985:62;16083:10;16063:18;;;16056:38;16111:19;;16981:75:0;15732:404:1;16981:75:0;17113:15;;3572:18;;;3545:7;3572:18;;;;;;;;;;;17087:22;;:6;:22;:::i;:::-;:41;;17079:78;;;;;;;16343:2:1;17079:78:0;;;16325:21:1;16382:2;16362:18;;;16355:30;16421:26;16401:18;;;16394:54;16465:18;;17079:78:0;16141:348:1;17079:78:0;16881:773;;;17233:29;;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;17267:37:0;;;;;;;:31;:37;;;;;;;;17266:38;17233:71;17229:425;;;17347:13;;17337:6;:23;;17329:78;;;;;;;16696:2:1;17329:78:0;;;16678:21:1;16735:2;16715:18;;;16708:30;16774:34;16754:18;;;16747:62;16845:12;16825:18;;;16818:40;16875:19;;17329:78:0;16494:406:1;17229:425:0;17455:35;;;;;;;:31;:35;;;;;;;;17454:36;:78;;;;-1:-1:-1;17495:37:0;;;;;;;:31;:37;;;;;;;;17494:38;17454:78;17450:204;;;17590:15;;3572:18;;;3545:7;3572:18;;;;;;;;;;;17564:22;;:6;:22;:::i;:::-;:41;;17556:78;;;;;;;16343:2:1;17556:78:0;;;16325:21:1;16382:2;16362:18;;;16355:30;16421:26;16401:18;;;16394:54;16465:18;;17556:78:0;16141:348:1;17556:78:0;17741:4;17692:28;3572:18;;;;;;;;;;;17799;;17775:42;;;;;;;17833:22;;-1:-1:-1;17844:11:0;;;;;;;17833:22;:35;;;;-1:-1:-1;17860:8:0;;;;17859:9;17833:35;:71;;;;-1:-1:-1;17873:31:0;;;;;;;:25;:31;;;;;;;;17872:32;17833:71;:101;;;;-1:-1:-1;17909:25:0;;;;;;;:19;:25;;;;;;;;17908:26;17833:101;:129;;;;-1:-1:-1;17939:23:0;;;;;;;:19;:23;;;;;;;;17938:24;17833:129;17830:236;;;17979:8;:15;;;;17990:4;17979:15;;;18011:10;:8;:10::i;:::-;18038:8;:16;;;;;;17830:236;18196:25;;;18078:12;18196:25;;;:19;:25;;;;;;18093:4;;18196:25;;;:52;;-1:-1:-1;18225:23:0;;;;;;;:19;:23;;;;;;;;18196:52;18193:99;;;-1:-1:-1;18275:5:0;18193:99;18304:12;18331:21;18434:7;:31;;;;;18464:1;18445:18;;:20;18434:31;:68;;;;;18483:18;;18470:12;:31;18434:68;18431:1047;;;18546:29;;;;;;;:25;:29;;;;;;;;:50;;;;;18595:1;18579:13;;:17;18546:50;18542:773;;;18647:3;18632:13;;18623:6;:22;;;;:::i;:::-;:27;;;;:::i;:::-;18616:34;;18717:13;;18698:16;;18691:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;18669:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;18801:13:0;;18780:18;;18773:25;;:4;:25;:::i;:::-;:41;;;;:::i;:::-;18749:20;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;18881:13:0;;18862:16;;18855:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;18833:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;18542:773:0;;-1:-1:-1;18542:773:0;;18955:31;;;;;;;:25;:31;;;;;;;;:51;;;;;19005:1;18990:12;;:16;18955:51;18952:363;;;19058:3;19043:12;;19034:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;19027:34;;19127:12;;19109:15;;19102:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;19080:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;19209:12:0;;19189:17;;19182:24;;:4;:24;:::i;:::-;:39;;;;:::i;:::-;19158:20;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;19287:12:0;;19269:15;;19262:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;19240:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;18952:363:0;19334:8;;19331:89;;19362:42;19378:4;19392;19399;19362:15;:42::i;:::-;19446:20;19453:13;19446:4;:20;:::i;:::-;19436:30;;;;:::i;:::-;;;18431:1047;19490:33;19506:4;19512:2;19516:6;19490:15;:33::i;:::-;16222:3309;;;;;16143:3388;;;:::o;20392:240::-;20475:31;;;;;;;:25;:31;;;;;:39;;;;;;;;;;20527;20475:31;:39;20527:26;:39::i;:::-;20584:40;;;;;;;;;;;;;;;20392:240;;:::o;21780:1445::-;21863:4;21819:23;3572:18;;;;;;;;;;;21819:50;;21880:25;21952:18;;21929:20;;21908:18;;:41;;;;:::i;:::-;:62;;;;:::i;:::-;21880:90;-1:-1:-1;21986:20:0;;;:46;;-1:-1:-1;22010:22:0;;21986:46;21983:60;;;22035:7;;21780:1445::o;21983:60::-;22076:18;;:22;;22097:1;22076:22;:::i;:::-;22058:15;:40;22055:111;;;22132:18;;:22;;22153:1;22132:22;:::i;:::-;22114:40;;22055:111;22178:12;22252:23;22337:1;22317:17;22296:18;;22278:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;22252:86;-1:-1:-1;22351:51:0;22368:33;22252:86;22368:15;:33;:::i;:::-;22351:16;:51::i;:::-;22603:18;;22436:21;;;;22415:18;;22603:20;;22622:1;;22603:20;:::i;:::-;22582:42;;:17;:42;:::i;:::-;22558:20;;22545:33;;:10;:33;:::i;:::-;:80;;;;:::i;:::-;22517:108;;22636:23;22737:1;22718:18;;:20;;;;:::i;:::-;22697:42;;:17;:42;:::i;:::-;22675:18;;22662:31;;:10;:31;:::i;:::-;:78;;;;:::i;:::-;22636:104;-1:-1:-1;22772:35:0;22636:104;22772:17;:35;:::i;:::-;22753:54;;;;:::i;:::-;22841:1;22820:18;:22;;;22853:20;:24;;;22888:18;:22;22753:54;-1:-1:-1;22926:19:0;;;;;:42;;;22967:1;22949:15;:19;22926:42;22923:119;;;22984:46;22997:15;23014;22984:12;:46::i;:::-;23075:16;;23067:58;;23075:16;;;;;23105:15;;23067:58;;;;23105:15;23075:16;23067:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23159:18:0;;23151:66;;23054:71;;-1:-1:-1;23159:18:0;;;23191:21;;23151:66;;;;23191:21;23159:18;23151:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21780:1445:0:o;5245:602::-;5385:20;;;5377:70;;;;;;;14064:2:1;5377:70:0;;;14046:21:1;14103:2;14083:18;;;14076:30;14142:34;14122:18;;;14115:62;14213:7;14193:18;;;14186:35;14238:19;;5377:70:0;13862:401:1;5377:70:0;5466:23;;;5458:71;;;;;;;14470:2:1;5458:71:0;;;14452:21:1;14509:2;14489:18;;;14482:30;14548:34;14528:18;;;14521:62;14619:5;14599:18;;;14592:33;14642:19;;5458:71:0;14268:399:1;5458:71:0;5566:17;;;5542:21;5566:17;;;;;;;;;;;5602:23;;;;5594:74;;;;;;;17237:2:1;5594:74:0;;;17219:21:1;17276:2;17256:18;;;17249:30;17315:34;17295:18;;;17288:62;17386:8;17366:18;;;17359:36;17412:19;;5594:74:0;17035:402:1;5594:74:0;5696:17;;;;:9;:17;;;;;;;;;;;5716:22;;;5696:42;;5756:20;;;;;;;;:30;;5732:6;;5696:9;5756:30;;5732:6;;5756:30;:::i;:::-;;;;;;;;5821:9;5804:35;;5813:6;5804:35;;;5832:6;5804:35;;;;1993:25:1;;1981:2;1966:18;;1847:177;5804:35:0;;;;;;;;5366:481;5245:602;;;:::o;13370:207::-;13458:39;;;;;;;:31;:39;;;;;;;;;:52;;;;;;;;;;;;;13526:43;;17610:74:1;;;17700:18;;;17693:50;13526:43:0;;17583:18:1;13526:43:0;;;;;;;13370:207;;:::o;19539:591::-;19691:16;;;19705:1;19691:16;;;;;;;;19667:21;;19691:16;;;;;;;;;;-1:-1:-1;19691:16:0;19667:40;;19736:4;19718;19723:1;19718:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;19762:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19752:4;19757:1;19752:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;19797:62;19814:4;19829:15;19847:11;19797:8;:62::i;:::-;19898:224;;;;;:66;:15;:66;;;;:224;;19979:11;;20005:1;;20049:4;;20076;;20096:15;;19898:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19594:536;19539:591;:::o;20640:522::-;20788:62;20805:4;20820:15;20838:11;20788:8;:62::i;:::-;20893:15;:31;;;20932:9;20965:4;20985:11;21011:1;21054;21105:7;6926:6;;;;;6861:79;21105:7;20893:261;;;;;;;;;;19732:42:1;19801:15;;;20893:261:0;;;19783:34:1;19833:18;;;19826:34;;;;19876:18;;;19869:34;;;;19919:18;;;19912:34;19983:15;;;19962:19;;;19955:44;21128:15:0;20015:19:1;;;20008:35;19694:19;;20893:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;20640:522;;:::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;730:93;675:154;:::o;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;:::-;1582:5;1346:247;-1:-1:-1;;;1346:247:1:o;2029:456::-;2106:6;2114;2122;2175:2;2163:9;2154:7;2150:23;2146:32;2143:52;;;2191:1;2188;2181:12;2143:52;2230:9;2217:23;2249:31;2274:5;2249:31;:::i;:::-;2299:5;-1:-1:-1;2356:2:1;2341:18;;2328:32;2369:33;2328:32;2369:33;:::i;:::-;2029:456;;2421:7;;-1:-1:-1;;;2475:2:1;2460:18;;;;2447:32;;2029:456::o;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;3095:118::-;3181:5;3174:13;3167:21;3160:5;3157:32;3147:60;;3203:1;3200;3193:12;3218:309;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3399:9;3386:23;3418:28;3440:5;3418:28;:::i;3532:382::-;3597:6;3605;3658:2;3646:9;3637:7;3633:23;3629:32;3626:52;;;3674:1;3671;3664:12;3626:52;3713:9;3700:23;3732:31;3757:5;3732:31;:::i;:::-;3782:5;-1:-1:-1;3839:2:1;3824:18;;3811:32;3852:30;3811:32;3852:30;:::i;:::-;3901:7;3891:17;;;3532:382;;;;;:::o;3919:316::-;3996:6;4004;4012;4065:2;4053:9;4044:7;4040:23;4036:32;4033:52;;;4081:1;4078;4071:12;4033:52;-1:-1:-1;;4104:23:1;;;4174:2;4159:18;;4146:32;;-1:-1:-1;4225:2:1;4210:18;;;4197:32;;3919:316;-1:-1:-1;3919:316:1:o;4240:388::-;4308:6;4316;4369:2;4357:9;4348:7;4344:23;4340:32;4337:52;;;4385:1;4382;4375:12;4337:52;4424:9;4411:23;4443:31;4468:5;4443:31;:::i;:::-;4493:5;-1:-1:-1;4550:2:1;4535:18;;4522:32;4563:33;4522:32;4563:33;:::i;4633:437::-;4712:1;4708:12;;;;4755;;;4776:61;;4830:4;4822:6;4818:17;4808:27;;4776:61;4883:2;4875:6;4872:14;4852:18;4849:38;4846:218;;;4920:77;4917:1;4910:88;5021:4;5018:1;5011:15;5049:4;5046:1;5039:15;4846:218;;4633:437;;;:::o;6253:184::-;6305:77;6302:1;6295:88;6402:4;6399:1;6392:15;6426:4;6423:1;6416:15;6442:228;6482:7;6608:1;6540:66;6536:74;6533:1;6530:81;6525:1;6518:9;6511:17;6507:105;6504:131;;;6615:18;;:::i;:::-;-1:-1:-1;6655:9:1;;6442:228::o;6675:274::-;6715:1;6741;6731:189;;6776:77;6773:1;6766:88;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6731:189;-1:-1:-1;6934:9:1;;6675:274::o;7364:128::-;7404:3;7435:1;7431:6;7428:1;7425:13;7422:39;;;7441:18;;:::i;:::-;-1:-1:-1;7477:9:1;;7364:128::o;9634:184::-;9704:6;9757:2;9745:9;9736:7;9732:23;9728:32;9725:52;;;9773:1;9770;9763:12;9725:52;-1:-1:-1;9796:16:1;;9634:184;-1:-1:-1;9634:184:1:o;10125:245::-;10192:6;10245:2;10233:9;10224:7;10220:23;10216:32;10213:52;;;10261:1;10258;10251:12;10213:52;10293:9;10287:16;10312:28;10334:5;10312:28;:::i;16905:125::-;16945:4;16973:1;16970;16967:8;16964:34;;;16978:18;;:::i;:::-;-1:-1:-1;17015:9:1;;16905:125::o;17943:184::-;17995:77;17992:1;17985:88;18092:4;18089:1;18082:15;18116:4;18113:1;18106:15;18132:251;18202:6;18255:2;18243:9;18234:7;18230:23;18226:32;18223:52;;;18271:1;18268;18261:12;18223:52;18303:9;18297:16;18322:31;18347:5;18322:31;:::i;18388:1026::-;18650:4;18698:3;18687:9;18683:19;18729:6;18718:9;18711:25;18755:2;18793:6;18788:2;18777:9;18773:18;18766:34;18836:3;18831:2;18820:9;18816:18;18809:31;18860:6;18895;18889:13;18926:6;18918;18911:22;18964:3;18953:9;18949:19;18942:26;;19003:2;18995:6;18991:15;18977:29;;19024:1;19034:218;19048:6;19045:1;19042:13;19034:218;;;19113:13;;19128:42;19109:62;19097:75;;19227:15;;;;19192:12;;;;19070:1;19063:9;19034:218;;;-1:-1:-1;;19320:42:1;19308:55;;;;19303:2;19288:18;;19281:83;-1:-1:-1;;;19395:3:1;19380:19;19373:35;19269:3;18388:1026;-1:-1:-1;;;18388:1026:1:o;20054:306::-;20142:6;20150;20158;20211:2;20199:9;20190:7;20186:23;20182:32;20179:52;;;20227:1;20224;20217:12;20179:52;20256:9;20250:16;20240:26;;20306:2;20295:9;20291:18;20285:25;20275:35;;20350:2;20339:9;20335:18;20329:25;20319:35;;20054:306;;;;;:::o

Swarm Source

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