ETH Price: $3,348.49 (+0.40%)
 

Overview

Max Total Supply

1,000,000,000 SATEA

Holders

86

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,000,000 SATEA

Value
$0.00
0x604CF336697eEA85628b60E7E0D796891FAA6e62
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SateaAI

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 9 of 9: SateaAI.sol
// Compute as a service. #Satea is a fully managed #Web3 infrastructure focused on #DePin or #AI projects. 
//
// Website: https://satea.ai
// X: https://x.com/SateaDotAI
// TG: https://t.me/SateaDotAI
// Docs: https://satea-ai.gitbook.io
// App: https://app.satea.ai
//



// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

import {Ownable} from "./Ownable.sol";
import {ERC20} from "./ERC20.sol";
import {IERC20} from "./IERC20.sol";
import {SafeMath} from "./SafeMath.sol";

import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";

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

    IUniswapV2Router02 public immutable uniswapRouter;
    address public uniswapV2Pair;

    bool private swapping;

    address public devWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;

    uint256 public tokensForTreasury;

    /******************/

    // exclude 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 UpdateUniswapRouter(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("satea.ai","SATEA") {
        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

        excludeFromMaxTransaction(address(_uniswapRouter), true);
        uniswapRouter = _uniswapRouter;

        uint256 _buyDevFee = 25;
        uint256 _sellDevFee = 25;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; 
        maxWallet = 20_000_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyDevFee = _buyDevFee;
        buyTotalFees = buyDevFee;

        sellDevFee = _sellDevFee;
        sellTotalFees = sellDevFee;

        devWallet = address(0x6Dd067906eB2259Bb182634ee7872E60b23EA17E);

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function createPair() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory())
            .createPair(address(this), uniswapRouter.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    }

    function enableSATEA() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyTax(
        uint256 _treasuryFee
    ) external onlyOwner {
        buyDevFee = _treasuryFee;
        buyTotalFees = buyDevFee;
    }

    function updateSellTax(
        uint256 _treasuryFee
    ) external onlyOwner {
        sellDevFee = _treasuryFee;
        sellTotalFees = sellDevFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    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(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        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 = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForTreasury += (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForTreasury += (fees * buyDevFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        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] = uniswapRouter.WETH();

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

        // make the swap
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapRouter), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForTreasury;
        bool success;

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

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


        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        tokensForTreasury = 0;

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

    function withdrawN() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawETH(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlack() public onlyOwner {
        blacklistRenounced = true;
    }

    function bl(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blackLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblack(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

File 1 of 9: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.19;

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

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

File 2 of 9: ERC20.sol
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 9: IERC20.sol
pragma solidity ^0.8.0; 

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

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

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

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

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

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

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

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

File 4 of 9: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import {IERC20} from "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 9: IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 6 of 9: IUniswapV2Router02.sol
pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

File 7 of 9: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.19;

import {Context} from "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 8 of 9: SafeMath.sol
pragma solidity ^0.8.19;

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"bl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blackLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","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":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableSATEA","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"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":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updatedevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805463ffffffff1916600117905534801561001f575f80fd5b506040518060400160405280600881526020016773617465612e616960c01b81525060405180604001604052806005815260200164534154454160d81b815250816003908161006e9190610483565b50600461007b8282610483565b50505061009461008f61019b60201b60201c565b61019f565b737a250d5630b4cf539739df2c5dacb4c659f2488d6100b48160016101f0565b6001600160a01b0381166080526a108b2a2c280290940000006008819055600a556019806b033b2e3c9fd0803ce80000006127106100f3826005610551565b6100fd919061056e565b600955600e839055600d8390556010829055600f829055600780546001600160a01b031916736dd067906eb2259bb182634ee7872e60b23ea17e17905561015661014f6005546001600160a01b031690565b6001610266565b610161306001610266565b61017d6101766005546001600160a01b031690565b60016101f0565b6101883060016101f0565b610192338261030b565b505050506105a0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b0316331461023c5760405162461bcd60e51b815260206004820181905260248201525f80516020612eda83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146102ad5760405162461bcd60e51b815260206004820181905260248201525f80516020612eda8339815191526044820152606401610233565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166103615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610233565b8060025f828254610372919061058d565b90915550506001600160a01b0382165f908152602081905260408120805483929061039e90849061058d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061041457607f821691505b60208210810361043257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103e757805f5260205f20601f840160051c8101602085101561045d5750805b601f840160051c820191505b8181101561047c575f8155600101610469565b5050505050565b81516001600160401b0381111561049c5761049c6103ec565b6104b0816104aa8454610400565b84610438565b6020601f8211600181146104e2575f83156104cb5750848201515b5f19600385901b1c1916600184901b17845561047c565b5f84815260208120601f198516915b8281101561051157878501518255602094850194600190920191016104f1565b508482101561052e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105685761056861053d565b92915050565b5f8261058857634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156105685761056861053d565b6080516128ff6105db5f395f8181610612015281816112f501528181611384015281816123b90152818161247001526124ac01526128ff5ff3fe608060405260043610610310575f3560e01c80638da5cb5b116101a3578063c0246668116100f2578063e2f4560511610092578063f2fde38b1161006d578063f2fde38b14610904578063f8b45b0514610923578063fc17044114610938578063fe575a8714610957575f80fd5b8063e2f45605146108db578063e533968514610667578063f2d24c1c146108f0575f80fd5b8063cc2ffe7c116100cd578063cc2ffe7c1461084e578063d257b34f14610863578063d85ba06314610882578063dd62ed3e14610897575f80fd5b8063c0246668146107fb578063c18bc1951461081a578063c8c8ebe414610839575f80fd5b80639e78fb4f1161015d578063a52e7fde11610138578063a52e7fde14610771578063a9059cbb14610790578063b62496f5146107af578063bbc0c742146107dd575f80fd5b80639e78fb4f14610729578063a0d82dc51461073d578063a457c2d714610752575f80fd5b80638da5cb5b146106865780638ea5220f146106a3578063924de9b7146106c257806395d89b41146106e15780639a7a23d6146106f55780639c3b4fdc14610714575f80fd5b806349bd5a5e1161025f5780636ddd171311610219578063735de9f7116101f4578063735de9f714610601578063751039fc146106345780637571336a1461064857806389bb6d6014610667575f80fd5b80636ddd17131461059a57806370a08231146105b9578063715018a6146105ed575f80fd5b806349bd5a5e146104cb5780634a62bb65146105025780634fbee1931461051b578063631b133614610552578063690d8320146105665780636a486a8e14610585575f80fd5b806323b872dd116102ca57806339509351116102a5578063395093511461044e5780633aeac4e11461046d5780633dc599ff1461048c578063436d3340146104ac575f80fd5b806323b872dd14610400578063313ce5671461041f5780633878739c1461043a575f80fd5b806306fdde031461031b578063095ea7b31461034557806310d5de531461037457806312185a39146103a257806318160ddd146103c3578063203e727e146103e1575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5061032f61098e565b60405161033c9190612525565b60405180910390f35b348015610350575f80fd5b5061036461035f36600461256e565b610a1e565b604051901515815260200161033c565b34801561037f575f80fd5b5061036461038e366004612598565b60136020525f908152604090205460ff1681565b3480156103ad575f80fd5b506103c16103bc3660046125b3565b610a34565b005b3480156103ce575f80fd5b506002545b60405190815260200161033c565b3480156103ec575f80fd5b506103c16103fb3660046125b3565b610a71565b34801561040b575f80fd5b5061036461041a3660046125ca565b610b4e565b34801561042a575f80fd5b506040516012815260200161033c565b348015610445575f80fd5b506103c1610bf6565b348015610459575f80fd5b5061036461046836600461256e565b610c33565b348015610478575f80fd5b506103c1610487366004612608565b610c6e565b348015610497575f80fd5b50600b54610364906301000000900460ff1681565b3480156104b7575f80fd5b506103c16104c63660046125b3565b610dd0565b3480156104d6575f80fd5b506006546104ea906001600160a01b031681565b6040516001600160a01b03909116815260200161033c565b34801561050d575f80fd5b50600b546103649060ff1681565b348015610526575f80fd5b50610364610535366004612598565b6001600160a01b03165f9081526012602052604090205460ff1690565b34801561055d575f80fd5b506103c1610e04565b348015610571575f80fd5b506103c1610580366004612598565b610f23565b348015610590575f80fd5b506103d3600f5481565b3480156105a5575f80fd5b50600b546103649062010000900460ff1681565b3480156105c4575f80fd5b506103d36105d3366004612598565b6001600160a01b03165f9081526020819052604090205490565b3480156105f8575f80fd5b506103c1610fa8565b34801561060c575f80fd5b506104ea7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063f575f80fd5b50610364610fdd565b348015610653575f80fd5b506103c161066236600461264c565b611019565b348015610672575f80fd5b506103c1610681366004612598565b61106d565b348015610691575f80fd5b506005546001600160a01b03166104ea565b3480156106ae575f80fd5b506007546104ea906001600160a01b031681565b3480156106cd575f80fd5b506103c16106dc366004612678565b6111bc565b3480156106ec575f80fd5b5061032f611202565b348015610700575f80fd5b506103c161070f36600461264c565b611211565b34801561071f575f80fd5b506103d3600e5481565b348015610734575f80fd5b506103c16112c9565b348015610748575f80fd5b506103d360105481565b34801561075d575f80fd5b5061036461076c36600461256e565b6114b1565b34801561077c575f80fd5b506103c161078b366004612598565b611549565b34801561079b575f80fd5b506103646107aa36600461256e565b611593565b3480156107ba575f80fd5b506103646107c9366004612598565b60146020525f908152604090205460ff1681565b3480156107e8575f80fd5b50600b5461036490610100900460ff1681565b348015610806575f80fd5b506103c161081536600461264c565b61159f565b348015610825575f80fd5b506103c16108343660046125b3565b611627565b348015610844575f80fd5b506103d360085481565b348015610859575f80fd5b506103d360115481565b34801561086e575f80fd5b5061036461087d3660046125b3565b6116f8565b34801561088d575f80fd5b506103d3600d5481565b3480156108a2575f80fd5b506103d36108b1366004612608565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108e6575f80fd5b506103d360095481565b3480156108fb575f80fd5b506103c161172d565b34801561090f575f80fd5b506103c161091e366004612598565b61176c565b34801561092e575f80fd5b506103d3600a5481565b348015610943575f80fd5b506103c1610952366004612598565b611807565b348015610962575f80fd5b50610364610971366004612598565b6001600160a01b03165f908152600c602052604090205460ff1690565b60606003805461099d90612693565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612693565b8015610a145780601f106109eb57610100808354040283529160200191610a14565b820191905f5260205f20905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b5f610a2a33848461188d565b5060015b92915050565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610a5e906126cb565b60405180910390fd5b6010819055600f55565b6005546001600160a01b03163314610a9b5760405162461bcd60e51b8152600401610a5e906126cb565b670de0b6b3a76400006103e8610ab060025490565b610abb906005612714565b610ac5919061272b565b610acf919061272b565b811015610b365760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a5e565b610b4881670de0b6b3a7640000612714565b60085550565b5f610b5a8484846119b0565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610bde5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a5e565b610beb853385840361188d565b506001949350505050565b6005546001600160a01b03163314610c205760405162461bcd60e51b8152600401610a5e906126cb565b600b805462ffff00191662010100179055565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a2a918590610c6990869061274a565b61188d565b6005546001600160a01b03163314610c985760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b038216610cee5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a5e565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610d32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d56919061275d565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610da6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dca9190612774565b50505050565b6005546001600160a01b03163314610dfa5760405162461bcd60e51b8152600401610a5e906126cb565b600e819055600d55565b6005546001600160a01b03163314610e2e5760405162461bcd60e51b8152600401610a5e906126cb565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8d919061275d565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ed1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef59190612774565b5060405133904780156108fc02915f818181858888f19350505050158015610f1f573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610a5e906126cb565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610f96576040519150601f19603f3d011682016040523d82523d5f602084013e610f9b565b606091505b5050905080610f1f575f80fd5b6005546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610a5e906126cb565b610fdb5f61208c565b565b6005545f906001600160a01b031633146110095760405162461bcd60e51b8152600401610a5e906126cb565b50600b805460ff19169055600190565b6005546001600160a01b031633146110435760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110975760405162461bcd60e51b8152600401610a5e906126cb565b600b546301000000900460ff16156110fb5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610a5e565b6006546001600160a01b0382811691161480159061113657506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6111995760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610a5e565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b031633146111e65760405162461bcd60e51b8152600401610a5e906126cb565b600b8054911515620100000262ff000019909216919091179055565b60606004805461099d90612693565b6005546001600160a01b0316331461123b5760405162461bcd60e51b8152600401610a5e906126cb565b6006546001600160a01b03908116908316036112bf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a5e565b610f1f82826120dd565b6005546001600160a01b031633146112f35760405162461bcd60e51b8152600401610a5e906126cb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561134f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611373919061278f565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611402919061278f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561144c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611470919061278f565b600680546001600160a01b0319166001600160a01b0392909216918217905561149a906001611019565b600654610fdb906001600160a01b031660016120dd565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156115325760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a5e565b61153f338585840361188d565b5060019392505050565b6005546001600160a01b031633146115735760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b5f610a2a3384846119b0565b6005546001600160a01b031633146115c95760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116515760405162461bcd60e51b8152600401610a5e906126cb565b670de0b6b3a76400006103e861166660025490565b61167190600a612714565b61167b919061272b565b611685919061272b565b8110156116e05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610a5e565b6116f281670de0b6b3a7640000612714565b600a5550565b6005545f906001600160a01b031633146117245760405162461bcd60e51b8152600401610a5e906126cb565b50600955600190565b6005546001600160a01b031633146117575760405162461bcd60e51b8152600401610a5e906126cb565b600b805463ff00000019166301000000179055565b6005546001600160a01b031633146117965760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b0381166117fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5e565b6118048161208c565b50565b6005546001600160a01b031633146118315760405162461bcd60e51b8152600401610a5e906126cb565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166118ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a5e565b6001600160a01b0382166119505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a5e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119d65760405162461bcd60e51b8152600401610a5e906127aa565b6001600160a01b0382166119fc5760405162461bcd60e51b8152600401610a5e906127ef565b6001600160a01b0383165f908152600c602052604090205460ff1615611a595760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610a5e565b6001600160a01b0382165f908152600c602052604090205460ff1615611ab85760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610a5e565b805f03611acf57611aca83835f612130565b505050565b600b5460ff1615611e25576005546001600160a01b03848116911614801590611b0657506005546001600160a01b03838116911614155b8015611b1a57506001600160a01b03821615155b8015611b305750600654600160a01b900460ff16155b15611e2557600b54610100900460ff16611bc6576001600160a01b0383165f9081526012602052604090205460ff1680611b8157506001600160a01b0382165f9081526012602052604090205460ff165b611bc65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a5e565b6001600160a01b0383165f9081526014602052604090205460ff168015611c0557506001600160a01b0382165f9081526013602052604090205460ff16155b15611ce857600854811115611c7a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a5e565b600a546001600160a01b0383165f90815260208190526040902054611c9f908361274a565b1115611ce35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b611e25565b6001600160a01b0382165f9081526014602052604090205460ff168015611d2757506001600160a01b0383165f9081526013602052604090205460ff16155b15611d9d57600854811115611ce35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a5e565b6001600160a01b0382165f9081526013602052604090205460ff16611e2557600a546001600160a01b0383165f90815260208190526040902054611de1908361274a565b1115611e255760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b305f9081526020819052604090205460095481108015908190611e505750600b5462010000900460ff165b8015611e665750600654600160a01b900460ff16155b8015611e8a57506001600160a01b0385165f9081526014602052604090205460ff16155b8015611eae57506001600160a01b0385165f9081526012602052604090205460ff16155b8015611ed257506001600160a01b0384165f9081526012602052604090205460ff16155b15611f00576006805460ff60a01b1916600160a01b179055611ef2612282565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526012602052604090205460ff600160a01b909204821615911680611f4c57506001600160a01b0385165f9081526012602052604090205460ff165b15611f5457505f5b5f8115612078576001600160a01b0386165f9081526014602052604090205460ff168015611f8357505f600f54115b15611fe057611fa86064611fa2600f548861234790919063ffffffff16565b90612359565b9050600f5460105482611fbb9190612714565b611fc5919061272b565b60115f828254611fd5919061274a565b9091555061205a9050565b6001600160a01b0387165f9081526014602052604090205460ff16801561200857505f600d54115b1561205a576120276064611fa2600d548861234790919063ffffffff16565b9050600d54600e548261203a9190612714565b612044919061272b565b60115f828254612054919061274a565b90915550505b801561206b5761206b873083612130565b6120758186612832565b94505b612083878787612130565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121565760405162461bcd60e51b8152600401610a5e906127aa565b6001600160a01b03821661217c5760405162461bcd60e51b8152600401610a5e906127ef565b6001600160a01b0383165f90815260208190526040902054818110156121f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a5e565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061222990849061274a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161227591815260200190565b60405180910390a3610dca565b305f9081526020819052604081205460115490918215806122a1575081155b156122ab57505050565b6009546122b9906014612714565b8311156122d1576009546122ce906014612714565b92505b82476122dc82612364565b5f6122e7478361251a565b5f60118190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114612337576040519150601f19603f3d011682016040523d82523d5f602084013e61233c565b606091505b505050505050505050565b5f6123528284612714565b9392505050565b5f612352828461272b565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061239757612397612845565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612413573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612437919061278f565b8160018151811061244a5761244a612845565b60200260200101906001600160a01b031690816001600160a01b031681525050612495307f00000000000000000000000000000000000000000000000000000000000000008461188d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124e99085905f90869030904290600401612859565b5f604051808303815f87803b158015612500575f80fd5b505af1158015612512573d5f803e3d5ffd5b505050505050565b5f6123528284612832565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611804575f80fd5b5f806040838503121561257f575f80fd5b823561258a8161255a565b946020939093013593505050565b5f602082840312156125a8575f80fd5b81356123528161255a565b5f602082840312156125c3575f80fd5b5035919050565b5f805f606084860312156125dc575f80fd5b83356125e78161255a565b925060208401356125f78161255a565b929592945050506040919091013590565b5f8060408385031215612619575f80fd5b82356126248161255a565b915060208301356126348161255a565b809150509250929050565b8015158114611804575f80fd5b5f806040838503121561265d575f80fd5b82356126688161255a565b915060208301356126348161263f565b5f60208284031215612688575f80fd5b81356123528161263f565b600181811c908216806126a757607f821691505b6020821081036126c557634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a2e57610a2e612700565b5f8261274557634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a2e57610a2e612700565b5f6020828403121561276d575f80fd5b5051919050565b5f60208284031215612784575f80fd5b81516123528161263f565b5f6020828403121561279f575f80fd5b81516123528161255a565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a2e57610a2e612700565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156128a95783516001600160a01b0316835260209384019390920191600101612882565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212207b2b5e7936306cd194c1671436f5ee3b7433caa265e3ea530d70e51d4936b8c464736f6c634300081a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610310575f3560e01c80638da5cb5b116101a3578063c0246668116100f2578063e2f4560511610092578063f2fde38b1161006d578063f2fde38b14610904578063f8b45b0514610923578063fc17044114610938578063fe575a8714610957575f80fd5b8063e2f45605146108db578063e533968514610667578063f2d24c1c146108f0575f80fd5b8063cc2ffe7c116100cd578063cc2ffe7c1461084e578063d257b34f14610863578063d85ba06314610882578063dd62ed3e14610897575f80fd5b8063c0246668146107fb578063c18bc1951461081a578063c8c8ebe414610839575f80fd5b80639e78fb4f1161015d578063a52e7fde11610138578063a52e7fde14610771578063a9059cbb14610790578063b62496f5146107af578063bbc0c742146107dd575f80fd5b80639e78fb4f14610729578063a0d82dc51461073d578063a457c2d714610752575f80fd5b80638da5cb5b146106865780638ea5220f146106a3578063924de9b7146106c257806395d89b41146106e15780639a7a23d6146106f55780639c3b4fdc14610714575f80fd5b806349bd5a5e1161025f5780636ddd171311610219578063735de9f7116101f4578063735de9f714610601578063751039fc146106345780637571336a1461064857806389bb6d6014610667575f80fd5b80636ddd17131461059a57806370a08231146105b9578063715018a6146105ed575f80fd5b806349bd5a5e146104cb5780634a62bb65146105025780634fbee1931461051b578063631b133614610552578063690d8320146105665780636a486a8e14610585575f80fd5b806323b872dd116102ca57806339509351116102a5578063395093511461044e5780633aeac4e11461046d5780633dc599ff1461048c578063436d3340146104ac575f80fd5b806323b872dd14610400578063313ce5671461041f5780633878739c1461043a575f80fd5b806306fdde031461031b578063095ea7b31461034557806310d5de531461037457806312185a39146103a257806318160ddd146103c3578063203e727e146103e1575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5061032f61098e565b60405161033c9190612525565b60405180910390f35b348015610350575f80fd5b5061036461035f36600461256e565b610a1e565b604051901515815260200161033c565b34801561037f575f80fd5b5061036461038e366004612598565b60136020525f908152604090205460ff1681565b3480156103ad575f80fd5b506103c16103bc3660046125b3565b610a34565b005b3480156103ce575f80fd5b506002545b60405190815260200161033c565b3480156103ec575f80fd5b506103c16103fb3660046125b3565b610a71565b34801561040b575f80fd5b5061036461041a3660046125ca565b610b4e565b34801561042a575f80fd5b506040516012815260200161033c565b348015610445575f80fd5b506103c1610bf6565b348015610459575f80fd5b5061036461046836600461256e565b610c33565b348015610478575f80fd5b506103c1610487366004612608565b610c6e565b348015610497575f80fd5b50600b54610364906301000000900460ff1681565b3480156104b7575f80fd5b506103c16104c63660046125b3565b610dd0565b3480156104d6575f80fd5b506006546104ea906001600160a01b031681565b6040516001600160a01b03909116815260200161033c565b34801561050d575f80fd5b50600b546103649060ff1681565b348015610526575f80fd5b50610364610535366004612598565b6001600160a01b03165f9081526012602052604090205460ff1690565b34801561055d575f80fd5b506103c1610e04565b348015610571575f80fd5b506103c1610580366004612598565b610f23565b348015610590575f80fd5b506103d3600f5481565b3480156105a5575f80fd5b50600b546103649062010000900460ff1681565b3480156105c4575f80fd5b506103d36105d3366004612598565b6001600160a01b03165f9081526020819052604090205490565b3480156105f8575f80fd5b506103c1610fa8565b34801561060c575f80fd5b506104ea7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561063f575f80fd5b50610364610fdd565b348015610653575f80fd5b506103c161066236600461264c565b611019565b348015610672575f80fd5b506103c1610681366004612598565b61106d565b348015610691575f80fd5b506005546001600160a01b03166104ea565b3480156106ae575f80fd5b506007546104ea906001600160a01b031681565b3480156106cd575f80fd5b506103c16106dc366004612678565b6111bc565b3480156106ec575f80fd5b5061032f611202565b348015610700575f80fd5b506103c161070f36600461264c565b611211565b34801561071f575f80fd5b506103d3600e5481565b348015610734575f80fd5b506103c16112c9565b348015610748575f80fd5b506103d360105481565b34801561075d575f80fd5b5061036461076c36600461256e565b6114b1565b34801561077c575f80fd5b506103c161078b366004612598565b611549565b34801561079b575f80fd5b506103646107aa36600461256e565b611593565b3480156107ba575f80fd5b506103646107c9366004612598565b60146020525f908152604090205460ff1681565b3480156107e8575f80fd5b50600b5461036490610100900460ff1681565b348015610806575f80fd5b506103c161081536600461264c565b61159f565b348015610825575f80fd5b506103c16108343660046125b3565b611627565b348015610844575f80fd5b506103d360085481565b348015610859575f80fd5b506103d360115481565b34801561086e575f80fd5b5061036461087d3660046125b3565b6116f8565b34801561088d575f80fd5b506103d3600d5481565b3480156108a2575f80fd5b506103d36108b1366004612608565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108e6575f80fd5b506103d360095481565b3480156108fb575f80fd5b506103c161172d565b34801561090f575f80fd5b506103c161091e366004612598565b61176c565b34801561092e575f80fd5b506103d3600a5481565b348015610943575f80fd5b506103c1610952366004612598565b611807565b348015610962575f80fd5b50610364610971366004612598565b6001600160a01b03165f908152600c602052604090205460ff1690565b60606003805461099d90612693565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612693565b8015610a145780601f106109eb57610100808354040283529160200191610a14565b820191905f5260205f20905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b5f610a2a33848461188d565b5060015b92915050565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610a5e906126cb565b60405180910390fd5b6010819055600f55565b6005546001600160a01b03163314610a9b5760405162461bcd60e51b8152600401610a5e906126cb565b670de0b6b3a76400006103e8610ab060025490565b610abb906005612714565b610ac5919061272b565b610acf919061272b565b811015610b365760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a5e565b610b4881670de0b6b3a7640000612714565b60085550565b5f610b5a8484846119b0565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610bde5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a5e565b610beb853385840361188d565b506001949350505050565b6005546001600160a01b03163314610c205760405162461bcd60e51b8152600401610a5e906126cb565b600b805462ffff00191662010100179055565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a2a918590610c6990869061274a565b61188d565b6005546001600160a01b03163314610c985760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b038216610cee5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a5e565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610d32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d56919061275d565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610da6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dca9190612774565b50505050565b6005546001600160a01b03163314610dfa5760405162461bcd60e51b8152600401610a5e906126cb565b600e819055600d55565b6005546001600160a01b03163314610e2e5760405162461bcd60e51b8152600401610a5e906126cb565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8d919061275d565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ed1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef59190612774565b5060405133904780156108fc02915f818181858888f19350505050158015610f1f573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610a5e906126cb565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610f96576040519150601f19603f3d011682016040523d82523d5f602084013e610f9b565b606091505b5050905080610f1f575f80fd5b6005546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610a5e906126cb565b610fdb5f61208c565b565b6005545f906001600160a01b031633146110095760405162461bcd60e51b8152600401610a5e906126cb565b50600b805460ff19169055600190565b6005546001600160a01b031633146110435760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110975760405162461bcd60e51b8152600401610a5e906126cb565b600b546301000000900460ff16156110fb5760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610a5e565b6006546001600160a01b0382811691161480159061113657506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6111995760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610a5e565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b031633146111e65760405162461bcd60e51b8152600401610a5e906126cb565b600b8054911515620100000262ff000019909216919091179055565b60606004805461099d90612693565b6005546001600160a01b0316331461123b5760405162461bcd60e51b8152600401610a5e906126cb565b6006546001600160a01b03908116908316036112bf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a5e565b610f1f82826120dd565b6005546001600160a01b031633146112f35760405162461bcd60e51b8152600401610a5e906126cb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561134f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611373919061278f565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611402919061278f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561144c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611470919061278f565b600680546001600160a01b0319166001600160a01b0392909216918217905561149a906001611019565b600654610fdb906001600160a01b031660016120dd565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156115325760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a5e565b61153f338585840361188d565b5060019392505050565b6005546001600160a01b031633146115735760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b5f610a2a3384846119b0565b6005546001600160a01b031633146115c95760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116515760405162461bcd60e51b8152600401610a5e906126cb565b670de0b6b3a76400006103e861166660025490565b61167190600a612714565b61167b919061272b565b611685919061272b565b8110156116e05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610a5e565b6116f281670de0b6b3a7640000612714565b600a5550565b6005545f906001600160a01b031633146117245760405162461bcd60e51b8152600401610a5e906126cb565b50600955600190565b6005546001600160a01b031633146117575760405162461bcd60e51b8152600401610a5e906126cb565b600b805463ff00000019166301000000179055565b6005546001600160a01b031633146117965760405162461bcd60e51b8152600401610a5e906126cb565b6001600160a01b0381166117fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5e565b6118048161208c565b50565b6005546001600160a01b031633146118315760405162461bcd60e51b8152600401610a5e906126cb565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166118ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a5e565b6001600160a01b0382166119505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a5e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119d65760405162461bcd60e51b8152600401610a5e906127aa565b6001600160a01b0382166119fc5760405162461bcd60e51b8152600401610a5e906127ef565b6001600160a01b0383165f908152600c602052604090205460ff1615611a595760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610a5e565b6001600160a01b0382165f908152600c602052604090205460ff1615611ab85760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610a5e565b805f03611acf57611aca83835f612130565b505050565b600b5460ff1615611e25576005546001600160a01b03848116911614801590611b0657506005546001600160a01b03838116911614155b8015611b1a57506001600160a01b03821615155b8015611b305750600654600160a01b900460ff16155b15611e2557600b54610100900460ff16611bc6576001600160a01b0383165f9081526012602052604090205460ff1680611b8157506001600160a01b0382165f9081526012602052604090205460ff165b611bc65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a5e565b6001600160a01b0383165f9081526014602052604090205460ff168015611c0557506001600160a01b0382165f9081526013602052604090205460ff16155b15611ce857600854811115611c7a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a5e565b600a546001600160a01b0383165f90815260208190526040902054611c9f908361274a565b1115611ce35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b611e25565b6001600160a01b0382165f9081526014602052604090205460ff168015611d2757506001600160a01b0383165f9081526013602052604090205460ff16155b15611d9d57600854811115611ce35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a5e565b6001600160a01b0382165f9081526013602052604090205460ff16611e2557600a546001600160a01b0383165f90815260208190526040902054611de1908361274a565b1115611e255760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b305f9081526020819052604090205460095481108015908190611e505750600b5462010000900460ff165b8015611e665750600654600160a01b900460ff16155b8015611e8a57506001600160a01b0385165f9081526014602052604090205460ff16155b8015611eae57506001600160a01b0385165f9081526012602052604090205460ff16155b8015611ed257506001600160a01b0384165f9081526012602052604090205460ff16155b15611f00576006805460ff60a01b1916600160a01b179055611ef2612282565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526012602052604090205460ff600160a01b909204821615911680611f4c57506001600160a01b0385165f9081526012602052604090205460ff165b15611f5457505f5b5f8115612078576001600160a01b0386165f9081526014602052604090205460ff168015611f8357505f600f54115b15611fe057611fa86064611fa2600f548861234790919063ffffffff16565b90612359565b9050600f5460105482611fbb9190612714565b611fc5919061272b565b60115f828254611fd5919061274a565b9091555061205a9050565b6001600160a01b0387165f9081526014602052604090205460ff16801561200857505f600d54115b1561205a576120276064611fa2600d548861234790919063ffffffff16565b9050600d54600e548261203a9190612714565b612044919061272b565b60115f828254612054919061274a565b90915550505b801561206b5761206b873083612130565b6120758186612832565b94505b612083878787612130565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121565760405162461bcd60e51b8152600401610a5e906127aa565b6001600160a01b03821661217c5760405162461bcd60e51b8152600401610a5e906127ef565b6001600160a01b0383165f90815260208190526040902054818110156121f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a5e565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061222990849061274a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161227591815260200190565b60405180910390a3610dca565b305f9081526020819052604081205460115490918215806122a1575081155b156122ab57505050565b6009546122b9906014612714565b8311156122d1576009546122ce906014612714565b92505b82476122dc82612364565b5f6122e7478361251a565b5f60118190556007546040519293506001600160a01b031691839181818185875af1925050503d805f8114612337576040519150601f19603f3d011682016040523d82523d5f602084013e61233c565b606091505b505050505050505050565b5f6123528284612714565b9392505050565b5f612352828461272b565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061239757612397612845565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612413573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612437919061278f565b8160018151811061244a5761244a612845565b60200260200101906001600160a01b031690816001600160a01b031681525050612495307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461188d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124e99085905f90869030904290600401612859565b5f604051808303815f87803b158015612500575f80fd5b505af1158015612512573d5f803e3d5ffd5b505050505050565b5f6123528284612832565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611804575f80fd5b5f806040838503121561257f575f80fd5b823561258a8161255a565b946020939093013593505050565b5f602082840312156125a8575f80fd5b81356123528161255a565b5f602082840312156125c3575f80fd5b5035919050565b5f805f606084860312156125dc575f80fd5b83356125e78161255a565b925060208401356125f78161255a565b929592945050506040919091013590565b5f8060408385031215612619575f80fd5b82356126248161255a565b915060208301356126348161255a565b809150509250929050565b8015158114611804575f80fd5b5f806040838503121561265d575f80fd5b82356126688161255a565b915060208301356126348161263f565b5f60208284031215612688575f80fd5b81356123528161263f565b600181811c908216806126a757607f821691505b6020821081036126c557634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a2e57610a2e612700565b5f8261274557634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a2e57610a2e612700565b5f6020828403121561276d575f80fd5b5051919050565b5f60208284031215612784575f80fd5b81516123528161263f565b5f6020828403121561279f575f80fd5b81516123528161255a565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a2e57610a2e612700565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156128a95783516001600160a01b0316835260209384019390920191600101612882565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212207b2b5e7936306cd194c1671436f5ee3b7433caa265e3ea530d70e51d4936b8c464736f6c634300081a0033

Deployed Bytecode Sourcemap

630:13476:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4255:169;;;;;;;;;;-1:-1:-1;4255:169:1;;;;;:::i;:::-;;:::i;:::-;;;1110:14:9;;1103:22;1085:41;;1073:2;1058:18;4255:169:1;945:187:9;1562:63:8;;;;;;;;;;-1:-1:-1;1562:63:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;5267:161;;;;;;;;;;-1:-1:-1;5267:161:8;;;;;:::i;:::-;;:::i;:::-;;3208:108:1;;;;;;;;;;-1:-1:-1;3296:12:1;;3208:108;;;1766:25:9;;;1754:2;1739:18;3208:108:1;1620:177:9;4183:275:8;;;;;;;;;;-1:-1:-1;4183:275:8;;;;;:::i;:::-;;:::i;4906:492:1:-;;;;;;;;;;-1:-1:-1;4906:492:1;;;;;:::i;:::-;;:::i;3050:93::-;;;;;;;;;;-1:-1:-1;3050:93:1;;3133:2;2457:36:9;;2445:2;2430:18;3050:93:1;2315:184:9;3632:110:8;;;;;;;;;;;;;:::i;5807:215:1:-;;;;;;;;;;-1:-1:-1;5807:215:1;;;;;:::i;:::-;;:::i;12378:283:8:-;;;;;;;;;;-1:-1:-1;12378:283:8;;;;;:::i;:::-;;:::i;1098:38::-;;;;;;;;;;-1:-1:-1;1098:38:8;;;;;;;;;;;5102:157;;;;;;;;;;-1:-1:-1;5102:157:8;;;;;:::i;:::-;;:::i;763:28::-;;;;;;;;;;-1:-1:-1;763:28:8;;;;-1:-1:-1;;;;;763:28:8;;;;;;-1:-1:-1;;;;;3061:32:9;;;3043:51;;3031:2;3016:18;763:28:8;2897:203:9;978:33:8;;;;;;;;;;-1:-1:-1;978:33:8;;;;;;;;6299:126;;;;;;;;;;-1:-1:-1;6299:126:8;;;;;:::i;:::-;-1:-1:-1;;;;;6389:28:8;6365:4;6389:28;;;:19;:28;;;;;;;;;6299:126;12123:247;;;;;;;;;;;;;:::i;12669:191::-;;;;;;;;;;-1:-1:-1;12669:191:8;;;;;:::i;:::-;;:::i;1312:28::-;;;;;;;;;;;;;;;;1058:31;;;;;;;;;;-1:-1:-1;1058:31:8;;;;;;;;;;;3379:127:1;;;;;;;;;;-1:-1:-1;3379:127:1;;;;;:::i;:::-;-1:-1:-1;;;;;3480:18:1;3453:7;3480:18;;;;;;;;;;;;3379:127;1745:103:6;;;;;;;;;;;;;:::i;707:49:8:-;;;;;;;;;;;;;;;3794:121;;;;;;;;;;;;;:::i;4731:167::-;;;;;;;;;;-1:-1:-1;4731:167:8;;;;;:::i;:::-;;:::i;13477:399::-;;;;;;;;;;-1:-1:-1;13477:399:8;;;;;:::i;:::-;;:::i;1094:87:6:-;;;;;;;;;;-1:-1:-1;1167:6:6;;-1:-1:-1;;;;;1167:6:6;1094:87;;830:24:8;;;;;;;;;;-1:-1:-1;830:24:8;;;;-1:-1:-1;;;;;830:24:8;;;4994:100;;;;;;;;;;-1:-1:-1;4994:100:8;;;;;:::i;:::-;;:::i;2307:104:1:-;;;;;;;;;;;;;:::i;5626:304:8:-;;;;;;;;;;-1:-1:-1;5626:304:8;;;;;:::i;:::-;;:::i;1279:24::-;;;;;;;;;;;;;;;;3309:315;;;;;;;;;;;;;:::i;1347:25::-;;;;;;;;;;;;;;;;6525:413:1;;;;;;;;;;-1:-1:-1;6525:413:1;;;;;:::i;:::-;;:::i;14009:94:8:-;;;;;;;;;;-1:-1:-1;14009:94:8;;;;;:::i;:::-;;:::i;3719:175:1:-;;;;;;;;;;-1:-1:-1;3719:175:1;;;;;:::i;:::-;;:::i;1783:57:8:-;;;;;;;;;;-1:-1:-1;1783:57:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;1018:33;;;;;;;;;;-1:-1:-1;1018:33:8;;;;;;;;;;;5436:182;;;;;;;;;;-1:-1:-1;5436:182:8;;;;;:::i;:::-;;:::i;4466:257::-;;;;;;;;;;-1:-1:-1;4466:257:8;;;;;:::i;:::-;;:::i;863:35::-;;;;;;;;;;;;;;;;1381:32;;;;;;;;;;;;;;;;3985:190;;;;;;;;;;-1:-1:-1;3985:190:8;;;;;:::i;:::-;;:::i;1245:27::-;;;;;;;;;;;;;;;;3957:151:1;;;;;;;;;;-1:-1:-1;3957:151:1;;;;;:::i;:::-;-1:-1:-1;;;;;4073:18:1;;;4046:7;4073:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3957:151;905:33:8;;;;;;;;;;;;;;;;12914:86;;;;;;;;;;;;;:::i;2003:201:6:-;;;;;;;;;;-1:-1:-1;2003:201:6;;;;;:::i;:::-;;:::i;945:24:8:-;;;;;;;;;;;;;;;;6134:157;;;;;;;;;;-1:-1:-1;6134:157:8;;;;;:::i;:::-;;:::i;6433:113::-;;;;;;;;;;-1:-1:-1;6433:113:8;;;;;:::i;:::-;-1:-1:-1;;;;;6518:20:8;6494:4;6518:20;;;:11;:20;;;;;;;;;6433:113;2088:100:1;2142:13;2175:5;2168:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088:100;:::o;4255:169::-;4338:4;4355:39;752:10:0;4378:7:1;4387:6;4355:8;:39::i;:::-;-1:-1:-1;4412:4:1;4255:169;;;;;:::o;5267:161:8:-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;;;;;;;;;5358:10:8::1;:25:::0;;;5394:13:::1;:26:::0;5267:161::o;4183:275::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;4320:4:8::1;4312;4291:13;3296:12:1::0;;;3208:108;4291:13:8::1;:17;::::0;4307:1:::1;4291:17;:::i;:::-;4290:26;;;;:::i;:::-;4289:35;;;;:::i;:::-;4279:6;:45;;4257:142;;;::::0;-1:-1:-1;;;4257:142:8;;5570:2:9;4257:142:8::1;::::0;::::1;5552:21:9::0;5609:2;5589:18;;;5582:30;5648:34;5628:18;;;5621:62;-1:-1:-1;;;5699:18:9;;;5692:45;5754:19;;4257:142:8::1;5368:411:9::0;4257:142:8::1;4433:17;:6:::0;4443::::1;4433:17;:::i;:::-;4410:20;:40:::0;-1:-1:-1;4183:275:8:o;4906:492:1:-;5046:4;5063:36;5073:6;5081:9;5092:6;5063:9;:36::i;:::-;-1:-1:-1;;;;;5139:19:1;;5112:24;5139:19;;;:11;:19;;;;;;;;752:10:0;5139:33:1;;;;;;;;5191:26;;;;5183:79;;;;-1:-1:-1;;;5183:79:1;;5986:2:9;5183:79:1;;;5968:21:9;6025:2;6005:18;;;5998:30;6064:34;6044:18;;;6037:62;-1:-1:-1;;;6115:18:9;;;6108:38;6163:19;;5183:79:1;5784:404:9;5183:79:1;5298:57;5307:6;752:10:0;5348:6:1;5329:16;:25;5298:8;:57::i;:::-;-1:-1:-1;5386:4:1;;4906:492;-1:-1:-1;;;;4906:492:1:o;3632:110:8:-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;3685:13:8::1;:20:::0;;-1:-1:-1;;3716:18:8;;;;;3632:110::o;5807:215:1:-;752:10:0;5895:4:1;5944:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5944:34:1;;;;;;;;;;5895:4;;5912:80;;5935:7;;5944:47;;5981:10;;5944:47;:::i;:::-;5912:8;:80::i;12378:283:8:-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;12468:20:8;::::1;12460:59;;;::::0;-1:-1:-1;;;12460:59:8;;6525:2:9;12460:59:8::1;::::0;::::1;6507:21:9::0;6564:2;6544:18;;;6537:30;6603:28;6583:18;;;6576:56;6649:18;;12460:59:8::1;6323:350:9::0;12460:59:8::1;12557:39;::::0;-1:-1:-1;;;12557:39:8;;12590:4:::1;12557:39;::::0;::::1;3043:51:9::0;12530:24:8::1;::::0;-1:-1:-1;;;;;12557:24:8;::::1;::::0;::::1;::::0;3016:18:9;;12557:39:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12607:46;::::0;-1:-1:-1;;;12607:46:8;;-1:-1:-1;;;;;7059:32:9;;;12607:46:8::1;::::0;::::1;7041:51:9::0;7108:18;;;7101:34;;;12530:66:8;;-1:-1:-1;12607:23:8;;::::1;::::0;::::1;::::0;7014:18:9;;12607:46:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12449:212;12378:283:::0;;:::o;5102:157::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;5192:9:8::1;:24:::0;;;5227:12:::1;:24:::0;5102:157::o;12123:247::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;12192:46:8::1;::::0;-1:-1:-1;;;12192:46:8;;12207:4:::1;12192:46;::::0;::::1;3043:51:9::0;;;12174:15:8::1;::::0;12192:31:::1;::::0;3016:18:9;;12192:46:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12249:51;::::0;-1:-1:-1;;;12249:51:8;;12280:10:::1;12249:51;::::0;::::1;7041::9::0;7108:18;;;7101:34;;;12174:64:8;;-1:-1:-1;12264:4:8::1;::::0;12249:30:::1;::::0;7014:18:9;;12249:51:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;12311:51:8::1;::::0;12319:10:::1;::::0;12340:21:::1;12311:51:::0;::::1;;;::::0;::::1;::::0;;;12340:21;12319:10;12311:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;12163:207;12123:247::o:0;12669:191::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;12737:12:8::1;12755:6;-1:-1:-1::0;;;;;12755:11:8::1;12788:21;12755:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12736:89;;;12844:7;12836:16;;;::::0;::::1;1745:103:6::0;1167:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;1810:30:::1;1837:1;1810:18;:30::i;:::-;1745:103::o:0;3794:121:8:-;1167:6:6;;3846:4:8;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;-1:-1:-1;3863:14:8::1;:22:::0;;-1:-1:-1;;3863:22:8::1;::::0;;;3794:121;:::o;4731:167::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;4844:39:8;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;4844:46:8::1;::::0;::::1;;::::0;;;::::1;::::0;;4731:167::o;13477:399::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;13561:18:8::1;::::0;;;::::1;;;13560:19;13552:65;;;::::0;-1:-1:-1;;;13552:65:8;;7808:2:9;13552:65:8::1;::::0;::::1;7790:21:9::0;7847:2;7827:18;;;7820:30;7886:34;7866:18;;;7859:62;-1:-1:-1;;;7937:18:9;;;7930:31;7978:19;;13552:65:8::1;7606:397:9::0;13552:65:8::1;13671:13;::::0;-1:-1:-1;;;;;13650:35:8;;::::1;13671:13:::0;::::1;13650:35;::::0;::::1;::::0;:103:::1;;-1:-1:-1::0;;;;;;13689:64:8;::::1;13710:42;13689:64;;13650:103;13628:200;;;::::0;-1:-1:-1;;;13628:200:8;;8210:2:9;13628:200:8::1;::::0;::::1;8192:21:9::0;8249:2;8229:18;;;8222:30;8288:34;8268:18;;;8261:62;-1:-1:-1;;;8339:18:9;;;8332:44;8393:19;;13628:200:8::1;8008:410:9::0;13628:200:8::1;-1:-1:-1::0;;;;;13839:22:8::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;13839:29:8::1;13864:4;13839:29;::::0;;13477:399::o;4994:100::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;5065:11:8::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;5065:21:8;;::::1;::::0;;;::::1;::::0;;4994:100::o;2307:104:1:-;2363:13;2396:7;2389:14;;;;;:::i;5626:304:8:-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;5770:13:8::1;::::0;-1:-1:-1;;;;;5770:13:8;;::::1;5762:21:::0;;::::1;::::0;5740:128:::1;;;::::0;-1:-1:-1;;;5740:128:8;;8625:2:9;5740:128:8::1;::::0;::::1;8607:21:9::0;8664:2;8644:18;;;8637:30;8703:34;8683:18;;;8676:62;8774:27;8754:18;;;8747:55;8819:19;;5740:128:8::1;8423:421:9::0;5740:128:8::1;5881:41;5910:4;5916:5;5881:28;:41::i;3309:315::-:0;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;3395:13:8::1;-1:-1:-1::0;;;;;3395:21:8::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3377:67:8::1;;3453:4;3460:13;-1:-1:-1::0;;;;;3460:18:8::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3377:104;::::0;-1:-1:-1;;;;;;3377:104:8::1;::::0;;;;;;-1:-1:-1;;;;;9297:32:9;;;3377:104:8::1;::::0;::::1;9279:51:9::0;9366:32;;9346:18;;;9339:60;9252:18;;3377:104:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3361:13;:120:::0;;-1:-1:-1;;;;;;3361:120:8::1;-1:-1:-1::0;;;;;3361:120:8;;;::::1;::::0;;::::1;::::0;;3492:55:::1;::::0;-1:-1:-1;3492:25:8::1;:55::i;:::-;3595:13;::::0;3558:58:::1;::::0;-1:-1:-1;;;;;3595:13:8::1;::::0;3558:28:::1;:58::i;6525:413:1:-:0;752:10:0;6618:4:1;6662:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6662:34:1;;;;;;;;;;6715:35;;;;6707:85;;;;-1:-1:-1;;;6707:85:1;;9612:2:9;6707:85:1;;;9594:21:9;9651:2;9631:18;;;9624:30;9690:34;9670:18;;;9663:62;-1:-1:-1;;;9741:18:9;;;9734:35;9786:19;;6707:85:1;9410:401:9;6707:85:1;6828:67;752:10:0;6851:7:1;6879:15;6860:16;:34;6828:8;:67::i;:::-;-1:-1:-1;6926:4:1;;6525:413;-1:-1:-1;;;6525:413:1:o;14009:94:8:-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;14069:18:8::1;14090:5;14069:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;14069:26:8::1;::::0;;14009:94::o;3719:175:1:-;3805:4;3822:42;752:10:0;3846:9:1;3857:6;3822:9;:42::i;5436:182:8:-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;5521:28:8;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;5521:39:8::1;::::0;::::1;;::::0;;::::1;::::0;;;5576:34;;1085:41:9;;;5576:34:8::1;::::0;1058:18:9;5576:34:8::1;;;;;;;5436:182:::0;;:::o;4466:257::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;4607:4:8::1;4599;4577:13;3296:12:1::0;;;3208:108;4577:13:8::1;:18;::::0;4593:2:::1;4577:18;:::i;:::-;4576:27;;;;:::i;:::-;4575:36;;;;:::i;:::-;4565:6;:46;;4543:132;;;::::0;-1:-1:-1;;;4543:132:8;;10018:2:9;4543:132:8::1;::::0;::::1;10000:21:9::0;10057:2;10037:18;;;10030:30;10096:34;10076:18;;;10069:62;-1:-1:-1;;;10147:18:9;;;10140:34;10191:19;;4543:132:8::1;9816:400:9::0;4543:132:8::1;4698:17;:6:::0;4708::::1;4698:17;:::i;:::-;4686:9;:29:::0;-1:-1:-1;4466:257:8:o;3985:190::-;1167:6:6;;4093:4:8;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;-1:-1:-1;4115:18:8::1;:30:::0;4163:4:::1;::::0;3985:190::o;12914:86::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;12967:18:8::1;:25:::0;;-1:-1:-1;;12967:25:8::1;::::0;::::1;::::0;;12914:86::o;2003:201:6:-;1167:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;2092:22:6;::::1;2084:73;;;::::0;-1:-1:-1;;;2084:73:6;;10423:2:9;2084:73:6::1;::::0;::::1;10405:21:9::0;10462:2;10442:18;;;10435:30;10501:34;10481:18;;;10474:62;-1:-1:-1;;;10552:18:9;;;10545:36;10598:19;;2084:73:6::1;10221:402:9::0;2084:73:6::1;2168:28;2187:8;2168:18;:28::i;:::-;2003:201:::0;:::o;6134:157:8:-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;6241:9:8::1;::::0;6213:38:::1;::::0;-1:-1:-1;;;;;6241:9:8;;::::1;::::0;6213:38;::::1;::::0;::::1;::::0;6241:9:::1;::::0;6213:38:::1;6262:9;:21:::0;;-1:-1:-1;;;;;;6262:21:8::1;-1:-1:-1::0;;;;;6262:21:8;;;::::1;::::0;;;::::1;::::0;;6134:157::o;10209:380:1:-;-1:-1:-1;;;;;10345:19:1;;10337:68;;;;-1:-1:-1;;;10337:68:1;;10830:2:9;10337:68:1;;;10812:21:9;10869:2;10849:18;;;10842:30;10908:34;10888:18;;;10881:62;-1:-1:-1;;;10959:18:9;;;10952:34;11003:19;;10337:68:1;10628:400:9;10337:68:1;-1:-1:-1;;;;;10424:21:1;;10416:68;;;;-1:-1:-1;;;10416:68:1;;11235:2:9;10416:68:1;;;11217:21:9;11274:2;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;-1:-1:-1;;;11364:18:9;;;11357:32;11406:19;;10416:68:1;11033:398:9;10416:68:1;-1:-1:-1;;;;;10497:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10549:32;;1766:25:9;;;10549:32:1;;1739:18:9;10549:32:1;;;;;;;10209:380;;;:::o;6554:3686:8:-;-1:-1:-1;;;;;6686:18:8;;6678:68;;;;-1:-1:-1;;;6678:68:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;6765:16:8;;6757:64;;;;-1:-1:-1;;;6757:64:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;6841:17:8;;;;;;:11;:17;;;;;;;;6840:18;6832:48;;;;-1:-1:-1;;;6832:48:8;;12448:2:9;6832:48:8;;;12430:21:9;12487:2;12467:18;;;12460:30;-1:-1:-1;;;12506:18:9;;;12499:48;12564:18;;6832:48:8;12246:342:9;6832:48:8;-1:-1:-1;;;;;6900:15:8;;;;;;:11;:15;;;;;;;;6899:16;6891:48;;;;-1:-1:-1;;;6891:48:8;;12795:2:9;6891:48:8;;;12777:21:9;12834:2;12814:18;;;12807:30;-1:-1:-1;;;12853:18:9;;;12846:50;12913:18;;6891:48:8;12593:344:9;6891:48:8;6956:6;6966:1;6956:11;6952:93;;6984:28;7000:4;7006:2;7010:1;6984:15;:28::i;:::-;6554:3686;;;:::o;6952:93::-;7061:14;;;;7057:1652;;;1167:6:6;;-1:-1:-1;;;;;7114:15:8;;;1167:6:6;;7114:15:8;;;;:49;;-1:-1:-1;1167:6:6;;-1:-1:-1;;;;;7150:13:8;;;1167:6:6;;7150:13:8;;7114:49;:86;;;;-1:-1:-1;;;;;;7184:16:8;;;;7114:86;:116;;;;-1:-1:-1;7222:8:8;;-1:-1:-1;;;7222:8:8;;;;7221:9;7114:116;7092:1606;;;7270:13;;;;;;;7265:223;;-1:-1:-1;;;;;7342:25:8;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;7371:23:8;;;;;;:19;:23;;;;;;;;7342:52;7308:160;;;;-1:-1:-1;;;7308:160:8;;13144:2:9;7308:160:8;;;13126:21:9;13183:2;13163:18;;;13156:30;-1:-1:-1;;;13202:18:9;;;13195:52;13264:18;;7308:160:8;12942:346:9;7308:160:8;-1:-1:-1;;;;;7562:31:8;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;7619:35:8;;;;;;:31;:35;;;;;;;;7618:36;7562:92;7536:1147;;;7741:20;;7731:6;:30;;7697:169;;;;-1:-1:-1;;;7697:169:8;;13495:2:9;7697:169:8;;;13477:21:9;13534:2;13514:18;;;13507:30;13573:34;13553:18;;;13546:62;-1:-1:-1;;;13624:18:9;;;13617:51;13685:19;;7697:169:8;13293:417:9;7697:169:8;7949:9;;-1:-1:-1;;;;;3480:18:1;;3453:7;3480:18;;;;;;;;;;;7923:22:8;;:6;:22;:::i;:::-;:35;;7889:140;;;;-1:-1:-1;;;7889:140:8;;13917:2:9;7889:140:8;;;13899:21:9;13956:2;13936:18;;;13929:30;-1:-1:-1;;;13975:18:9;;;13968:49;14034:18;;7889:140:8;13715:343:9;7889:140:8;7536:1147;;;-1:-1:-1;;;;;8127:29:8;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;8182:37:8;;;;;;:31;:37;;;;;;;;8181:38;8127:92;8101:582;;;8306:20;;8296:6;:30;;8262:170;;;;-1:-1:-1;;;8262:170:8;;14265:2:9;8262:170:8;;;14247:21:9;14304:2;14284:18;;;14277:30;14343:34;14323:18;;;14316:62;-1:-1:-1;;;14394:18:9;;;14387:52;14456:19;;8262:170:8;14063:418:9;8101:582:8;-1:-1:-1;;;;;8463:35:8;;;;;;:31;:35;;;;;;;;8458:225;;8583:9;;-1:-1:-1;;;;;3480:18:1;;3453:7;3480:18;;;;;;;;;;;8557:22:8;;:6;:22;:::i;:::-;:35;;8523:140;;;;-1:-1:-1;;;8523:140:8;;13917:2:9;8523:140:8;;;13899:21:9;13956:2;13936:18;;;13929:30;-1:-1:-1;;;13975:18:9;;;13968:49;14034:18;;8523:140:8;13715:343:9;8523:140:8;8770:4;8721:28;3480:18:1;;;;;;;;;;;8828::8;;8804:42;;;;;;;8877:35;;-1:-1:-1;8901:11:8;;;;;;;8877:35;:61;;;;-1:-1:-1;8930:8:8;;-1:-1:-1;;;8930:8:8;;;;8929:9;8877:61;:110;;;;-1:-1:-1;;;;;;8956:31:8;;;;;;:25;:31;;;;;;;;8955:32;8877:110;:153;;;;-1:-1:-1;;;;;;9005:25:8;;;;;;:19;:25;;;;;;;;9004:26;8877:153;:194;;;;-1:-1:-1;;;;;;9048:23:8;;;;;;:19;:23;;;;;;;;9047:24;8877:194;8859:326;;;9098:8;:15;;-1:-1:-1;;;;9098:15:8;-1:-1:-1;;;9098:15:8;;;9130:10;:8;:10::i;:::-;9157:8;:16;;-1:-1:-1;;;;9157:16:8;;;8859:326;9213:8;;-1:-1:-1;;;;;9323:25:8;;9197:12;9323:25;;;:19;:25;;;;;;9213:8;-1:-1:-1;;;9213:8:8;;;;;9212:9;;9323:25;;:52;;-1:-1:-1;;;;;;9352:23:8;;;;;;:19;:23;;;;;;;;9323:52;9319:100;;;-1:-1:-1;9402:5:8;9319:100;9431:12;9536:7;9532:655;;;-1:-1:-1;;;;;9588:29:8;;;;;;:25;:29;;;;;;;;:50;;;;;9637:1;9621:13;;:17;9588:50;9584:454;;;9666:34;9696:3;9666:25;9677:13;;9666:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;9659:41;;9762:13;;9748:10;;9741:4;:17;;;;:::i;:::-;9740:35;;;;:::i;:::-;9719:17;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;9584:454:8;;-1:-1:-1;9584:454:8;;-1:-1:-1;;;;;9837:31:8;;;;;;:25;:31;;;;;;;;:51;;;;;9887:1;9872:12;;:16;9837:51;9833:205;;;9916:33;9945:3;9916:24;9927:12;;9916:6;:10;;:24;;;;:::i;:33::-;9909:40;;10010:12;;9997:9;;9990:4;:16;;;;:::i;:::-;9989:33;;;;:::i;:::-;9968:17;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;9833:205:8;10058:8;;10054:91;;10087:42;10103:4;10117;10124;10087:15;:42::i;:::-;10161:14;10171:4;10161:14;;:::i;:::-;;;9532:655;10199:33;10215:4;10221:2;10225:6;10199:15;:33::i;:::-;6667:3573;;;;6554:3686;;;:::o;2364:191:6:-;2457:6;;;-1:-1:-1;;;;;2474:17:6;;;-1:-1:-1;;;;;;2474:17:6;;;;;;;2507:40;;2457:6;;;2474:17;2457:6;;2507:40;;2438:16;;2507:40;2427:128;2364:191;:::o;5938:188:8:-;-1:-1:-1;;;;;6021:31:8;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;6021:39:8;;;;;;;;;;6078:40;;6021:39;;:31;6078:40;;;5938:188;;:::o;7428:733:1:-;-1:-1:-1;;;;;7568:20:1;;7560:70;;;;-1:-1:-1;;;7560:70:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7649:23:1;;7641:71;;;;-1:-1:-1;;;7641:71:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7809:17:1;;7785:21;7809:17;;;;;;;;;;;7845:23;;;;7837:74;;;;-1:-1:-1;;;7837:74:1;;14821:2:9;7837:74:1;;;14803:21:9;14860:2;14840:18;;;14833:30;14899:34;14879:18;;;14872:62;-1:-1:-1;;;14950:18:9;;;14943:36;14996:19;;7837:74:1;14619:402:9;7837:74:1;-1:-1:-1;;;;;7947:17:1;;;:9;:17;;;;;;;;;;;7967:22;;;7947:42;;8011:20;;;;;;;;:30;;7983:6;;7947:9;8011:30;;7983:6;;8011:30;:::i;:::-;;;;;;;;8076:9;-1:-1:-1;;;;;8059:35:1;8068:6;-1:-1:-1;;;;;8059:35:1;;8087:6;8059:35;;;;1766:25:9;;1754:2;1739:18;;1620:177;8059:35:1;;;;;;;;8107:46;6554:3686:8;11360:755;11443:4;11399:23;3480:18:1;;;;;;;;;;;11488:17:8;;3480:18:1;;11545:20:8;;;:46;;-1:-1:-1;11569:22:8;;11545:46;11541:85;;;11608:7;;;11360:755::o;11541:85::-;11660:18;;:23;;11681:2;11660:23;:::i;:::-;11642:15;:41;11638:115;;;11718:18;;:23;;11739:2;11718:23;:::i;:::-;11700:41;;11638:115;11796:15;11852:21;11886:36;11796:15;11886:16;:36::i;:::-;11935:18;11956:44;:21;11982:17;11956:25;:44::i;:::-;12033:1;12013:17;:21;;;12069:9;;12061:46;;11935:65;;-1:-1:-1;;;;;;12069:9:8;;11935:65;;12061:46;12033:1;12061:46;11935:65;12069:9;12061:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;11360:755:8:o;3320:98:7:-;3378:7;3405:5;3409:1;3405;:5;:::i;:::-;3398:12;3320:98;-1:-1:-1;;;3320:98:7:o;3719:::-;3777:7;3804:5;3808:1;3804;:5;:::i;10248:583:8:-;10398:16;;;10412:1;10398:16;;;;;;;;10374:21;;10398:16;;;;;;;;;;-1:-1:-1;10398:16:8;10374:40;;10443:4;10425;10430:1;10425:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;10425:23:8;;;-1:-1:-1;;;;;10425:23:8;;;;;10469:13;-1:-1:-1;;;;;10469:18:8;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10459:4;10464:1;10459:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;10459:30:8;;;-1:-1:-1;;;;;10459:30:8;;;;;10502:60;10519:4;10534:13;10550:11;10502:8;:60::i;:::-;10601:222;;-1:-1:-1;;;10601:222:8;;-1:-1:-1;;;;;10601:13:8;:64;;;;:222;;10680:11;;10706:1;;10750:4;;10777;;10797:15;;10601:222;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10303:528;10248:583;:::o;2963:98:7:-;3021:7;3048:5;3052:1;3048;:5;:::i;14:418:9:-;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;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:9;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:9:o;1137:247::-;1196:6;1249:2;1237:9;1228:7;1224:23;1220:32;1217:52;;;1265:1;1262;1255:12;1217:52;1304:9;1291:23;1323:31;1348:5;1323:31;:::i;1389:226::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1562:23:9;;1389:226;-1:-1:-1;1389:226:9:o;1802:508::-;1879:6;1887;1895;1948:2;1936:9;1927:7;1923:23;1919:32;1916:52;;;1964:1;1961;1954:12;1916:52;2003:9;1990:23;2022:31;2047:5;2022:31;:::i;:::-;2072:5;-1:-1:-1;2129:2:9;2114:18;;2101:32;2142:33;2101:32;2142:33;:::i;:::-;1802:508;;2194:7;;-1:-1:-1;;;2274:2:9;2259:18;;;;2246:32;;1802:508::o;2504:388::-;2572:6;2580;2633:2;2621:9;2612:7;2608:23;2604:32;2601:52;;;2649:1;2646;2639:12;2601:52;2688:9;2675:23;2707:31;2732:5;2707:31;:::i;:::-;2757:5;-1:-1:-1;2814:2:9;2799:18;;2786:32;2827:33;2786:32;2827:33;:::i;:::-;2879:7;2869:17;;;2504:388;;;;;:::o;3339:118::-;3425:5;3418:13;3411:21;3404:5;3401:32;3391:60;;3447:1;3444;3437:12;3462:382;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3769:2:9;3754:18;;3741:32;3782:30;3741:32;3782:30;:::i;3849:241::-;3905:6;3958:2;3946:9;3937:7;3933:23;3929:32;3926:52;;;3974:1;3971;3964:12;3926:52;4013:9;4000:23;4032:28;4054:5;4032:28;:::i;4095:380::-;4174:1;4170:12;;;;4217;;;4238:61;;4292:4;4284:6;4280:17;4270:27;;4238:61;4345:2;4337:6;4334:14;4314:18;4311:38;4308:161;;4391:10;4386:3;4382:20;4379:1;4372:31;4426:4;4423:1;4416:15;4454:4;4451:1;4444:15;4308:161;;4095:380;;;:::o;4480:356::-;4682:2;4664:21;;;4701:18;;;4694:30;4760:34;4755:2;4740:18;;4733:62;4827:2;4812:18;;4480:356::o;4841:127::-;4902:10;4897:3;4893:20;4890:1;4883:31;4933:4;4930:1;4923:15;4957:4;4954:1;4947:15;4973:168;5046:9;;;5077;;5094:15;;;5088:22;;5074:37;5064:71;;5115:18;;:::i;5146:217::-;5186:1;5212;5202:132;;5256:10;5251:3;5247:20;5244:1;5237:31;5291:4;5288:1;5281:15;5319:4;5316:1;5309:15;5202:132;-1:-1:-1;5348:9:9;;5146:217::o;6193:125::-;6258:9;;;6279:10;;;6276:36;;;6292:18;;:::i;6678:184::-;6748:6;6801:2;6789:9;6780:7;6776:23;6772:32;6769:52;;;6817:1;6814;6807:12;6769:52;-1:-1:-1;6840:16:9;;6678:184;-1:-1:-1;6678:184:9:o;7146:245::-;7213:6;7266:2;7254:9;7245:7;7241:23;7237:32;7234:52;;;7282:1;7279;7272:12;7234:52;7314:9;7308:16;7333:28;7355:5;7333:28;:::i;8849:251::-;8919:6;8972:2;8960:9;8951:7;8947:23;8943:32;8940:52;;;8988:1;8985;8978:12;8940:52;9020:9;9014:16;9039:31;9064:5;9039:31;:::i;11436:401::-;11638:2;11620:21;;;11677:2;11657:18;;;11650:30;11716:34;11711:2;11696:18;;11689:62;-1:-1:-1;;;11782:2:9;11767:18;;11760:35;11827:3;11812:19;;11436:401::o;11842:399::-;12044:2;12026:21;;;12083:2;12063:18;;;12056:30;12122:34;12117:2;12102:18;;12095:62;-1:-1:-1;;;12188:2:9;12173:18;;12166:33;12231:3;12216:19;;11842:399::o;14486:128::-;14553:9;;;14574:11;;;14571:37;;;14588:18;;:::i;15158:127::-;15219:10;15214:3;15210:20;15207:1;15200:31;15250:4;15247:1;15240:15;15274:4;15271:1;15264:15;15290:959;15552:4;15600:3;15589:9;15585:19;15631:6;15620:9;15613:25;15674:6;15669:2;15658:9;15654:18;15647:34;15717:3;15712:2;15701:9;15697:18;15690:31;15741:6;15776;15770:13;15807:6;15799;15792:22;15845:3;15834:9;15830:19;15823:26;;15884:2;15876:6;15872:15;15858:29;;15905:1;15915:195;15929:6;15926:1;15923:13;15915:195;;;15994:13;;-1:-1:-1;;;;;15990:39:9;15978:52;;16059:2;16085:15;;;;16050:12;;;;16026:1;15944:9;15915:195;;;-1:-1:-1;;;;;;;16166:32:9;;;;16161:2;16146:18;;16139:60;-1:-1:-1;;16230:3:9;16215:19;16208:35;16127:3;15290:959;-1:-1:-1;;;15290:959:9:o

Swarm Source

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