ETH Price: $3,381.17 (-1.92%)
Gas: 4 Gwei

Token

Kreaitor (KAI)
 

Overview

Max Total Supply

100,000,000 KAI

Holders

734 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,565.67 KAI

Value
$0.00
0x9651bffdc17c8653869feffb6efb96a46930e009
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Kreaitor.AI— One-Stop Solution for Creators. Kreaitor is not just a platform; it’s a special space for creators. It’s designed to be the best set of tools for creative minds today, bringing everything you need together in one decentralised place.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KAI

Compiler Version
v0.8.25+commit.b61c2a91

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.25;

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"}]

60c06040525f600f55600160108190556011805462ffffff19169091179055348015610029575f80fd5b506040518060400160405280600881526020016725b932b0b4ba37b960c11b815250604051806040016040528060038152602001624b414960e81b815250816003908161007691906107e6565b50600461008382826107e6565b5050505f61009561040660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250905f905f805160206148b1833981519152908290a35033737a250d5630b4cf539739df2c5dacb4c659f2488d6100f081600161040a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610138573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061015c91906108a5565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101cb91906108a5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610215573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023991906108a5565b6001600160a01b031660a081905261025290600161046c565b6a52b7d2dcc80cd2e40000006103e861026c82600a6108e6565b6102769190610903565b6006556103e86102878260056108e6565b6102919190610903565b6007556103e86102a282600a6108e6565b6102ac9190610903565b60085560646102bc8260026108e6565b6102c69190610903565b600a55600360138190555f601481905560026015819055916102e89190610922565b6102f29190610922565b601255600360178190555f601881905560026019819055916103149190610922565b61031e9190610922565b601655600b80546001600160a01b031990811673d9f1f701859c7203a3356ac12004f2f2679a0b5717909155600c80548216737b4da1341b7052841831bda7656e504d6932e9c5179055600d8054821673ea3d33f924418d3caf8ff2620e010d63cff223d0179055600e805490911673f707937654de9bb524d5c1a7485a258be0148af21790556103b083600161040a565b6103bb30600161040a565b6103c861dead600161040a565b6103d38360016104d4565b6103de3060016104d4565b6103eb61dead60016104d4565b6103f5838261057e565b6103fe8361065a565b505050610935565b3390565b6001600160a01b0382165f818152601e6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382165f908152601f60205260409020805460ff1916821515179055610499828261040a565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b6005546001600160a01b031633146105205760405162461bcd60e51b815260206004820181905260248201525f8051602061489183398151915260448201526064015b60405180910390fd5b6001600160a01b0382165f818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166105d45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610517565b8060025f8282546105e59190610922565b90915550506001600160a01b0382165f9081526020819052604081208054839290610611908490610922565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b031633146106a15760405162461bcd60e51b815260206004820181905260248201525f805160206148918339815191526044820152606401610517565b6001600160a01b0381166107065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610517565b6005546040516001600160a01b038084169216905f805160206148b1833981519152905f90a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061077657607f821691505b60208210810361079457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156107e157805f5260205f20601f840160051c810160208510156107bf5750805b601f840160051c820191505b818110156107de575f81556001016107cb565b50505b505050565b81516001600160401b038111156107ff576107ff61074e565b6108138161080d8454610762565b8461079a565b602080601f831160018114610846575f841561082f5750858301515b5f19600386901b1c1916600185901b17855561089d565b5f85815260208120601f198616915b8281101561087457888601518255948401946001909101908401610855565b508582101561089157878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156108b5575f80fd5b81516001600160a01b03811681146108cb575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176108fd576108fd6108d2565b92915050565b5f8261091d57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156108fd576108fd6108d2565b60805160a051613f0a6109875f395f8181610586015281816113a10152611ab101525f818161040c015281816137f4015281816138d201528181613934015281816139a801526139cf0152613f0a5ff3fe608060405260043610610369575f3560e01c80638366e79a116101c8578063c0246668116100fd578063e2f456051161009d578063f2fde38b1161006d578063f2fde38b14610a37578063f5648a4f14610a56578063f637434214610a6a578063fabb0b4f14610a7f575f80fd5b8063e2f45605146109e3578063ee40166e146109f8578063ef8700e514610a0d578063f11a24d314610a22575f80fd5b8063d1a0c946116100d8578063d1a0c94614610932578063d85ba0631461095e578063dc3f0d0f14610973578063dd62ed3e14610992575f80fd5b8063c0246668146108d5578063c17b5b8c146108f4578063c18bc19514610913575f80fd5b80639d0014b111610168578063aa4bde2811610143578063aa4bde281461085f578063b204141114610874578063b62496f514610889578063bbc0c742146108b7575f80fd5b80639d0014b114610802578063a457c2d714610821578063a9059cbb14610840575f80fd5b8063906e9dd0116101a3578063906e9dd01461079b57806392136913146107ba57806395d89b41146107cf5780639a7a23d6146107e3575f80fd5b80638366e79a1461073d57806388e765ff1461075c5780638da5cb5b14610771575f80fd5b806349bd5a5e1161029e57806370a082311161023e5780637571336a116102195780637571336a146106be5780637bce5a04146106dd5780637ff3366f146106f25780638095d5641461071e575f80fd5b806370a0823114610655578063715018a614610696578063751039fc146106aa575f80fd5b80635e83ae76116102795780635e83ae76146105ed57806366d602ae1461060c5780636a486a8e146106215780636ddd171314610636575f80fd5b806349bd5a5e146105755780634a62bb65146105a85780635b5c251f146105c1575f80fd5b80631f3fed8f116103095780632be32b61116102e45780632be32b61146104f0578063313ce5671461050f5780633936e8b91461052a5780633950935114610556575f80fd5b80631f3fed8f1461049b57806323b872dd146104b057806329b1c15c146104cf575f80fd5b80631694505e116103445780631694505e146103fb57806318160ddd1461045357806318a94cf1146104715780631a8145bb14610486575f80fd5b806306fdde0314610374578063095ea7b31461039e57806310d5de53146103cd575f80fd5b3661037057005b5f80fd5b34801561037f575f80fd5b50610388610a94565b6040516103959190613ae4565b60405180910390f35b3480156103a9575f80fd5b506103bd6103b8366004613b5b565b610b24565b6040519015158152602001610395565b3480156103d8575f80fd5b506103bd6103e7366004613b85565b601e6020525f908152604090205460ff1681565b348015610406575f80fd5b5061042e7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610395565b34801561045e575f80fd5b506002545b604051908152602001610395565b34801561047c575f80fd5b5061046360175481565b348015610491575f80fd5b50610463601b5481565b3480156104a6575f80fd5b50610463601c5481565b3480156104bb575f80fd5b506103bd6104ca366004613ba7565b610b3a565b3480156104da575f80fd5b506104ee6104e9366004613b85565b610c23565b005b3480156104fb575f80fd5b506104ee61050a366004613be5565b610db4565b34801561051a575f80fd5b5060405160128152602001610395565b348015610535575f80fd5b50600c5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610561575f80fd5b506103bd610570366004613b5b565b610f46565b348015610580575f80fd5b5061042e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105b3575f80fd5b506011546103bd9060ff1681565b3480156105cc575f80fd5b50600d5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105f8575f80fd5b506104ee610607366004613c09565b610f8e565b348015610617575f80fd5b5061046360075481565b34801561062c575f80fd5b5061046360165481565b348015610641575f80fd5b506011546103bd9062010000900460ff1681565b348015610660575f80fd5b5061046361066f366004613b85565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b3480156106a1575f80fd5b506104ee611157565b3480156106b5575f80fd5b506104ee611246565b3480156106c9575f80fd5b506104ee6106d8366004613c25565b611319565b3480156106e8575f80fd5b5061046360155481565b3480156106fd575f80fd5b50600e5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610729575f80fd5b506104ee610738366004613c5c565b6114cf565b348015610748575f80fd5b506103bd610757366004613c85565b6115e8565b348015610767575f80fd5b5061046360065481565b34801561077c575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661042e565b3480156107a6575f80fd5b506104ee6107b5366004613b85565b61188d565b3480156107c5575f80fd5b5061046360195481565b3480156107da575f80fd5b50610388611a1f565b3480156107ee575f80fd5b506104ee6107fd366004613c25565b611a2e565b34801561080d575f80fd5b506104ee61081c366004613be5565b611b94565b34801561082c575f80fd5b506103bd61083b366004613b5b565b611c52565b34801561084b575f80fd5b506103bd61085a366004613b5b565b611d29565b34801561086a575f80fd5b5061046360085481565b34801561087f575f80fd5b5061046360135481565b348015610894575f80fd5b506103bd6108a3366004613b85565b601f6020525f908152604090205460ff1681565b3480156108c2575f80fd5b506011546103bd90610100900460ff1681565b3480156108e0575f80fd5b506104ee6108ef366004613c25565b611d35565b3480156108ff575f80fd5b506104ee61090e366004613c5c565b611e3f565b34801561091e575f80fd5b506104ee61092d366004613be5565b611f53565b34801561093d575f80fd5b50600b5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610969575f80fd5b5061046360125481565b34801561097e575f80fd5b506104ee61098d366004613be5565b6120de565b34801561099d575f80fd5b506104636109ac366004613c85565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156109ee575f80fd5b50610463600a5481565b348015610a03575f80fd5b50610463600f5481565b348015610a18575f80fd5b50610463601a5481565b348015610a2d575f80fd5b5061046360145481565b348015610a42575f80fd5b506104ee610a51366004613b85565b612269565b348015610a61575f80fd5b506104ee61241a565b348015610a75575f80fd5b5061046360185481565b348015610a8a575f80fd5b5061046360105481565b606060038054610aa390613cb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610acf90613cb1565b8015610b1a5780601f10610af157610100808354040283529160200191610b1a565b820191905f5260205f20905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b5f610b3033848461250a565b5060015b92915050565b5f610b468484846126bc565b73ffffffffffffffffffffffffffffffffffffffff84165f90815260016020908152604080832033845290915290205482811015610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610c18853385840361250a565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ca4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff8116610d47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f446576656c6f706d656e744164647265737320616464726573732063616e6e60448201527f6f742062652030000000000000000000000000000000000000000000000000006064820152608401610c02565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517e9301a7a046a65d0304006b0bfee72798e7e8c804b21a3d33e0838d87680e9d905f90a250565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b670de0b6b3a76400006103e8610e4a60025490565b610e55906001613d2f565b610e5f9190613d46565b610e699190613d46565b811015610ef8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152608401610c02565b610f0a81670de0b6b3a7640000613d2f565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610b30918590610f89908690613d7e565b61250a565b60055473ffffffffffffffffffffffffffffffffffffffff16331461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b601154610100900460ff1615611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420726520656e61626c652074726164696e6700000000000000006044820152606401610c02565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff841515610100908102919091167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff909216919091176201000017918290556040517fe185248899f361d51a48833938ab33493ebd7272d195abf7f51a833ea81388129261112592900460ff169084909115158252602082015260400190565b60405180910390a1601154610100900460ff1680156111445750600f54155b156111535743600f5560108190555b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b6005546040515f9173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b60055473ffffffffffffffffffffffffffffffffffffffff16331461139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b8061147a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201527f6d61782074786e000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff919091165f908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b6013839055601482905560158190558061156a8385613d7e565b6115749190613d7e565b6012819055600510156115e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c02565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff8316611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c02565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c02565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015611776573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061179a9190613d91565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015611810573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118349190613da8565b6040805173ffffffffffffffffffffffffffffffffffffffff87168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff81166119b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5f4d61726b6574696e674164647265737320616464726573732063616e6e6f7460448201527f20626520300000000000000000000000000000000000000000000000000000006064820152608401610c02565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fd1e7d6a3390dd5008bd1c57798817b9f806e4c417264e7d3d67e42e784dc24a9905f90a250565b606060048054610aa390613cb1565b60055473ffffffffffffffffffffffffffffffffffffffff163314611aaf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c02565b611153828261318c565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c02565b611c4c81670de0b6b3a7640000613d2f565b600a5550565b335f90815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611d12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c02565b611d1f338585840361250a565b5060019392505050565b5f610b303384846126bc565b60055473ffffffffffffffffffffffffffffffffffffffff163314611db6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff82165f818152601d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ec0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b60178390556018829055601981905580611eda8385613d7e565b611ee49190613d7e565b6016819055600510156115e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c02565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b670de0b6b3a76400006103e8611fe960025490565b611ff4906003613d2f565b611ffe9190613d46565b6120089190613d46565b811015612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201527f6572207468616e20302e332500000000000000000000000000000000000000006064820152608401610c02565b6120a981670de0b6b3a7640000613d2f565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610f3b565b60055473ffffffffffffffffffffffffffffffffffffffff16331461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b670de0b6b3a76400006103e861217460025490565b61217f906001613d2f565b6121899190613d46565b6121939190613d46565b811015612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260448201527f207468616e20302e3125000000000000000000000000000000000000000000006064820152608401610c02565b61223481670de0b6b3a7640000613d2f565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610f3b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff811661238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c02565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b545f9073ffffffffffffffffffffffffffffffffffffffff1633146124c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c02565b604051339047905f81818185875af1925050503d805f81146124ff576040519150601f19603f3d011682016040523d82523d5f602084013e612504565b606091505b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166125ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff821661264f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff8216612802576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c02565b5f811161286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610c02565b60115460ff1615612dce5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906128bc575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156128dd575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612901575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b15612dce57601154610100900460ff16612a565773ffffffffffffffffffffffffffffffffffffffff83165f908152601e602052604090205460ff168061296c575073ffffffffffffffffffffffffffffffffffffffff82165f908152601e602052604090205460ff165b6129d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c02565b60055473ffffffffffffffffffffffffffffffffffffffff848116911614612a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f7420656e61626c6564000000000000000000006044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff83165f908152601f602052604090205460ff168015612aaf575073ffffffffffffffffffffffffffffffffffffffff82165f908152601e602052604090205460ff16155b15612be557600654811115612b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178206275792e0000000000000000000000000000000000000000000000006064820152608401610c02565b60085473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054612b789083613d7e565b1115612be0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c02565b612dce565b73ffffffffffffffffffffffffffffffffffffffff82165f908152601f602052604090205460ff168015612c3e575073ffffffffffffffffffffffffffffffffffffffff83165f908152601e602052604090205460ff16155b15612cd557600754811115612be0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61782073656c6c2e000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff82165f908152601e602052604090205460ff16158015612d2f575073ffffffffffffffffffffffffffffffffffffffff83165f908152601e602052604090205460ff16155b15612dce5760085473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054612d669083613d7e565b1115612dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c02565b305f90815260208190526040902054600a5481108015908190612df9575060115462010000900460ff165b8015612e08575060095460ff16155b8015612e39575073ffffffffffffffffffffffffffffffffffffffff85165f908152601f602052604090205460ff16155b8015612e6a575073ffffffffffffffffffffffffffffffffffffffff85165f908152601d602052604090205460ff16155b8015612e9b575073ffffffffffffffffffffffffffffffffffffffff84165f908152601d602052604090205460ff16155b15612efc57600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055612ed361322c565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b73ffffffffffffffffffffffffffffffffffffffff85165f908152601d602052604090205460019060ff1680612f56575073ffffffffffffffffffffffffffffffffffffffff85165f908152601d602052604090205460ff165b15612f5e57505f5b5f80828015612f6e57505f600f54115b8015612f7b5750600f5443115b156131775773ffffffffffffffffffffffffffffffffffffffff87165f908152601f602052604090205460ff168015612fb557505f601654115b1561306a57606460165487612fca9190613d2f565b612fd49190613d46565b915060165460185483612fe79190613d2f565b612ff19190613d46565b601b5f8282546130019190613d7e565b90915550506016546017546130169084613d2f565b6130209190613d46565b601a5f8282546130309190613d7e565b90915550506016546019546130459084613d2f565b61304f9190613d46565b601c5f82825461305f9190613d7e565b9091555061314f9050565b73ffffffffffffffffffffffffffffffffffffffff88165f908152601f602052604090205460ff16801561309f57505f601254115b1561314f576064601254876130b49190613d2f565b6130be9190613d46565b9150601254601454836130d19190613d2f565b6130db9190613d46565b601b5f8282546130eb9190613d7e565b90915550506012546013546131009084613d2f565b61310a9190613d46565b601a5f82825461311a9190613d7e565b909155505060125460155461312f9084613d2f565b6131399190613d46565b601c5f8282546131499190613d7e565b90915550505b811561316057613160883084613446565b61316a8183613d7e565b6131749087613dc3565b95505b613182888888613446565b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff82165f908152601f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215151790556131e482826136f8565b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b305f9081526020819052604081205490505f601c54601a54601b546132519190613d7e565b61325b9190613d7e565b9050811580613268575080155b15613271575050565b600a5461327f906005613d2f565b82111561329757600a54613294906005613d2f565b91505b5f80600283601b54866132aa9190613d2f565b6132b49190613d46565b6132be9190613d46565b90506132d26132cd8286613dc3565b613785565b601b54479081905f906132e790600290613d46565b6132f19087613dc3565b601a546132fe9085613d2f565b6133089190613d46565b90505f6002601b5461331a9190613d46565b6133249088613dc3565b601c546133319086613d2f565b61333b9190613d46565b90506133478183613d7e565b6133519084613dc3565b5f601b819055601a819055601c559250841580159061336f57505f83115b1561337e5761337e85846139a2565b600c5460405173ffffffffffffffffffffffffffffffffffffffff9091169082905f81818185875af1925050503d805f81146133d5576040519150601f19603f3d011682016040523d82523d5f602084013e6133da565b606091505b5050600b5460405191975073ffffffffffffffffffffffffffffffffffffffff169047905f81818185875af1925050503d805f8114613434576040519150601f19603f3d011682016040523d82523d5f602084013e613439565b606091505b5050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166134e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff821661358c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015613641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260208190526040808220858503905591851681529081208054849290613684908490613d7e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136ea91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff82165f818152601e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106137b8576137b8613dd6565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561385b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387f9190613e03565b8160018151811061389257613892613dd6565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138f7307f00000000000000000000000000000000000000000000000000000000000000008461250a565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906139719085905f90869030904290600401613e1e565b5f604051808303815f87803b158015613988575f80fd5b505af115801561399a573d5f803e3d5ffd5b505050505050565b6139cd307f00000000000000000000000000000000000000000000000000000000000000008461250a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a2d60055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613ab8573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613add9190613ea9565b5050505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114613b58575f80fd5b50565b5f8060408385031215613b6c575f80fd5b8235613b7781613b37565b946020939093013593505050565b5f60208284031215613b95575f80fd5b8135613ba081613b37565b9392505050565b5f805f60608486031215613bb9575f80fd5b8335613bc481613b37565b92506020840135613bd481613b37565b929592945050506040919091013590565b5f60208284031215613bf5575f80fd5b5035919050565b8015158114613b58575f80fd5b5f8060408385031215613c1a575f80fd5b8235613b7781613bfc565b5f8060408385031215613c36575f80fd5b8235613c4181613b37565b91506020830135613c5181613bfc565b809150509250929050565b5f805f60608486031215613c6e575f80fd5b505081359360208301359350604090920135919050565b5f8060408385031215613c96575f80fd5b8235613ca181613b37565b91506020830135613c5181613b37565b600181811c90821680613cc557607f821691505b602082108103613cfc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610b3457610b34613d02565b5f82613d79577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820180821115610b3457610b34613d02565b5f60208284031215613da1575f80fd5b5051919050565b5f60208284031215613db8575f80fd5b8151613ba081613bfc565b81810381811115610b3457610b34613d02565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215613e13575f80fd5b8151613ba081613b37565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015613e7b57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613e49565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b5f805f60608486031215613ebb575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122075fb27cbda64e34a70c76bb9e07082abe335ddd7ea93fbf1cd180226cee2e25a64736f6c634300081900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x608060405260043610610369575f3560e01c80638366e79a116101c8578063c0246668116100fd578063e2f456051161009d578063f2fde38b1161006d578063f2fde38b14610a37578063f5648a4f14610a56578063f637434214610a6a578063fabb0b4f14610a7f575f80fd5b8063e2f45605146109e3578063ee40166e146109f8578063ef8700e514610a0d578063f11a24d314610a22575f80fd5b8063d1a0c946116100d8578063d1a0c94614610932578063d85ba0631461095e578063dc3f0d0f14610973578063dd62ed3e14610992575f80fd5b8063c0246668146108d5578063c17b5b8c146108f4578063c18bc19514610913575f80fd5b80639d0014b111610168578063aa4bde2811610143578063aa4bde281461085f578063b204141114610874578063b62496f514610889578063bbc0c742146108b7575f80fd5b80639d0014b114610802578063a457c2d714610821578063a9059cbb14610840575f80fd5b8063906e9dd0116101a3578063906e9dd01461079b57806392136913146107ba57806395d89b41146107cf5780639a7a23d6146107e3575f80fd5b80638366e79a1461073d57806388e765ff1461075c5780638da5cb5b14610771575f80fd5b806349bd5a5e1161029e57806370a082311161023e5780637571336a116102195780637571336a146106be5780637bce5a04146106dd5780637ff3366f146106f25780638095d5641461071e575f80fd5b806370a0823114610655578063715018a614610696578063751039fc146106aa575f80fd5b80635e83ae76116102795780635e83ae76146105ed57806366d602ae1461060c5780636a486a8e146106215780636ddd171314610636575f80fd5b806349bd5a5e146105755780634a62bb65146105a85780635b5c251f146105c1575f80fd5b80631f3fed8f116103095780632be32b61116102e45780632be32b61146104f0578063313ce5671461050f5780633936e8b91461052a5780633950935114610556575f80fd5b80631f3fed8f1461049b57806323b872dd146104b057806329b1c15c146104cf575f80fd5b80631694505e116103445780631694505e146103fb57806318160ddd1461045357806318a94cf1146104715780631a8145bb14610486575f80fd5b806306fdde0314610374578063095ea7b31461039e57806310d5de53146103cd575f80fd5b3661037057005b5f80fd5b34801561037f575f80fd5b50610388610a94565b6040516103959190613ae4565b60405180910390f35b3480156103a9575f80fd5b506103bd6103b8366004613b5b565b610b24565b6040519015158152602001610395565b3480156103d8575f80fd5b506103bd6103e7366004613b85565b601e6020525f908152604090205460ff1681565b348015610406575f80fd5b5061042e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610395565b34801561045e575f80fd5b506002545b604051908152602001610395565b34801561047c575f80fd5b5061046360175481565b348015610491575f80fd5b50610463601b5481565b3480156104a6575f80fd5b50610463601c5481565b3480156104bb575f80fd5b506103bd6104ca366004613ba7565b610b3a565b3480156104da575f80fd5b506104ee6104e9366004613b85565b610c23565b005b3480156104fb575f80fd5b506104ee61050a366004613be5565b610db4565b34801561051a575f80fd5b5060405160128152602001610395565b348015610535575f80fd5b50600c5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610561575f80fd5b506103bd610570366004613b5b565b610f46565b348015610580575f80fd5b5061042e7f000000000000000000000000cbe7974d419860bdf0b767b3cec530b42e71577981565b3480156105b3575f80fd5b506011546103bd9060ff1681565b3480156105cc575f80fd5b50600d5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105f8575f80fd5b506104ee610607366004613c09565b610f8e565b348015610617575f80fd5b5061046360075481565b34801561062c575f80fd5b5061046360165481565b348015610641575f80fd5b506011546103bd9062010000900460ff1681565b348015610660575f80fd5b5061046361066f366004613b85565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b3480156106a1575f80fd5b506104ee611157565b3480156106b5575f80fd5b506104ee611246565b3480156106c9575f80fd5b506104ee6106d8366004613c25565b611319565b3480156106e8575f80fd5b5061046360155481565b3480156106fd575f80fd5b50600e5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610729575f80fd5b506104ee610738366004613c5c565b6114cf565b348015610748575f80fd5b506103bd610757366004613c85565b6115e8565b348015610767575f80fd5b5061046360065481565b34801561077c575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661042e565b3480156107a6575f80fd5b506104ee6107b5366004613b85565b61188d565b3480156107c5575f80fd5b5061046360195481565b3480156107da575f80fd5b50610388611a1f565b3480156107ee575f80fd5b506104ee6107fd366004613c25565b611a2e565b34801561080d575f80fd5b506104ee61081c366004613be5565b611b94565b34801561082c575f80fd5b506103bd61083b366004613b5b565b611c52565b34801561084b575f80fd5b506103bd61085a366004613b5b565b611d29565b34801561086a575f80fd5b5061046360085481565b34801561087f575f80fd5b5061046360135481565b348015610894575f80fd5b506103bd6108a3366004613b85565b601f6020525f908152604090205460ff1681565b3480156108c2575f80fd5b506011546103bd90610100900460ff1681565b3480156108e0575f80fd5b506104ee6108ef366004613c25565b611d35565b3480156108ff575f80fd5b506104ee61090e366004613c5c565b611e3f565b34801561091e575f80fd5b506104ee61092d366004613be5565b611f53565b34801561093d575f80fd5b50600b5461042e9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610969575f80fd5b5061046360125481565b34801561097e575f80fd5b506104ee61098d366004613be5565b6120de565b34801561099d575f80fd5b506104636109ac366004613c85565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156109ee575f80fd5b50610463600a5481565b348015610a03575f80fd5b50610463600f5481565b348015610a18575f80fd5b50610463601a5481565b348015610a2d575f80fd5b5061046360145481565b348015610a42575f80fd5b506104ee610a51366004613b85565b612269565b348015610a61575f80fd5b506104ee61241a565b348015610a75575f80fd5b5061046360185481565b348015610a8a575f80fd5b5061046360105481565b606060038054610aa390613cb1565b80601f0160208091040260200160405190810160405280929190818152602001828054610acf90613cb1565b8015610b1a5780601f10610af157610100808354040283529160200191610b1a565b820191905f5260205f20905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b5f610b3033848461250a565b5060015b92915050565b5f610b468484846126bc565b73ffffffffffffffffffffffffffffffffffffffff84165f90815260016020908152604080832033845290915290205482811015610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610c18853385840361250a565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ca4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff8116610d47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f5f446576656c6f706d656e744164647265737320616464726573732063616e6e60448201527f6f742062652030000000000000000000000000000000000000000000000000006064820152608401610c02565b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517e9301a7a046a65d0304006b0bfee72798e7e8c804b21a3d33e0838d87680e9d905f90a250565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b670de0b6b3a76400006103e8610e4a60025490565b610e55906001613d2f565b610e5f9190613d46565b610e699190613d46565b811015610ef8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060448201527f7468616e20302e312500000000000000000000000000000000000000000000006064820152608401610c02565b610f0a81670de0b6b3a7640000613d2f565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610b30918590610f89908690613d7e565b61250a565b60055473ffffffffffffffffffffffffffffffffffffffff16331461100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b601154610100900460ff1615611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420726520656e61626c652074726164696e6700000000000000006044820152606401610c02565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff841515610100908102919091167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff909216919091176201000017918290556040517fe185248899f361d51a48833938ab33493ebd7272d195abf7f51a833ea81388129261112592900460ff169084909115158252602082015260400190565b60405180910390a1601154610100900460ff1680156111445750600f54155b156111535743600f5560108190555b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b6005546040515f9173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b60055473ffffffffffffffffffffffffffffffffffffffff16331461139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b8061147a577f000000000000000000000000cbe7974d419860bdf0b767b3cec530b42e71577973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201527f6d61782074786e000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff919091165f908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b6013839055601482905560158190558061156a8385613d7e565b6115749190613d7e565b6012819055600510156115e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c02565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff8316611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c02565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c02565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015611776573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061179a9190613d91565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015611810573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118349190613da8565b6040805173ffffffffffffffffffffffffffffffffffffffff87168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff81166119b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f5f4d61726b6574696e674164647265737320616464726573732063616e6e6f7460448201527f20626520300000000000000000000000000000000000000000000000000000006064820152608401610c02565b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fd1e7d6a3390dd5008bd1c57798817b9f806e4c417264e7d3d67e42e784dc24a9905f90a250565b606060048054610aa390613cb1565b60055473ffffffffffffffffffffffffffffffffffffffff163314611aaf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b7f000000000000000000000000cbe7974d419860bdf0b767b3cec530b42e71577973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c02565b611153828261318c565b600b5473ffffffffffffffffffffffffffffffffffffffff163314611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c02565b611c4c81670de0b6b3a7640000613d2f565b600a5550565b335f90815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611d12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c02565b611d1f338585840361250a565b5060019392505050565b5f610b303384846126bc565b60055473ffffffffffffffffffffffffffffffffffffffff163314611db6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff82165f818152601d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611ec0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b60178390556018829055601981905580611eda8385613d7e565b611ee49190613d7e565b6016819055600510156115e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f46656573206d75737420626520352520206f72206c65737300000000000000006044820152606401610c02565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b670de0b6b3a76400006103e8611fe960025490565b611ff4906003613d2f565b611ffe9190613d46565b6120089190613d46565b811015612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201527f6572207468616e20302e332500000000000000000000000000000000000000006064820152608401610c02565b6120a981670de0b6b3a7640000613d2f565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610f3b565b60055473ffffffffffffffffffffffffffffffffffffffff16331461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b670de0b6b3a76400006103e861217460025490565b61217f906001613d2f565b6121899190613d46565b6121939190613d46565b811015612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260448201527f207468616e20302e3125000000000000000000000000000000000000000000006064820152608401610c02565b61223481670de0b6b3a7640000613d2f565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610f3b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff811661238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c02565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b545f9073ffffffffffffffffffffffffffffffffffffffff1633146124c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6f6e6c7920446576656c6f706d656e74416464726573732063616e207769746860448201527f64726177000000000000000000000000000000000000000000000000000000006064820152608401610c02565b604051339047905f81818185875af1925050503d805f81146124ff576040519150601f19603f3d011682016040523d82523d5f602084013e612504565b606091505b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166125ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff821661264f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff8216612802576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c02565b5f811161286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610c02565b60115460ff1615612dce5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906128bc575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156128dd575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612901575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b15612dce57601154610100900460ff16612a565773ffffffffffffffffffffffffffffffffffffffff83165f908152601e602052604090205460ff168061296c575073ffffffffffffffffffffffffffffffffffffffff82165f908152601e602052604090205460ff165b6129d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610c02565b60055473ffffffffffffffffffffffffffffffffffffffff848116911614612a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f7420656e61626c6564000000000000000000006044820152606401610c02565b73ffffffffffffffffffffffffffffffffffffffff83165f908152601f602052604090205460ff168015612aaf575073ffffffffffffffffffffffffffffffffffffffff82165f908152601e602052604090205460ff16155b15612be557600654811115612b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d6178206275792e0000000000000000000000000000000000000000000000006064820152608401610c02565b60085473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054612b789083613d7e565b1115612be0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c02565b612dce565b73ffffffffffffffffffffffffffffffffffffffff82165f908152601f602052604090205460ff168015612c3e575073ffffffffffffffffffffffffffffffffffffffff83165f908152601e602052604090205460ff16155b15612cd557600754811115612be0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61782073656c6c2e000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff82165f908152601e602052604090205460ff16158015612d2f575073ffffffffffffffffffffffffffffffffffffffff83165f908152601e602052604090205460ff16155b15612dce5760085473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054612d669083613d7e565b1115612dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610c02565b305f90815260208190526040902054600a5481108015908190612df9575060115462010000900460ff165b8015612e08575060095460ff16155b8015612e39575073ffffffffffffffffffffffffffffffffffffffff85165f908152601f602052604090205460ff16155b8015612e6a575073ffffffffffffffffffffffffffffffffffffffff85165f908152601d602052604090205460ff16155b8015612e9b575073ffffffffffffffffffffffffffffffffffffffff84165f908152601d602052604090205460ff16155b15612efc57600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055612ed361322c565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b73ffffffffffffffffffffffffffffffffffffffff85165f908152601d602052604090205460019060ff1680612f56575073ffffffffffffffffffffffffffffffffffffffff85165f908152601d602052604090205460ff165b15612f5e57505f5b5f80828015612f6e57505f600f54115b8015612f7b5750600f5443115b156131775773ffffffffffffffffffffffffffffffffffffffff87165f908152601f602052604090205460ff168015612fb557505f601654115b1561306a57606460165487612fca9190613d2f565b612fd49190613d46565b915060165460185483612fe79190613d2f565b612ff19190613d46565b601b5f8282546130019190613d7e565b90915550506016546017546130169084613d2f565b6130209190613d46565b601a5f8282546130309190613d7e565b90915550506016546019546130459084613d2f565b61304f9190613d46565b601c5f82825461305f9190613d7e565b9091555061314f9050565b73ffffffffffffffffffffffffffffffffffffffff88165f908152601f602052604090205460ff16801561309f57505f601254115b1561314f576064601254876130b49190613d2f565b6130be9190613d46565b9150601254601454836130d19190613d2f565b6130db9190613d46565b601b5f8282546130eb9190613d7e565b90915550506012546013546131009084613d2f565b61310a9190613d46565b601a5f82825461311a9190613d7e565b909155505060125460155461312f9084613d2f565b6131399190613d46565b601c5f8282546131499190613d7e565b90915550505b811561316057613160883084613446565b61316a8183613d7e565b6131749087613dc3565b95505b613182888888613446565b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff82165f908152601f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215151790556131e482826136f8565b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b305f9081526020819052604081205490505f601c54601a54601b546132519190613d7e565b61325b9190613d7e565b9050811580613268575080155b15613271575050565b600a5461327f906005613d2f565b82111561329757600a54613294906005613d2f565b91505b5f80600283601b54866132aa9190613d2f565b6132b49190613d46565b6132be9190613d46565b90506132d26132cd8286613dc3565b613785565b601b54479081905f906132e790600290613d46565b6132f19087613dc3565b601a546132fe9085613d2f565b6133089190613d46565b90505f6002601b5461331a9190613d46565b6133249088613dc3565b601c546133319086613d2f565b61333b9190613d46565b90506133478183613d7e565b6133519084613dc3565b5f601b819055601a819055601c559250841580159061336f57505f83115b1561337e5761337e85846139a2565b600c5460405173ffffffffffffffffffffffffffffffffffffffff9091169082905f81818185875af1925050503d805f81146133d5576040519150601f19603f3d011682016040523d82523d5f602084013e6133da565b606091505b5050600b5460405191975073ffffffffffffffffffffffffffffffffffffffff169047905f81818185875af1925050503d805f8114613434576040519150601f19603f3d011682016040523d82523d5f602084013e613439565b606091505b5050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166134e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff821661358c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015613641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c02565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260208190526040808220858503905591851681529081208054849290613684908490613d7e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136ea91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff82165f818152601e602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106137b8576137b8613dd6565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561385b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387f9190613e03565b8160018151811061389257613892613dd6565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138f7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461250a565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906139719085905f90869030904290600401613e1e565b5f604051808303815f87803b158015613988575f80fd5b505af115801561399a573d5f803e3d5ffd5b505050505050565b6139cd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461250a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a2d60055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613ab8573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613add9190613ea9565b5050505050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114613b58575f80fd5b50565b5f8060408385031215613b6c575f80fd5b8235613b7781613b37565b946020939093013593505050565b5f60208284031215613b95575f80fd5b8135613ba081613b37565b9392505050565b5f805f60608486031215613bb9575f80fd5b8335613bc481613b37565b92506020840135613bd481613b37565b929592945050506040919091013590565b5f60208284031215613bf5575f80fd5b5035919050565b8015158114613b58575f80fd5b5f8060408385031215613c1a575f80fd5b8235613b7781613bfc565b5f8060408385031215613c36575f80fd5b8235613c4181613b37565b91506020830135613c5181613bfc565b809150509250929050565b5f805f60608486031215613c6e575f80fd5b505081359360208301359350604090920135919050565b5f8060408385031215613c96575f80fd5b8235613ca181613b37565b91506020830135613c5181613b37565b600181811c90821680613cc557607f821691505b602082108103613cfc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610b3457610b34613d02565b5f82613d79577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820180821115610b3457610b34613d02565b5f60208284031215613da1575f80fd5b5051919050565b5f60208284031215613db8575f80fd5b8151613ba081613bfc565b81810381811115610b3457610b34613d02565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60208284031215613e13575f80fd5b8151613ba081613b37565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015613e7b57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613e49565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b5f805f60608486031215613ebb575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122075fb27cbda64e34a70c76bb9e07082abe335ddd7ea93fbf1cd180226cee2e25a64736f6c63430008190033

Deployed Bytecode Sourcemap

8316:15397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3034:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3948:169;;;;;;;;;;-1:-1:-1;3948:169:0;;;;;:::i;:::-;;:::i;:::-;;;1140:14:1;;1133:22;1115:41;;1103:2;1088:18;3948:169:0;975:187:1;9557:64:0;;;;;;;;;;-1:-1:-1;9557:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8464:43;;;;;;;;;;;;;;;;;;1613:42:1;1601:55;;;1583:74;;1571:2;1556:18;8464:43:0;1419:244:1;3355:108:0;;;;;;;;;;-1:-1:-1;3443:12:0;;3355:108;;;1814:25:1;;;1802:2;1787:18;3355:108:0;1668: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;2638:36:1;;2626:2;2611:18;3254:93:0;2496: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;;;;;;;5098:2:1;4402:79:0;;;5080:21:1;5137:2;5117:18;;;5110:30;5176:34;5156:18;;;5149:62;5247:10;5227:18;;;5220:38;5275: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305:356:1;6980:67:0;21268:33:::1;::::0;::::1;21260:85;;;::::0;::::1;::::0;;5868:2:1;21260:85:0::1;::::0;::::1;5850:21:1::0;5907:2;5887:18;;;5880:30;5946:34;5926:18;;;5919:62;6017:9;5997:18;;;5990:37;6044:19;;21260:85:0::1;5666: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305: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;;6917:2:1;12716:95:0::1;::::0;::::1;6899:21:1::0;6956:2;6936:18;;;6929:30;6995:34;6975:18;;;6968:62;7066:11;7046:18;;;7039:39;7095:19;;12716:95:0::1;6715:405:1::0;12716:95:0::1;12837:17;:6:::0;12847::::1;12837:17;:::i;:::-;12822:12;:32:::0;;;12870:33:::1;::::0;1814:25:1;;;12870:33:0::1;::::0;1802:2:1;1787: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305:356:1;6980:67:0;23378:13:::1;::::0;::::1;::::0;::::1;;;23377:14;23369:51;;;::::0;::::1;::::0;;7457:2:1;23369:51:0::1;::::0;::::1;7439:21:1::0;7496:2;7476:18;;;7469:30;7535:26;7515:18;;;7508:54;7579:18;;23369:51:0::1;7255: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;;7801:14:1;;7794:22;7776:41;;7848:2;7833:18;;7826:34;7764:2;7749:18;;7608: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305:356:1;6980:67:0;13681:4:::1;13677:111;;13719:13;13709:23;;:6;:23;;::::0;13701:75:::1;;;::::0;::::1;::::0;;8073:2:1;13701:75:0::1;::::0;::::1;8055:21:1::0;8112:2;8092:18;;;8085:30;8151:34;8131:18;;;8124:62;8222:9;8202:18;;;8195:37;8249:19;;13701:75:0::1;7871: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305: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;;8481:2:1;15469:54:0::1;::::0;::::1;8463:21:1::0;8520:2;8500:18;;;8493:30;8559:26;8539:18;;;8532:54;8603:18;;15469:54:0::1;8279:348:1::0;15469:54:0::1;15136:395:::0;;;:::o;14363:458::-;14438:10;14469:20;;;14461:59;;;;;;;8834:2:1;14461:59:0;;;8816:21:1;8873:2;8853:18;;;8846:30;8912:28;8892:18;;;8885:56;8958:18;;14461:59:0;8632:350:1;14461:59:0;14551:18;;;;14539:10;:30;14531:78;;;;;;;9189:2:1;14531:78:0;;;9171:21:1;9228:2;9208:18;;;9201:30;9267:34;9247:18;;;9240:62;9338:6;9318:18;;;9311:34;9362:19;;14531:78:0;8987:400:1;14531:78:0;14647:39;;;;;14680:4;14647:39;;;1583:74:1;14620:24:0;;14647;;;;;;1556:18:1;;14647:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14705:46;;;;;:23;9773:55:1;;;14705:46:0;;;9755:74:1;9845:18;;;9838:34;;;14620:66:0;;-1:-1:-1;14705:23:0;;;;;;9728:18:1;;14705:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14767;;;9785:42:1;9773:55;;9755:74;;9860:2;9845:18;;9838:34;;;14697:54:0;;-1:-1:-1;14767:46:0;;9728:18:1;14767:46:0;;;;;;;14450:371;14363:458;;;;:::o;21483:289::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305:356:1;6980:67:0;21577:31:::1;::::0;::::1;21569:81;;;::::0;::::1;::::0;;10335:2:1;21569:81:0::1;::::0;::::1;10317:21:1::0;10374:2;10354:18;;;10347:30;10413:34;10393:18;;;10386:62;10484:7;10464:18;;;10457:35;10509:19;;21569:81:0::1;10133: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305:356:1;6980:67:0;20247:13:::1;20239:21;;:4;:21;;::::0;20231:91:::1;;;::::0;::::1;::::0;;10741:2:1;20231:91:0::1;::::0;::::1;10723:21:1::0;10780:2;10760:18;;;10753:30;10819:34;10799:18;;;10792:62;10890:27;10870:18;;;10863:55;10935:19;;20231:91:0::1;10539: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;;;;;;;9189:2:1;14216:78:0;;;9171:21:1;9228:2;9208:18;;;9201:30;9267:34;9247:18;;;9240:62;9338:6;9318:18;;;9311:34;9362:19;;14216:78:0;8987: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;;;;;;;11167:2:1;5018:85:0;;;11149:21:1;11206:2;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;11316:7;11296:18;;;11289:35;11341:19;;5018:85:0;10965: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;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305:356:1;6980:67:0;16036:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;16091:34;;1115:41:1;;;16091:34:0::1;::::0;1088:18:1;16091:34:0::1;;;;;;;15951:182:::0;;:::o;15539:404::-;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305: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;;8481:2:1;15880:55:0::1;::::0;::::1;8463:21:1::0;8520:2;8500:18;;;8493:30;8559:26;8539:18;;;8532:54;8603:18;;15880:55:0::1;8279:348:1::0;13860:284:0;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305: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;;11573:2:1;13937:98:0::1;::::0;::::1;11555:21:1::0;11612:2;11592:18;;;11585:30;11651:34;11631:18;;;11624:62;11722:14;11702:18;;;11695:42;11754:19;;13937:98:0::1;11371:408:1::0;13937:98:0::1;14064:17;:6:::0;14074::::1;14064:17;:::i;:::-;14046:15;:35:::0;;;14097:39:::1;::::0;1814:25:1;;;14097:39:0::1;::::0;1802:2:1;1787:18;14097:39:0::1;1668:177:1::0;12919:274:0;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305: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;;11986:2:1;12994:96:0::1;::::0;::::1;11968:21:1::0;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;12135:12;12115:18;;;12108:40;12165:19;;12994:96:0::1;11784:406:1::0;12994:96:0::1;13117:17;:6:::0;13127::::1;13117:17;:::i;:::-;13101:13;:33:::0;;;13150:35:::1;::::0;1814:25:1;;;13150:35:0::1;::::0;1802:2:1;1787:18;13150:35:0::1;1668:177:1::0;7233:244:0;6988:6;;:22;:6;1553:10;6988:22;6980:67;;;;;;;5507:2:1;6980:67:0;;;5489:21:1;;;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;5637:18;;6980:67:0;5305:356:1;6980:67:0;7322:22:::1;::::0;::::1;7314:73;;;::::0;::::1;::::0;;12397:2:1;7314:73:0::1;::::0;::::1;12379:21:1::0;12436:2;12416:18;;;12409:30;12475:34;12455:18;;;12448:62;12546:8;12526:18;;;12519:36;12572:19;;7314:73:0::1;12195: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;;;;;;;9189:2:1;14960:78:0;;;9171:21:1;9228:2;9208:18;;;9201:30;9267:34;9247:18;;;9240:62;9338:6;9318:18;;;9311:34;9362:19;;14960:78:0;8987: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;;;;;;;13014:2:1;6282:68:0;;;12996:21:1;13053:2;13033:18;;;13026:30;13092:34;13072:18;;;13065:62;13163:6;13143:18;;;13136:34;13187:19;;6282:68:0;12812:400:1;6282:68:0;6369:21;;;6361:68;;;;;;;13419:2:1;6361:68:0;;;13401:21:1;13458:2;13438:18;;;13431:30;13497:34;13477:18;;;13470:62;13568:4;13548:18;;;13541:32;13590:19;;6361:68:0;13217:398:1;6361:68:0;6442:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;6494:32;;1814:25:1;;;6494:32:0;;1787:18:1;6494:32:0;;;;;;;6154:380;;;:::o;16143:3388::-;16243:18;;;16235:68;;;;;;;13822:2:1;16235:68:0;;;13804:21:1;13861:2;13841:18;;;13834:30;13900:34;13880:18;;;13873:62;13971:7;13951:18;;;13944:35;13996:19;;16235:68:0;13620:401:1;16235:68:0;16322:16;;;16314:64;;;;;;;14228:2:1;16314:64:0;;;14210:21:1;14267:2;14247:18;;;14240:30;14306:34;14286:18;;;14279:62;14377:5;14357:18;;;14350:33;14400:19;;16314:64:0;14026:399:1;16314:64:0;16406:1;16397:6;:10;16389:52;;;;;;;14632:2:1;16389:52:0;;;14614:21:1;14671:2;14651:18;;;14644:30;14710:31;14690:18;;;14683:59;14759:18;;16389:52:0;14430: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;;;;;;;14990:2:1;16631:111:0;;;14972:21:1;15029:2;15009:18;;;15002:30;15068:24;15048:18;;;15041:52;15110:18;;16631:111:0;14788:346:1;16631:111:0;6926:6;;;16773:15;;;6926:6;;16773:15;16765:50;;;;;;;15341:2:1;16765:50:0;;;15323:21:1;15380:2;15360:18;;;15353:30;15419:24;15399:18;;;15392:52;15461:18;;16765:50:0;15139: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;;;;;;;15692:2:1;16981:75:0;;;15674:21:1;15731:2;15711:18;;;15704:30;15770:34;15750:18;;;15743:62;15841:10;15821:18;;;15814:38;15869:19;;16981:75:0;15490:404:1;16981:75:0;17113:15;;3572:18;;;3545:7;3572:18;;;;;;;;;;;17087:22;;:6;:22;:::i;:::-;:41;;17079:78;;;;;;;16101:2:1;17079:78:0;;;16083:21:1;16140:2;16120:18;;;16113:30;16179:26;16159:18;;;16152:54;16223:18;;17079:78:0;15899: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;;;;;;;16454:2:1;17329:78:0;;;16436:21:1;16493:2;16473:18;;;16466:30;16532:34;16512:18;;;16505:62;16603:12;16583:18;;;16576:40;16633:19;;17329:78:0;16252: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;;;;;;;16101:2:1;17556:78:0;;;16083:21:1;16140:2;16120:18;;;16113:30;16179:26;16159:18;;;16152:54;16223:18;;17556:78:0;15899: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;;;;;;;13822:2:1;5377:70:0;;;13804:21:1;13861:2;13841:18;;;13834:30;13900:34;13880:18;;;13873:62;13971:7;13951:18;;;13944:35;13996:19;;5377:70:0;13620:401:1;5377:70:0;5466:23;;;5458:71;;;;;;;14228:2:1;5458:71:0;;;14210:21:1;14267:2;14247:18;;;14240:30;14306:34;14286:18;;;14279:62;14377:5;14357:18;;;14350:33;14400:19;;5458:71:0;14026:399:1;5458:71:0;5566:17;;;5542:21;5566:17;;;;;;;;;;;5602:23;;;;5594:74;;;;;;;16998:2:1;5594:74:0;;;16980:21:1;17037:2;17017:18;;;17010:30;17076:34;17056:18;;;17049:62;17147:8;17127:18;;;17120:36;17173:19;;5594:74:0;16796: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;;;;1814:25:1;;1802:2;1787:18;;1668:177;5804:35:0;;;;;;;;5366:481;5245:602;;;:::o;13370:207::-;13458:39;;;;;;;:31;:39;;;;;;;;;:52;;;;;;;;;;;;;13526:43;;17371:74:1;;;17461:18;;;17454:50;13526:43:0;;17344: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;;;;;;;;;;19493:42:1;19562:15;;;20893:261:0;;;19544:34:1;19594:18;;;19587:34;;;;19637:18;;;19630:34;;;;19680:18;;;19673:34;19744:15;;;19723:19;;;19716:44;21128:15:0;19776:19:1;;;19769:35;19455:19;;20893:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;20640:522;;:::o;14:477:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;482:2;412:66;407:2;399:6;395:15;391:88;380:9;376:104;372:113;364:121;;;14:477;;;;:::o;496:154::-;582:42;575:5;571:54;564:5;561:65;551:93;;640:1;637;630:12;551:93;496:154;:::o;655:315::-;723:6;731;784:2;772:9;763:7;759:23;755:32;752:52;;;800:1;797;790:12;752:52;839:9;826:23;858:31;883:5;858:31;:::i;:::-;908:5;960:2;945:18;;;;932:32;;-1:-1:-1;;;655:315:1:o;1167:247::-;1226:6;1279:2;1267:9;1258:7;1254:23;1250:32;1247:52;;;1295:1;1292;1285:12;1247:52;1334:9;1321:23;1353:31;1378:5;1353:31;:::i;:::-;1403:5;1167:247;-1:-1:-1;;;1167:247:1:o;1850:456::-;1927:6;1935;1943;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;2051:9;2038:23;2070:31;2095:5;2070:31;:::i;:::-;2120:5;-1:-1:-1;2177:2:1;2162:18;;2149:32;2190:33;2149:32;2190:33;:::i;:::-;1850:456;;2242:7;;-1:-1:-1;;;2296:2:1;2281:18;;;;2268:32;;1850:456::o;2311:180::-;2370:6;2423:2;2411:9;2402:7;2398:23;2394:32;2391:52;;;2439:1;2436;2429:12;2391:52;-1:-1:-1;2462:23:1;;2311:180;-1:-1:-1;2311:180:1:o;2916:118::-;3002:5;2995:13;2988:21;2981:5;2978:32;2968:60;;3024:1;3021;3014:12;3039:309;3104:6;3112;3165:2;3153:9;3144:7;3140:23;3136:32;3133:52;;;3181:1;3178;3171:12;3133:52;3220:9;3207:23;3239:28;3261:5;3239:28;:::i;3353:382::-;3418:6;3426;3479:2;3467:9;3458:7;3454:23;3450:32;3447:52;;;3495:1;3492;3485:12;3447:52;3534:9;3521:23;3553:31;3578:5;3553:31;:::i;:::-;3603:5;-1:-1:-1;3660:2:1;3645:18;;3632:32;3673:30;3632:32;3673:30;:::i;:::-;3722:7;3712:17;;;3353:382;;;;;:::o;3740:316::-;3817:6;3825;3833;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;-1:-1:-1;;3925:23:1;;;3995:2;3980:18;;3967:32;;-1:-1:-1;4046:2:1;4031:18;;;4018:32;;3740:316;-1:-1:-1;3740:316:1:o;4061:388::-;4129:6;4137;4190:2;4178:9;4169:7;4165:23;4161:32;4158:52;;;4206:1;4203;4196:12;4158:52;4245:9;4232:23;4264:31;4289:5;4264:31;:::i;:::-;4314:5;-1:-1:-1;4371:2:1;4356:18;;4343:32;4384:33;4343:32;4384:33;:::i;4454:437::-;4533:1;4529:12;;;;4576;;;4597:61;;4651:4;4643:6;4639:17;4629:27;;4597:61;4704:2;4696:6;4693:14;4673:18;4670:38;4667:218;;4741:77;4738:1;4731:88;4842:4;4839:1;4832:15;4870:4;4867:1;4860:15;4667:218;;4454:437;;;:::o;6074:184::-;6126:77;6123:1;6116:88;6223:4;6220:1;6213:15;6247:4;6244:1;6237:15;6263:168;6336:9;;;6367;;6384:15;;;6378:22;;6364:37;6354:71;;6405:18;;:::i;6436:274::-;6476:1;6502;6492:189;;6537:77;6534:1;6527:88;6638:4;6635:1;6628:15;6666:4;6663:1;6656:15;6492:189;-1:-1:-1;6695:9:1;;6436:274::o;7125:125::-;7190:9;;;7211:10;;;7208:36;;;7224:18;;:::i;9392:184::-;9462:6;9515:2;9503:9;9494:7;9490:23;9486:32;9483:52;;;9531:1;9528;9521:12;9483:52;-1:-1:-1;9554:16:1;;9392:184;-1:-1:-1;9392:184:1:o;9883:245::-;9950:6;10003:2;9991:9;9982:7;9978:23;9974:32;9971:52;;;10019:1;10016;10009:12;9971:52;10051:9;10045:16;10070:28;10092:5;10070:28;:::i;16663:128::-;16730:9;;;16751:11;;;16748:37;;;16765:18;;:::i;17704:184::-;17756:77;17753:1;17746:88;17853:4;17850:1;17843:15;17877:4;17874:1;17867:15;17893:251;17963:6;18016:2;18004:9;17995:7;17991:23;17987:32;17984:52;;;18032:1;18029;18022:12;17984:52;18064:9;18058:16;18083:31;18108:5;18083:31;:::i;18149:1026::-;18411:4;18459:3;18448:9;18444:19;18490:6;18479:9;18472:25;18516:2;18554:6;18549:2;18538:9;18534:18;18527:34;18597:3;18592:2;18581:9;18577:18;18570:31;18621:6;18656;18650:13;18687:6;18679;18672:22;18725:3;18714:9;18710:19;18703:26;;18764:2;18756:6;18752:15;18738:29;;18785:1;18795:218;18809:6;18806:1;18803:13;18795:218;;;18874:13;;18889:42;18870:62;18858:75;;18988:15;;;;18953:12;;;;18831:1;18824:9;18795:218;;;-1:-1:-1;;19081:42:1;19069:55;;;;19064:2;19049:18;;19042:83;-1:-1:-1;;;19156:3:1;19141:19;19134:35;19030:3;18149:1026;-1:-1:-1;;;18149:1026:1:o;19815:306::-;19903:6;19911;19919;19972:2;19960:9;19951:7;19947:23;19943:32;19940:52;;;19988:1;19985;19978:12;19940:52;20017:9;20011:16;20001:26;;20067:2;20056:9;20052:18;20046:25;20036:35;;20111:2;20100:9;20096:18;20090:25;20080:35;;19815:306;;;;;:::o

Swarm Source

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