ETH Price: $2,380.26 (+1.20%)
Gas: 4.33 Gwei

Token

tao.rent (TaoRent)
 

Overview

Max Total Supply

100,000 TaoRent

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
175 TaoRent

Value
$0.00
0x1107130205c0c904928baf442d588d355b8552a6
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:
taoRent

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 9 of 9: taorent.sol
// 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 taoRent is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapRouter;
    address public uniswapV2Pair;

    bool private swapping;

    address public revShareWallet;

    uint256 public maxTx;
    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 buyTreasuryFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;

    uint256 public tokensForTreasury;

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

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

    // 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 revShareWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("tao.rent", "TaoRent") {
        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

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

        uint256 _buyTreasuryFee = 30;
        uint256 _sellTreasuryFee = 30;

        uint256 totalSupply = 100_000 * 1e9;

        maxTx = 250 * 1e9; 
        maxWallet = 250 * 1e9; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyTreasuryFee = _buyTreasuryFee;
        buyTotalFees = buyTreasuryFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellTotalFees = sellTreasuryFee;

        revShareWallet = address(0x798cF16411f42a4479de81Ea5e5Bf05758091fff);

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

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

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

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

    function enableTrading() 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) / 1e9,
            "Cannot set maxTx lower than 0.5%"
        );
        maxTx = newNum * (10**18);
    }

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

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

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

    function updateBuyFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyTotalFees = buyTreasuryFee;
    }

    function updateSellFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellTotalFees = sellTreasuryFee;
    }

    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 updaterevShareWallet(address newWallet) external onlyOwner {
        emit revShareWalletUpdated(newWallet, revShareWallet);
        revShareWallet = 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] &&
                    !_isExcludedmaxTx[to]
                ) {
                    require(
                        amount <= maxTx,
                        "Buy transfer amount exceeds the maxTx."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedmaxTx[from]
                ) {
                    require(
                        amount <= maxTx,
                        "Sell transfer amount exceeds the maxTx."
                    );
                } else if (!_isExcludedmaxTx[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 * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForTreasury += (fees * buyTreasuryFee) / 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(revShareWallet).call{value: ethBalance}("");
    }

    function withdrawTAORENT() 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 withdrawTokens(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 withdrawEther(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

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

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


    function removebot(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 9;
    }

    /**
     * @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":"revShareWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addbot","outputs":[],"stateMutability":"nonpayable","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":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"maxTx","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removebot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","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":"setupPair","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":[],"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":"updateBuyFees","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":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updaterevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTAORENT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805463ffffffff1916600117905534801562000020575f80fd5b50604051806040016040528060088152602001671d185bcb9c995b9d60c21b8152506040518060400160405280600781526020016615185bd4995b9d60ca1b8152508160039081620000739190620004a6565b506004620000828282620004a6565b5050506200009f62000099620001ad60201b60201c565b620001b1565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c181600162000202565b6001600160a01b038116608052643a352944006008819055600a55601e80655af3107a4000612710620000f682600562000586565b620001029190620005a6565b600955600e839055600d8390556010829055600f829055600780546001600160a01b03191673798cf16411f42a4479de81ea5e5bf05758091fff1790556200015e620001566005546001600160a01b031690565b60016200027a565b6200016b3060016200027a565b6200018a620001826005546001600160a01b031690565b600162000202565b6200019730600162000202565b620001a3338262000322565b50505050620005dc565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620002505760405162461bcd60e51b815260206004820181905260248201525f8051602062002ef183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620002c45760405162461bcd60e51b815260206004820181905260248201525f8051602062002ef1833981519152604482015260640162000247565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200037a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000247565b8060025f8282546200038d9190620005c6565b90915550506001600160a01b0382165f9081526020819052604081208054839290620003bb908490620005c6565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200043257607f821691505b6020821081036200045157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200040457805f5260205f20601f840160051c810160208510156200047e5750805b601f840160051c820191505b818110156200049f575f81556001016200048a565b5050505050565b81516001600160401b03811115620004c257620004c262000409565b620004da81620004d384546200041d565b8462000457565b602080601f83116001811462000510575f8415620004f85750858301515b5f19600386901b1c1916600185901b1785556200056a565b5f85815260208120601f198616915b8281101562000540578886015182559484019460019091019084016200051f565b50858210156200055e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620005a057620005a062000572565b92915050565b5f82620005c157634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620005a057620005a062000572565b6080516128d9620006185f395f81816105d001528181610f7c0152818161100b0152818161237b01528181612432015261246e01526128d95ff3fe608060405260043610610310575f3560e01c80638a8c523c116101a3578063c0246668116100f2578063e2f4560511610092578063eff2fee21161006d578063eff2fee214610904578063f2fde38b14610923578063f8b45b0514610942578063fe575a8714610957575f80fd5b8063e2f45605146108a2578063e6819ba7146108b7578063eba4c333146108e5575f80fd5b8063d257b34f116100cd578063d257b34f1461082a578063d85ba06314610849578063dd62ed3e1461085e578063e19b28231461076c575f80fd5b8063c0246668146107d7578063c18bc195146107f6578063cc2ffe7c14610815575f80fd5b8063a457c2d71161015d578063af933b5711610138578063af933b571461074d578063b129644d1461076c578063b62496f51461078b578063bbc0c742146107b9575f80fd5b8063a457c2d7146106f0578063a522ad251461070f578063a9059cbb1461072e575f80fd5b80638a8c523c146106595780638da5cb5b1461066d578063924de9b71461068a57806395d89b41146106a9578063986cd164146106bd5780639a7a23d6146106d1575f80fd5b80635f1893611161025f578063715018a6116102195780637437681e116101f45780637437681e146105f2578063751039fc146106075780637571336a1461061b578063782c4e991461063a575f80fd5b8063715018a61461058c57806371fc4688146105a0578063735de9f7146105bf575f80fd5b80635f189361146104dc5780636a486a8e146104f05780636b2fb124146105055780636ddd17131461051a578063700083a61461053957806370a0823114610558575f80fd5b806339509351116102ca5780634a62bb65116102a55780634a62bb65146104635780634a9ebaf61461047c5780634fbee193146104905780635c068a8c146104c7575f80fd5b806339509351146103ed5780633dc599ff1461040c57806349bd5a5e1461042c575f80fd5b806306fdde031461031b578063095ea7b31461034557806318160ddd14610374578063203e727e1461039257806323b872dd146103b3578063313ce567146103d2575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5061032f61098e565b60405161033c91906124e7565b60405180910390f35b348015610350575f80fd5b5061036461035f366004612547565b610a1e565b604051901515815260200161033c565b34801561037f575f80fd5b506002545b60405190815260200161033c565b34801561039d575f80fd5b506103b16103ac366004612571565b610a34565b005b3480156103be575f80fd5b506103646103cd366004612588565b610afe565b3480156103dd575f80fd5b506040516009815260200161033c565b3480156103f8575f80fd5b50610364610407366004612547565b610ba6565b348015610417575f80fd5b50600b54610364906301000000900460ff1681565b348015610437575f80fd5b5060065461044b906001600160a01b031681565b6040516001600160a01b03909116815260200161033c565b34801561046e575f80fd5b50600b546103649060ff1681565b348015610487575f80fd5b506103b1610be1565b34801561049b575f80fd5b506103646104aa3660046125c6565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156104d2575f80fd5b50610384600e5481565b3480156104e7575f80fd5b506103b1610d00565b3480156104fb575f80fd5b50610384600f5481565b348015610510575f80fd5b5061038460105481565b348015610525575f80fd5b50600b546103649062010000900460ff1681565b348015610544575f80fd5b506103b16105533660046125c6565b610d3f565b348015610563575f80fd5b506103846105723660046125c6565b6001600160a01b03165f9081526020819052604090205490565b348015610597575f80fd5b506103b1610dc5565b3480156105ab575f80fd5b506103b16105ba366004612571565b610dfa565b3480156105ca575f80fd5b5061044b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105fd575f80fd5b5061038460085481565b348015610612575f80fd5b50610364610e2e565b348015610626575f80fd5b506103b16106353660046125ee565b610e6a565b348015610645575f80fd5b5060075461044b906001600160a01b031681565b348015610664575f80fd5b506103b1610ebe565b348015610678575f80fd5b506005546001600160a01b031661044b565b348015610695575f80fd5b506103b16106a4366004612625565b610efb565b3480156106b4575f80fd5b5061032f610f41565b3480156106c8575f80fd5b506103b1610f50565b3480156106dc575f80fd5b506103b16106eb3660046125ee565b611138565b3480156106fb575f80fd5b5061036461070a366004612547565b6111f0565b34801561071a575f80fd5b506103b1610729366004612640565b611288565b348015610739575f80fd5b50610364610748366004612547565b6113ea565b348015610758575f80fd5b506103b16107673660046125c6565b6113f6565b348015610777575f80fd5b506103b16107863660046125c6565b61147b565b348015610796575f80fd5b506103646107a53660046125c6565b60146020525f908152604090205460ff1681565b3480156107c4575f80fd5b50600b5461036490610100900460ff1681565b3480156107e2575f80fd5b506103b16107f13660046125ee565b6115ca565b348015610801575f80fd5b506103b1610810366004612571565b611652565b348015610820575f80fd5b5061038460115481565b348015610835575f80fd5b50610364610844366004612571565b61171f565b348015610854575f80fd5b50610384600d5481565b348015610869575f80fd5b50610384610878366004612640565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108ad575f80fd5b5061038460095481565b3480156108c2575f80fd5b506103646108d13660046125c6565b60136020525f908152604090205460ff1681565b3480156108f0575f80fd5b506103b16108ff366004612571565b611754565b34801561090f575f80fd5b506103b161091e3660046125c6565b611788565b34801561092e575f80fd5b506103b161093d3660046125c6565b6117d2565b34801561094d575f80fd5b50610384600a5481565b348015610962575f80fd5b506103646109713660046125c6565b6001600160a01b03165f908152600c602052604090205460ff1690565b60606003805461099d9061266c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c99061266c565b8015610a145780601f106109eb57610100808354040283529160200191610a14565b820191905f5260205f20905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b5f610a2a33848461186d565b5060015b92915050565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610a5e906126a4565b60405180910390fd5b633b9aca006103e8610a7860025490565b610a839060056126ed565b610a8d9190612704565b610a979190612704565b811015610ae65760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e35256044820152606401610a5e565b610af881670de0b6b3a76400006126ed565b60085550565b5f610b0a848484611990565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610b8e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a5e565b610b9b853385840361186d565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a2a918590610bdc908690612723565b61186d565b6005546001600160a01b03163314610c0b5760405162461bcd60e51b8152600401610a5e906126a4565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610c46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6a9190612736565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610cae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd2919061274d565b5060405133904780156108fc02915f818181858888f19350505050158015610cfc573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610d2a5760405162461bcd60e51b8152600401610a5e906126a4565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610d695760405162461bcd60e51b8152600401610a5e906126a4565b6007546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610def5760405162461bcd60e51b8152600401610a5e906126a4565b610df85f61204e565b565b6005546001600160a01b03163314610e245760405162461bcd60e51b8152600401610a5e906126a4565b600e819055600d55565b6005545f906001600160a01b03163314610e5a5760405162461bcd60e51b8152600401610a5e906126a4565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e945760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ee85760405162461bcd60e51b8152600401610a5e906126a4565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610f255760405162461bcd60e51b8152600401610a5e906126a4565b600b8054911515620100000262ff000019909216919091179055565b60606004805461099d9061266c565b6005546001600160a01b03163314610f7a5760405162461bcd60e51b8152600401610a5e906126a4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffa9190612768565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611065573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110899190612768565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156110d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f79190612768565b600680546001600160a01b0319166001600160a01b03929092169182179055611121906001610e6a565b600654610df8906001600160a01b0316600161209f565b6005546001600160a01b031633146111625760405162461bcd60e51b8152600401610a5e906126a4565b6006546001600160a01b03908116908316036111e65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a5e565b610cfc828261209f565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156112715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a5e565b61127e338585840361186d565b5060019392505050565b6005546001600160a01b031633146112b25760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b0382166113085760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a5e565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561134c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113709190612736565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156113c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e4919061274d565b50505050565b5f610a2a338484611990565b6005546001600160a01b031633146114205760405162461bcd60e51b8152600401610a5e906126a4565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611469576040519150601f19603f3d011682016040523d82523d5f602084013e61146e565b606091505b5050905080610cfc575f80fd5b6005546001600160a01b031633146114a55760405162461bcd60e51b8152600401610a5e906126a4565b600b546301000000900460ff16156115095760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610a5e565b6006546001600160a01b0382811691161480159061154457506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6115a75760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610a5e565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b031633146115f45760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461167c5760405162461bcd60e51b8152600401610a5e906126a4565b633b9aca006103e861168d60025490565b61169890600a6126ed565b6116a29190612704565b6116ac9190612704565b8110156117075760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610a5e565b61171981670de0b6b3a76400006126ed565b600a5550565b6005545f906001600160a01b0316331461174b5760405162461bcd60e51b8152600401610a5e906126a4565b50600955600190565b6005546001600160a01b0316331461177e5760405162461bcd60e51b8152600401610a5e906126a4565b6010819055600f55565b6005546001600160a01b031633146117b25760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146117fc5760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b0381166118615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5e565b61186a8161204e565b50565b6001600160a01b0383166118cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a5e565b6001600160a01b0382166119305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a5e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119b65760405162461bcd60e51b8152600401610a5e90612783565b6001600160a01b0382166119dc5760405162461bcd60e51b8152600401610a5e906127c8565b6001600160a01b0383165f908152600c602052604090205460ff1615611a395760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610a5e565b6001600160a01b0382165f908152600c602052604090205460ff1615611a985760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610a5e565b805f03611aaf57611aaa83835f6120f2565b505050565b600b5460ff1615611de7576005546001600160a01b03848116911614801590611ae657506005546001600160a01b03838116911614155b8015611afa57506001600160a01b03821615155b8015611b105750600654600160a01b900460ff16155b15611de757600b54610100900460ff16611ba6576001600160a01b0383165f9081526012602052604090205460ff1680611b6157506001600160a01b0382165f9081526012602052604090205460ff165b611ba65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a5e565b6001600160a01b0383165f9081526014602052604090205460ff168015611be557506001600160a01b0382165f9081526013602052604090205460ff16155b15611cb957600854811115611c4b5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a5e565b600a546001600160a01b0383165f90815260208190526040902054611c709083612723565b1115611cb45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b611de7565b6001600160a01b0382165f9081526014602052604090205460ff168015611cf857506001600160a01b0383165f9081526013602052604090205460ff16155b15611d5f57600854811115611cb45760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a5e565b6001600160a01b0382165f9081526013602052604090205460ff16611de757600a546001600160a01b0383165f90815260208190526040902054611da39083612723565b1115611de75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b305f9081526020819052604090205460095481108015908190611e125750600b5462010000900460ff165b8015611e285750600654600160a01b900460ff16155b8015611e4c57506001600160a01b0385165f9081526014602052604090205460ff16155b8015611e7057506001600160a01b0385165f9081526012602052604090205460ff16155b8015611e9457506001600160a01b0384165f9081526012602052604090205460ff16155b15611ec2576006805460ff60a01b1916600160a01b179055611eb4612244565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526012602052604090205460ff600160a01b909204821615911680611f0e57506001600160a01b0385165f9081526012602052604090205460ff165b15611f1657505f5b5f811561203a576001600160a01b0386165f9081526014602052604090205460ff168015611f4557505f600f54115b15611fa257611f6a6064611f64600f548861230990919063ffffffff16565b9061231b565b9050600f5460105482611f7d91906126ed565b611f879190612704565b60115f828254611f979190612723565b9091555061201c9050565b6001600160a01b0387165f9081526014602052604090205460ff168015611fca57505f600d54115b1561201c57611fe96064611f64600d548861230990919063ffffffff16565b9050600d54600e5482611ffc91906126ed565b6120069190612704565b60115f8282546120169190612723565b90915550505b801561202d5761202d8730836120f2565b612037818661280b565b94505b6120458787876120f2565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121185760405162461bcd60e51b8152600401610a5e90612783565b6001600160a01b03821661213e5760405162461bcd60e51b8152600401610a5e906127c8565b6001600160a01b0383165f90815260208190526040902054818110156121b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a5e565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906121eb908490612723565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161223791815260200190565b60405180910390a36113e4565b305f908152602081905260408120546011549091821580612263575081155b1561226d57505050565b60095461227b9060146126ed565b831115612293576009546122909060146126ed565b92505b824761229e82612326565b5f6122a947836124dc565b5f60118190556007546040519293506001600160a01b031691839181818185875af1925050503d805f81146122f9576040519150601f19603f3d011682016040523d82523d5f602084013e6122fe565b606091505b505050505050505050565b5f61231482846126ed565b9392505050565b5f6123148284612704565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106123595761235961281e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f99190612768565b8160018151811061240c5761240c61281e565b60200260200101906001600160a01b031690816001600160a01b031681525050612457307f00000000000000000000000000000000000000000000000000000000000000008461186d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124ab9085905f90869030904290600401612832565b5f604051808303815f87803b1580156124c2575f80fd5b505af11580156124d4573d5f803e3d5ffd5b505050505050565b5f612314828461280b565b5f602080835283518060208501525f5b81811015612513578581018301518582016040015282016124f7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461186a575f80fd5b5f8060408385031215612558575f80fd5b823561256381612533565b946020939093013593505050565b5f60208284031215612581575f80fd5b5035919050565b5f805f6060848603121561259a575f80fd5b83356125a581612533565b925060208401356125b581612533565b929592945050506040919091013590565b5f602082840312156125d6575f80fd5b813561231481612533565b801515811461186a575f80fd5b5f80604083850312156125ff575f80fd5b823561260a81612533565b9150602083013561261a816125e1565b809150509250929050565b5f60208284031215612635575f80fd5b8135612314816125e1565b5f8060408385031215612651575f80fd5b823561265c81612533565b9150602083013561261a81612533565b600181811c9082168061268057607f821691505b60208210810361269e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a2e57610a2e6126d9565b5f8261271e57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a2e57610a2e6126d9565b5f60208284031215612746575f80fd5b5051919050565b5f6020828403121561275d575f80fd5b8151612314816125e1565b5f60208284031215612778575f80fd5b815161231481612533565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a2e57610a2e6126d9565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156128825784516001600160a01b03168352938301939183019160010161285d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122052ad1e85c2329a7ce7de1aea06a315798b6f47249e9d228ab47c2b1734d9354964736f6c634300081800334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610310575f3560e01c80638a8c523c116101a3578063c0246668116100f2578063e2f4560511610092578063eff2fee21161006d578063eff2fee214610904578063f2fde38b14610923578063f8b45b0514610942578063fe575a8714610957575f80fd5b8063e2f45605146108a2578063e6819ba7146108b7578063eba4c333146108e5575f80fd5b8063d257b34f116100cd578063d257b34f1461082a578063d85ba06314610849578063dd62ed3e1461085e578063e19b28231461076c575f80fd5b8063c0246668146107d7578063c18bc195146107f6578063cc2ffe7c14610815575f80fd5b8063a457c2d71161015d578063af933b5711610138578063af933b571461074d578063b129644d1461076c578063b62496f51461078b578063bbc0c742146107b9575f80fd5b8063a457c2d7146106f0578063a522ad251461070f578063a9059cbb1461072e575f80fd5b80638a8c523c146106595780638da5cb5b1461066d578063924de9b71461068a57806395d89b41146106a9578063986cd164146106bd5780639a7a23d6146106d1575f80fd5b80635f1893611161025f578063715018a6116102195780637437681e116101f45780637437681e146105f2578063751039fc146106075780637571336a1461061b578063782c4e991461063a575f80fd5b8063715018a61461058c57806371fc4688146105a0578063735de9f7146105bf575f80fd5b80635f189361146104dc5780636a486a8e146104f05780636b2fb124146105055780636ddd17131461051a578063700083a61461053957806370a0823114610558575f80fd5b806339509351116102ca5780634a62bb65116102a55780634a62bb65146104635780634a9ebaf61461047c5780634fbee193146104905780635c068a8c146104c7575f80fd5b806339509351146103ed5780633dc599ff1461040c57806349bd5a5e1461042c575f80fd5b806306fdde031461031b578063095ea7b31461034557806318160ddd14610374578063203e727e1461039257806323b872dd146103b3578063313ce567146103d2575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5061032f61098e565b60405161033c91906124e7565b60405180910390f35b348015610350575f80fd5b5061036461035f366004612547565b610a1e565b604051901515815260200161033c565b34801561037f575f80fd5b506002545b60405190815260200161033c565b34801561039d575f80fd5b506103b16103ac366004612571565b610a34565b005b3480156103be575f80fd5b506103646103cd366004612588565b610afe565b3480156103dd575f80fd5b506040516009815260200161033c565b3480156103f8575f80fd5b50610364610407366004612547565b610ba6565b348015610417575f80fd5b50600b54610364906301000000900460ff1681565b348015610437575f80fd5b5060065461044b906001600160a01b031681565b6040516001600160a01b03909116815260200161033c565b34801561046e575f80fd5b50600b546103649060ff1681565b348015610487575f80fd5b506103b1610be1565b34801561049b575f80fd5b506103646104aa3660046125c6565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156104d2575f80fd5b50610384600e5481565b3480156104e7575f80fd5b506103b1610d00565b3480156104fb575f80fd5b50610384600f5481565b348015610510575f80fd5b5061038460105481565b348015610525575f80fd5b50600b546103649062010000900460ff1681565b348015610544575f80fd5b506103b16105533660046125c6565b610d3f565b348015610563575f80fd5b506103846105723660046125c6565b6001600160a01b03165f9081526020819052604090205490565b348015610597575f80fd5b506103b1610dc5565b3480156105ab575f80fd5b506103b16105ba366004612571565b610dfa565b3480156105ca575f80fd5b5061044b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156105fd575f80fd5b5061038460085481565b348015610612575f80fd5b50610364610e2e565b348015610626575f80fd5b506103b16106353660046125ee565b610e6a565b348015610645575f80fd5b5060075461044b906001600160a01b031681565b348015610664575f80fd5b506103b1610ebe565b348015610678575f80fd5b506005546001600160a01b031661044b565b348015610695575f80fd5b506103b16106a4366004612625565b610efb565b3480156106b4575f80fd5b5061032f610f41565b3480156106c8575f80fd5b506103b1610f50565b3480156106dc575f80fd5b506103b16106eb3660046125ee565b611138565b3480156106fb575f80fd5b5061036461070a366004612547565b6111f0565b34801561071a575f80fd5b506103b1610729366004612640565b611288565b348015610739575f80fd5b50610364610748366004612547565b6113ea565b348015610758575f80fd5b506103b16107673660046125c6565b6113f6565b348015610777575f80fd5b506103b16107863660046125c6565b61147b565b348015610796575f80fd5b506103646107a53660046125c6565b60146020525f908152604090205460ff1681565b3480156107c4575f80fd5b50600b5461036490610100900460ff1681565b3480156107e2575f80fd5b506103b16107f13660046125ee565b6115ca565b348015610801575f80fd5b506103b1610810366004612571565b611652565b348015610820575f80fd5b5061038460115481565b348015610835575f80fd5b50610364610844366004612571565b61171f565b348015610854575f80fd5b50610384600d5481565b348015610869575f80fd5b50610384610878366004612640565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108ad575f80fd5b5061038460095481565b3480156108c2575f80fd5b506103646108d13660046125c6565b60136020525f908152604090205460ff1681565b3480156108f0575f80fd5b506103b16108ff366004612571565b611754565b34801561090f575f80fd5b506103b161091e3660046125c6565b611788565b34801561092e575f80fd5b506103b161093d3660046125c6565b6117d2565b34801561094d575f80fd5b50610384600a5481565b348015610962575f80fd5b506103646109713660046125c6565b6001600160a01b03165f908152600c602052604090205460ff1690565b60606003805461099d9061266c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c99061266c565b8015610a145780601f106109eb57610100808354040283529160200191610a14565b820191905f5260205f20905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b5f610a2a33848461186d565b5060015b92915050565b6005546001600160a01b03163314610a675760405162461bcd60e51b8152600401610a5e906126a4565b60405180910390fd5b633b9aca006103e8610a7860025490565b610a839060056126ed565b610a8d9190612704565b610a979190612704565b811015610ae65760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e35256044820152606401610a5e565b610af881670de0b6b3a76400006126ed565b60085550565b5f610b0a848484611990565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610b8e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a5e565b610b9b853385840361186d565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610a2a918590610bdc908690612723565b61186d565b6005546001600160a01b03163314610c0b5760405162461bcd60e51b8152600401610a5e906126a4565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610c46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6a9190612736565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610cae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd2919061274d565b5060405133904780156108fc02915f818181858888f19350505050158015610cfc573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610d2a5760405162461bcd60e51b8152600401610a5e906126a4565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610d695760405162461bcd60e51b8152600401610a5e906126a4565b6007546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610def5760405162461bcd60e51b8152600401610a5e906126a4565b610df85f61204e565b565b6005546001600160a01b03163314610e245760405162461bcd60e51b8152600401610a5e906126a4565b600e819055600d55565b6005545f906001600160a01b03163314610e5a5760405162461bcd60e51b8152600401610a5e906126a4565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e945760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ee85760405162461bcd60e51b8152600401610a5e906126a4565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610f255760405162461bcd60e51b8152600401610a5e906126a4565b600b8054911515620100000262ff000019909216919091179055565b60606004805461099d9061266c565b6005546001600160a01b03163314610f7a5760405162461bcd60e51b8152600401610a5e906126a4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffa9190612768565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611065573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110899190612768565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156110d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f79190612768565b600680546001600160a01b0319166001600160a01b03929092169182179055611121906001610e6a565b600654610df8906001600160a01b0316600161209f565b6005546001600160a01b031633146111625760405162461bcd60e51b8152600401610a5e906126a4565b6006546001600160a01b03908116908316036111e65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a5e565b610cfc828261209f565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156112715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a5e565b61127e338585840361186d565b5060019392505050565b6005546001600160a01b031633146112b25760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b0382166113085760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a5e565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561134c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113709190612736565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156113c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e4919061274d565b50505050565b5f610a2a338484611990565b6005546001600160a01b031633146114205760405162461bcd60e51b8152600401610a5e906126a4565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611469576040519150601f19603f3d011682016040523d82523d5f602084013e61146e565b606091505b5050905080610cfc575f80fd5b6005546001600160a01b031633146114a55760405162461bcd60e51b8152600401610a5e906126a4565b600b546301000000900460ff16156115095760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610a5e565b6006546001600160a01b0382811691161480159061154457506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6115a75760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610a5e565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b031633146115f45760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461167c5760405162461bcd60e51b8152600401610a5e906126a4565b633b9aca006103e861168d60025490565b61169890600a6126ed565b6116a29190612704565b6116ac9190612704565b8110156117075760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610a5e565b61171981670de0b6b3a76400006126ed565b600a5550565b6005545f906001600160a01b0316331461174b5760405162461bcd60e51b8152600401610a5e906126a4565b50600955600190565b6005546001600160a01b0316331461177e5760405162461bcd60e51b8152600401610a5e906126a4565b6010819055600f55565b6005546001600160a01b031633146117b25760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146117fc5760405162461bcd60e51b8152600401610a5e906126a4565b6001600160a01b0381166118615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5e565b61186a8161204e565b50565b6001600160a01b0383166118cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a5e565b6001600160a01b0382166119305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a5e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119b65760405162461bcd60e51b8152600401610a5e90612783565b6001600160a01b0382166119dc5760405162461bcd60e51b8152600401610a5e906127c8565b6001600160a01b0383165f908152600c602052604090205460ff1615611a395760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610a5e565b6001600160a01b0382165f908152600c602052604090205460ff1615611a985760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610a5e565b805f03611aaf57611aaa83835f6120f2565b505050565b600b5460ff1615611de7576005546001600160a01b03848116911614801590611ae657506005546001600160a01b03838116911614155b8015611afa57506001600160a01b03821615155b8015611b105750600654600160a01b900460ff16155b15611de757600b54610100900460ff16611ba6576001600160a01b0383165f9081526012602052604090205460ff1680611b6157506001600160a01b0382165f9081526012602052604090205460ff165b611ba65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a5e565b6001600160a01b0383165f9081526014602052604090205460ff168015611be557506001600160a01b0382165f9081526013602052604090205460ff16155b15611cb957600854811115611c4b5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a5e565b600a546001600160a01b0383165f90815260208190526040902054611c709083612723565b1115611cb45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b611de7565b6001600160a01b0382165f9081526014602052604090205460ff168015611cf857506001600160a01b0383165f9081526013602052604090205460ff16155b15611d5f57600854811115611cb45760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a5e565b6001600160a01b0382165f9081526013602052604090205460ff16611de757600a546001600160a01b0383165f90815260208190526040902054611da39083612723565b1115611de75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5e565b305f9081526020819052604090205460095481108015908190611e125750600b5462010000900460ff165b8015611e285750600654600160a01b900460ff16155b8015611e4c57506001600160a01b0385165f9081526014602052604090205460ff16155b8015611e7057506001600160a01b0385165f9081526012602052604090205460ff16155b8015611e9457506001600160a01b0384165f9081526012602052604090205460ff16155b15611ec2576006805460ff60a01b1916600160a01b179055611eb4612244565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526012602052604090205460ff600160a01b909204821615911680611f0e57506001600160a01b0385165f9081526012602052604090205460ff165b15611f1657505f5b5f811561203a576001600160a01b0386165f9081526014602052604090205460ff168015611f4557505f600f54115b15611fa257611f6a6064611f64600f548861230990919063ffffffff16565b9061231b565b9050600f5460105482611f7d91906126ed565b611f879190612704565b60115f828254611f979190612723565b9091555061201c9050565b6001600160a01b0387165f9081526014602052604090205460ff168015611fca57505f600d54115b1561201c57611fe96064611f64600d548861230990919063ffffffff16565b9050600d54600e5482611ffc91906126ed565b6120069190612704565b60115f8282546120169190612723565b90915550505b801561202d5761202d8730836120f2565b612037818661280b565b94505b6120458787876120f2565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166121185760405162461bcd60e51b8152600401610a5e90612783565b6001600160a01b03821661213e5760405162461bcd60e51b8152600401610a5e906127c8565b6001600160a01b0383165f90815260208190526040902054818110156121b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a5e565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906121eb908490612723565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161223791815260200190565b60405180910390a36113e4565b305f908152602081905260408120546011549091821580612263575081155b1561226d57505050565b60095461227b9060146126ed565b831115612293576009546122909060146126ed565b92505b824761229e82612326565b5f6122a947836124dc565b5f60118190556007546040519293506001600160a01b031691839181818185875af1925050503d805f81146122f9576040519150601f19603f3d011682016040523d82523d5f602084013e6122fe565b606091505b505050505050505050565b5f61231482846126ed565b9392505050565b5f6123148284612704565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106123595761235961281e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f99190612768565b8160018151811061240c5761240c61281e565b60200260200101906001600160a01b031690816001600160a01b031681525050612457307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461186d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124ab9085905f90869030904290600401612832565b5f604051808303815f87803b1580156124c2575f80fd5b505af11580156124d4573d5f803e3d5ffd5b505050505050565b5f612314828461280b565b5f602080835283518060208501525f5b81811015612513578581018301518582016040015282016124f7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461186a575f80fd5b5f8060408385031215612558575f80fd5b823561256381612533565b946020939093013593505050565b5f60208284031215612581575f80fd5b5035919050565b5f805f6060848603121561259a575f80fd5b83356125a581612533565b925060208401356125b581612533565b929592945050506040919091013590565b5f602082840312156125d6575f80fd5b813561231481612533565b801515811461186a575f80fd5b5f80604083850312156125ff575f80fd5b823561260a81612533565b9150602083013561261a816125e1565b809150509250929050565b5f60208284031215612635575f80fd5b8135612314816125e1565b5f8060408385031215612651575f80fd5b823561265c81612533565b9150602083013561261a81612533565b600181811c9082168061268057607f821691505b60208210810361269e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a2e57610a2e6126d9565b5f8261271e57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610a2e57610a2e6126d9565b5f60208284031215612746575f80fd5b5051919050565b5f6020828403121561275d575f80fd5b8151612314816125e1565b5f60208284031215612778575f80fd5b815161231481612533565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a2e57610a2e6126d9565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156128825784516001600160a01b03168352938301939183019160010161285d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122052ad1e85c2329a7ce7de1aea06a315798b6f47249e9d228ab47c2b1734d9354964736f6c63430008180033

Deployed Bytecode Sourcemap

345:13141:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4254:169;;;;;;;;;;-1:-1:-1;4254:169:1;;;;;:::i;:::-;;:::i;:::-;;;1188:14:9;;1181:22;1163:41;;1151:2;1136:18;4254:169:1;1023:187:9;3207:108:1;;;;;;;;;;-1:-1:-1;3295:12:1;;3207:108;;;1361:25:9;;;1349:2;1334:18;3207:108:1;1215:177:9;3899:244:8;;;;;;;;;;-1:-1:-1;3899:244:8;;;;;:::i;:::-;;:::i;:::-;;4905:492:1;;;;;;;;;;-1:-1:-1;4905:492:1;;;;;:::i;:::-;;:::i;3050:92::-;;;;;;;;;;-1:-1:-1;3050:92:1;;3133:1;2185:36:9;;2173:2;2158:18;3050:92:1;2043:184:9;5806:215:1;;;;;;;;;;-1:-1:-1;5806:215:1;;;;;:::i;:::-;;:::i;803:38:8:-;;;;;;;;;;-1:-1:-1;803:38:8;;;;;;;;;;;478:28;;;;;;;;;;-1:-1:-1;478:28:8;;;;-1:-1:-1;;;;;478:28:8;;;;;;-1:-1:-1;;;;;2396:32:9;;;2378:51;;2366:2;2351:18;478:28:8;2232:203:9;683:33:8;;;;;;;;;;-1:-1:-1;683:33:8;;;;;;;;11744:253;;;;;;;;;;;;;:::i;6010:126::-;;;;;;;;;;-1:-1:-1;6010:126:8;;;;;:::i;:::-;-1:-1:-1;;;;;6100:28:8;6076:4;6100:28;;;:19;:28;;;;;;;;;6010:126;984:29;;;;;;;;;;;;;;;;12498:90;;;;;;;;;;;;;:::i;1022:28::-;;;;;;;;;;;;;;;;1057:30;;;;;;;;;;;;;;;;763:31;;;;;;;;;;-1:-1:-1;763:31:8;;;;;;;;;;;5825:177;;;;;;;;;;-1:-1:-1;5825:177:8;;;;;:::i;:::-;;:::i;3378:127:1:-;;;;;;;;;;-1:-1:-1;3378:127:1;;;;;:::i;:::-;-1:-1:-1;;;;;3479:18:1;3452:7;3479:18;;;;;;;;;;;;3378:127;1745:103:6;;;;;;;;;;;;;:::i;4771:168:8:-;;;;;;;;;;-1:-1:-1;4771:168:8;;;;;:::i;:::-;;:::i;422:49::-;;;;;;;;;;;;;;;583:20;;;;;;;;;;;;;;;;3510:121;;;;;;;;;;;;;:::i;4415:152::-;;;;;;;;;;-1:-1:-1;4415:152:8;;;;;:::i;:::-;;:::i;545:29::-;;;;;;;;;;-1:-1:-1;545:29:8;;;;-1:-1:-1;;;;;545:29:8;;;3346:112;;;;;;;;;;;;;:::i;1094:87:6:-;;;;;;;;;;-1:-1:-1;1167:6:6;;-1:-1:-1;;;;;1167:6:6;1094:87;;4663:100:8;;;;;;;;;;-1:-1:-1;4663:100:8;;;;;:::i;:::-;;:::i;2307:104:1:-;;;;;;;;;;;;;:::i;3024:314:8:-;;;;;;;;;;;;;:::i;5317:304::-;;;;;;;;;;-1:-1:-1;5317:304:8;;;;;:::i;:::-;;:::i;6524:413:1:-;;;;;;;;;;-1:-1:-1;6524:413:1;;;;;:::i;:::-;;:::i;12005:284:8:-;;;;;;;;;;-1:-1:-1;12005:284:8;;;;;:::i;:::-;;:::i;3718:175:1:-;;;;;;;;;;-1:-1:-1;3718:175:1;;;;;:::i;:::-;;:::i;12297:193:8:-;;;;;;;;;;-1:-1:-1;12297:193:8;;;;;:::i;:::-;;:::i;12596:370::-;;;;;;;;;;-1:-1:-1;12596:370:8;;;;;:::i;:::-;;:::i;1483:57::-;;;;;;;;;;-1:-1:-1;1483:57:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;723:33;;;;;;;;;;-1:-1:-1;723:33:8;;;;;;;;;;;5127:182;;;;;;;;;;-1:-1:-1;5127:182:8;;;;;:::i;:::-;;:::i;4151:256::-;;;;;;;;;;-1:-1:-1;4151:256:8;;;;;:::i;:::-;;:::i;1096:32::-;;;;;;;;;;;;;;;;3701:190;;;;;;;;;;-1:-1:-1;3701:190:8;;;;;:::i;:::-;;:::i;950:27::-;;;;;;;;;;;;;;;;3956:151:1;;;;;;;;;;-1:-1:-1;3956:151:1;;;;;:::i;:::-;-1:-1:-1;;;;;4072:18:1;;;4045:7;4072:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3956:151;610:33:8;;;;;;;;;;;;;;;;1277:48;;;;;;;;;;-1:-1:-1;1277:48:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;4947:172;;;;;;;;;;-1:-1:-1;4947:172:8;;;;;:::i;:::-;;:::i;13387:96::-;;;;;;;;;;-1:-1:-1;13387:96:8;;;;;:::i;:::-;;:::i;2003:201:6:-;;;;;;;;;;-1:-1:-1;2003:201:6;;;;;:::i;:::-;;:::i;650:24:8:-;;;;;;;;;;;;;;;;6144:113;;;;;;;;;;-1:-1:-1;6144:113:8;;;;;:::i;:::-;-1:-1:-1;;;;;6229:20:8;6205:4;6229:20;;;:11;:20;;;;;;;;;6144:113;2088:100:1;2142:13;2175:5;2168:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088:100;:::o;4254:169::-;4337:4;4354:39;752:10:0;4377:7:1;4386:6;4354:8;:39::i;:::-;-1:-1:-1;4411:4:1;4254:169;;;;;:::o;3899:244: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;:::-;;;;;;;;;4036:3:8::1;4028:4;4007:13;3295:12:1::0;;;3207:108;4007:13:8::1;:17;::::0;4023:1:::1;4007:17;:::i;:::-;4006:26;;;;:::i;:::-;4005:34;;;;:::i;:::-;3995:6;:44;;3973:126;;;::::0;-1:-1:-1;;;3973:126:8;;5550:2:9;3973:126:8::1;::::0;::::1;5532:21:9::0;;;5569:18;;;5562:30;5628:34;5608:18;;;5601:62;5680:18;;3973:126:8::1;5348:356:9::0;3973:126:8::1;4118:17;:6:::0;4128::::1;4118:17;:::i;:::-;4110:5;:25:::0;-1:-1:-1;3899:244:8:o;4905:492:1:-;5045:4;5062:36;5072:6;5080:9;5091:6;5062:9;:36::i;:::-;-1:-1:-1;;;;;5138:19:1;;5111:24;5138:19;;;:11;:19;;;;;;;;752:10:0;5138:33:1;;;;;;;;5190:26;;;;5182:79;;;;-1:-1:-1;;;5182:79:1;;5911:2:9;5182:79:1;;;5893:21:9;5950:2;5930:18;;;5923:30;5989:34;5969:18;;;5962:62;-1:-1:-1;;;6040:18:9;;;6033:38;6088:19;;5182:79:1;5709:404:9;5182:79:1;5297:57;5306:6;752:10:0;5347:6:1;5328:16;:25;5297:8;:57::i;:::-;-1:-1:-1;5385:4:1;;4905:492;-1:-1:-1;;;;4905:492:1:o;5806:215::-;752:10:0;5894:4:1;5943:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5943:34:1;;;;;;;;;;5894:4;;5911:80;;5934:7;;5943:47;;5980:10;;5943:47;:::i;:::-;5911:8;:80::i;11744:253: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;:::-;11819:46:8::1;::::0;-1:-1:-1;;;11819:46:8;;11834:4:::1;11819:46;::::0;::::1;2378:51:9::0;;;11801:15:8::1;::::0;11819:31:::1;::::0;2351:18:9;;11819:46:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11876:51;::::0;-1:-1:-1;;;11876:51:8;;11907:10:::1;11876:51;::::0;::::1;6611::9::0;6678:18;;;6671:34;;;11801:64:8;;-1:-1:-1;11891:4:8::1;::::0;11876:30:::1;::::0;6584:18:9;;11876:51:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;11938:51:8::1;::::0;11946:10:::1;::::0;11967:21:::1;11938:51:::0;::::1;;;::::0;::::1;::::0;;;11967:21;11946:10;11938:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;11790:207;11744:253::o:0;12498:90::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;12555:18:8::1;:25:::0;;-1:-1:-1;;12555:25:8::1;::::0;::::1;::::0;;12498:90::o;5825:177::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;5942:14:8::1;::::0;5909:48:::1;::::0;-1:-1:-1;;;;;5942:14:8;;::::1;::::0;5909:48;::::1;::::0;::::1;::::0;5942:14:::1;::::0;5909:48:::1;5968:14;:26:::0;;-1:-1:-1;;;;;;5968:26:8::1;-1:-1:-1::0;;;;;5968:26:8;;;::::1;::::0;;;::::1;::::0;;5825:177::o;1745:103:6:-;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;4771:168: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;:::-;4862:14:8::1;:29:::0;;;4902:12:::1;:29:::0;4771:168::o;3510:121::-;1167:6:6;;3562: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;3579:14:8::1;:22:::0;;-1:-1:-1;;3579:22:8::1;::::0;;;3510:121;:::o;4415:152::-;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;;;;;4528:24:8;;;::::1;;::::0;;;:16:::1;:24;::::0;;;;:31;;-1:-1:-1;;4528:31:8::1;::::0;::::1;;::::0;;;::::1;::::0;;4415:152::o;3346:112::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;3401:13:8::1;:20:::0;;-1:-1:-1;;3432:18:8;;;;;3346:112::o;4663: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;:::-;4734:11:8::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;4734:21:8;;::::1;::::0;;;::::1;::::0;;4663:100::o;2307:104:1:-;2363:13;2396:7;2389:14;;;;;:::i;3024:314: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;:::-;3109:13:8::1;-1:-1:-1::0;;;;;3109:21:8::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3091:67:8::1;;3167:4;3174:13;-1:-1:-1::0;;;;;3174:18:8::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3091:104;::::0;-1:-1:-1;;;;;;3091:104:8::1;::::0;;;;;;-1:-1:-1;;;;;7452:15:9;;;3091:104:8::1;::::0;::::1;7434:34:9::0;7504:15;;7484:18;;;7477:43;7369:18;;3091:104:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3075:13;:120:::0;;-1:-1:-1;;;;;;3075:120:8::1;-1:-1:-1::0;;;;;3075:120:8;;;::::1;::::0;;::::1;::::0;;3206:55:::1;::::0;-1:-1:-1;3206:25:8::1;:55::i;:::-;3309:13;::::0;3272:58:::1;::::0;-1:-1:-1;;;;;3309:13:8::1;::::0;3272:28:::1;:58::i;5317:304::-: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;:::-;5461:13:8::1;::::0;-1:-1:-1;;;;;5461:13:8;;::::1;5453:21:::0;;::::1;::::0;5431:128:::1;;;::::0;-1:-1:-1;;;5431:128:8;;7733:2:9;5431:128:8::1;::::0;::::1;7715:21:9::0;7772:2;7752:18;;;7745:30;7811:34;7791:18;;;7784:62;7882:27;7862:18;;;7855:55;7927:19;;5431:128:8::1;7531:421:9::0;5431:128:8::1;5572:41;5601:4;5607:5;5572:28;:41::i;6524:413:1:-:0;752:10:0;6617:4:1;6661:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6661:34:1;;;;;;;;;;6714:35;;;;6706:85;;;;-1:-1:-1;;;6706:85:1;;8159:2:9;6706:85:1;;;8141:21:9;8198:2;8178:18;;;8171:30;8237:34;8217:18;;;8210:62;-1:-1:-1;;;8288:18:9;;;8281:35;8333:19;;6706:85:1;7957:401:9;6706:85:1;6827:67;752:10:0;6850:7:1;6878:15;6859:16;:34;6827:8;:67::i;:::-;-1:-1:-1;6925:4:1;;6524:413;-1:-1:-1;;;6524:413:1:o;12005:284: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;;;;;12096:20:8;::::1;12088:59;;;::::0;-1:-1:-1;;;12088:59:8;;8565:2:9;12088:59:8::1;::::0;::::1;8547:21:9::0;8604:2;8584:18;;;8577:30;8643:28;8623:18;;;8616:56;8689:18;;12088:59:8::1;8363:350:9::0;12088:59:8::1;12185:39;::::0;-1:-1:-1;;;12185:39:8;;12218:4:::1;12185:39;::::0;::::1;2378:51:9::0;12158:24:8::1;::::0;-1:-1:-1;;;;;12185:24:8;::::1;::::0;::::1;::::0;2351:18:9;;12185:39:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12235:46;::::0;-1:-1:-1;;;12235:46:8;;-1:-1:-1;;;;;6629:32:9;;;12235:46:8::1;::::0;::::1;6611:51:9::0;6678:18;;;6671:34;;;12158:66:8;;-1:-1:-1;12235:23:8;;::::1;::::0;::::1;::::0;6584:18:9;;12235:46:8::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12077:212;12005:284:::0;;:::o;3718:175:1:-;3804:4;3821:42;752:10:0;3845:9:1;3856:6;3821:9;:42::i;12297:193: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;:::-;12367:12:8::1;12385:6;-1:-1:-1::0;;;;;12385:11:8::1;12418:21;12385:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12366:89;;;12474:7;12466:16;;;::::0;::::1;12596:370:::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;:::-;12664:18:8::1;::::0;;;::::1;;;12663:19;12655:65;;;::::0;-1:-1:-1;;;12655:65:8;;9130:2:9;12655:65:8::1;::::0;::::1;9112:21:9::0;9169:2;9149:18;;;9142:30;9208:34;9188:18;;;9181:62;-1:-1:-1;;;9259:18:9;;;9252:31;9300:19;;12655:65:8::1;8928:397:9::0;12655:65:8::1;12770:13;::::0;-1:-1:-1;;;;;12753:31:8;;::::1;12770:13:::0;::::1;12753:31;::::0;::::1;::::0;:95:::1;;-1:-1:-1::0;;;;;;12788:60:8;::::1;12805:42;12788:60;;12753:95;12731:191;;;::::0;-1:-1:-1;;;12731:191:8;;9532:2:9;12731:191:8::1;::::0;::::1;9514:21:9::0;9571:2;9551:18;;;9544:30;9610:34;9590:18;;;9583:62;-1:-1:-1;;;9661:18:9;;;9654:44;9715:19;;12731:191:8::1;9330:410:9::0;12731:191:8::1;-1:-1:-1::0;;;;;12933:18:8::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;12933:25:8::1;12954:4;12933:25;::::0;;12596:370::o;5127:182::-;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;;;;;5212:28:8;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;5212:39:8::1;::::0;::::1;;::::0;;::::1;::::0;;;5267:34;;1163:41:9;;;5267:34:8::1;::::0;1136:18:9;5267:34:8::1;;;;;;;5127:182:::0;;:::o;4151:256::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;4292:3:8::1;4284:4;4262:13;3295:12:1::0;;;3207:108;4262:13:8::1;:18;::::0;4278:2:::1;4262:18;:::i;:::-;4261:27;;;;:::i;:::-;4260:35;;;;:::i;:::-;4250:6;:45;;4228:131;;;::::0;-1:-1:-1;;;4228:131:8;;9947:2:9;4228:131:8::1;::::0;::::1;9929:21:9::0;9986:2;9966:18;;;9959:30;10025:34;10005:18;;;9998:62;-1:-1:-1;;;10076:18:9;;;10069:34;10120:19;;4228:131:8::1;9745:400:9::0;4228:131:8::1;4382:17;:6:::0;4392::::1;4382:17;:::i;:::-;4370:9;:29:::0;-1:-1:-1;4151:256:8:o;3701:190::-;1167:6:6;;3809: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;3831:18:8::1;:30:::0;3879:4:::1;::::0;3701:190::o;4947:172::-;1167:6:6;;-1:-1:-1;;;;;1167:6:6;752:10:0;1314:23:6;1306:68;;;;-1:-1:-1;;;1306:68:6;;;;;;;:::i;:::-;5039:15:8::1;:30:::0;;;5080:13:::1;:31:::0;4947:172::o;13387:96::-;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;;;;;13449:18:8::1;13470:5;13449:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;13449:26:8::1;::::0;;13387:96::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;;10352:2:9;2084:73:6::1;::::0;::::1;10334:21:9::0;10391:2;10371:18;;;10364:30;10430:34;10410:18;;;10403:62;-1:-1:-1;;;10481:18:9;;;10474:36;10527:19;;2084:73:6::1;10150:402:9::0;2084:73:6::1;2168:28;2187:8;2168:18;:28::i;:::-;2003:201:::0;:::o;10208:380:1:-;-1:-1:-1;;;;;10344:19:1;;10336:68;;;;-1:-1:-1;;;10336:68:1;;10759:2:9;10336:68:1;;;10741:21:9;10798:2;10778:18;;;10771:30;10837:34;10817:18;;;10810:62;-1:-1:-1;;;10888:18:9;;;10881:34;10932:19;;10336:68:1;10557:400:9;10336:68:1;-1:-1:-1;;;;;10423:21:1;;10415:68;;;;-1:-1:-1;;;10415:68:1;;11164:2:9;10415:68:1;;;11146:21:9;11203:2;11183:18;;;11176:30;11242:34;11222:18;;;11215:62;-1:-1:-1;;;11293:18:9;;;11286:32;11335:19;;10415:68:1;10962:398:9;10415:68:1;-1:-1:-1;;;;;10496:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10548:32;;1361:25:9;;;10548:32:1;;1334:18:9;10548:32:1;;;;;;;10208:380;;;:::o;6265:3591:8:-;-1:-1:-1;;;;;6397:18:8;;6389:68;;;;-1:-1:-1;;;6389:68:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;6476:16:8;;6468:64;;;;-1:-1:-1;;;6468:64:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;6552:17:8;;;;;;:11;:17;;;;;;;;6551:18;6543:48;;;;-1:-1:-1;;;6543:48:8;;12377:2:9;6543:48:8;;;12359:21:9;12416:2;12396:18;;;12389:30;-1:-1:-1;;;12435:18:9;;;12428:48;12493:18;;6543:48:8;12175:342:9;6543:48:8;-1:-1:-1;;;;;6611:15:8;;;;;;:11;:15;;;;;;;;6610:16;6602:48;;;;-1:-1:-1;;;6602:48:8;;12724:2:9;6602:48:8;;;12706:21:9;12763:2;12743:18;;;12736:30;-1:-1:-1;;;12782:18:9;;;12775:50;12842:18;;6602:48:8;12522:344:9;6602:48:8;6667:6;6677:1;6667:11;6663:93;;6695:28;6711:4;6717:2;6721:1;6695:15;:28::i;:::-;6265:3591;;;:::o;6663:93::-;6772:14;;;;6768:1547;;;1167:6:6;;-1:-1:-1;;;;;6825:15:8;;;1167:6:6;;6825:15:8;;;;:49;;-1:-1:-1;1167:6:6;;-1:-1:-1;;;;;6861:13:8;;;1167:6:6;;6861:13:8;;6825:49;:86;;;;-1:-1:-1;;;;;;6895:16:8;;;;6825:86;:116;;;;-1:-1:-1;6933:8:8;;-1:-1:-1;;;6933:8:8;;;;6932:9;6825:116;6803:1501;;;6981:13;;;;;;;6976:223;;-1:-1:-1;;;;;7053:25:8;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;7082:23:8;;;;;;:19;:23;;;;;;;;7053:52;7019:160;;;;-1:-1:-1;;;7019:160:8;;13073:2:9;7019:160:8;;;13055:21:9;13112:2;13092:18;;;13085:30;-1:-1:-1;;;13131:18:9;;;13124:52;13193:18;;7019:160:8;12871:346:9;7019:160:8;-1:-1:-1;;;;;7273:31:8;;;;;;:25;:31;;;;;;;;:77;;;;-1:-1:-1;;;;;;7330:20:8;;;;;;:16;:20;;;;;;;;7329:21;7273:77;7247:1042;;;7437:5;;7427:6;:15;;7393:139;;;;-1:-1:-1;;;7393:139:8;;13424:2:9;7393:139:8;;;13406:21:9;13463:2;13443:18;;;13436:30;13502:34;13482:18;;;13475:62;-1:-1:-1;;;13553:18:9;;;13546:36;13599:19;;7393:139:8;13222:402:9;7393:139:8;7615:9;;-1:-1:-1;;;;;3479:18:1;;3452:7;3479:18;;;;;;;;;;;7589:22:8;;:6;:22;:::i;:::-;:35;;7555:140;;;;-1:-1:-1;;;7555:140:8;;13831:2:9;7555:140:8;;;13813:21:9;13870:2;13850:18;;;13843:30;-1:-1:-1;;;13889:18:9;;;13882:49;13948:18;;7555:140:8;13629:343:9;7555:140:8;7247:1042;;;-1:-1:-1;;;;;7793:29:8;;;;;;:25;:29;;;;;;;;:77;;;;-1:-1:-1;;;;;;7848:22:8;;;;;;:16;:22;;;;;;;;7847:23;7793:77;7767:522;;;7957:5;;7947:6;:15;;7913:140;;;;-1:-1:-1;;;7913:140:8;;14179:2:9;7913:140:8;;;14161:21:9;14218:2;14198:18;;;14191:30;14257:34;14237:18;;;14230:62;-1:-1:-1;;;14308:18:9;;;14301:37;14355:19;;7913:140:8;13977:403:9;7767:522:8;-1:-1:-1;;;;;8084:20:8;;;;;;:16;:20;;;;;;;;8079:210;;8189:9;;-1:-1:-1;;;;;3479:18:1;;3452:7;3479:18;;;;;;;;;;;8163:22:8;;:6;:22;:::i;:::-;:35;;8129:140;;;;-1:-1:-1;;;8129:140:8;;13831:2:9;8129:140:8;;;13813:21:9;13870:2;13850:18;;;13843:30;-1:-1:-1;;;13889:18:9;;;13882:49;13948:18;;8129:140:8;13629:343:9;8129:140:8;8376:4;8327:28;3479:18:1;;;;;;;;;;;8434::8;;8410:42;;;;;;;8483:35;;-1:-1:-1;8507:11:8;;;;;;;8483:35;:61;;;;-1:-1:-1;8536:8:8;;-1:-1:-1;;;8536:8:8;;;;8535:9;8483:61;:110;;;;-1:-1:-1;;;;;;8562:31:8;;;;;;:25;:31;;;;;;;;8561:32;8483:110;:153;;;;-1:-1:-1;;;;;;8611:25:8;;;;;;:19;:25;;;;;;;;8610:26;8483:153;:194;;;;-1:-1:-1;;;;;;8654:23:8;;;;;;:19;:23;;;;;;;;8653:24;8483:194;8465:326;;;8704:8;:15;;-1:-1:-1;;;;8704:15:8;-1:-1:-1;;;8704:15:8;;;8736:10;:8;:10::i;:::-;8763:8;:16;;-1:-1:-1;;;;8763:16:8;;;8465:326;8819:8;;-1:-1:-1;;;;;8929:25:8;;8803:12;8929:25;;;:19;:25;;;;;;8819:8;-1:-1:-1;;;8819:8:8;;;;;8818:9;;8929:25;;:52;;-1:-1:-1;;;;;;8958:23:8;;;;;;:19;:23;;;;;;;;8929:52;8925:100;;;-1:-1:-1;9008:5:8;8925:100;9037:12;9142:7;9138:665;;;-1:-1:-1;;;;;9194:29:8;;;;;;:25;:29;;;;;;;;:50;;;;;9243:1;9227:13;;:17;9194:50;9190:464;;;9272:34;9302:3;9272:25;9283:13;;9272:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;9265:41;;9373:13;;9354:15;;9347:4;:22;;;;:::i;:::-;9346:40;;;;:::i;:::-;9325:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;9190:464:8;;-1:-1:-1;9190:464:8;;-1:-1:-1;;;;;9448:31:8;;;;;;:25;:31;;;;;;;;:51;;;;;9498:1;9483:12;;:16;9448:51;9444:210;;;9527:33;9556:3;9527:24;9538:12;;9527:6;:10;;:24;;;;:::i;:33::-;9520:40;;9626:12;;9608:14;;9601:4;:21;;;;:::i;:::-;9600:38;;;;:::i;:::-;9579:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;9444:210:8;9674:8;;9670:91;;9703:42;9719:4;9733;9740;9703:15;:42::i;:::-;9777:14;9787:4;9777:14;;:::i;:::-;;;9138:665;9815:33;9831:4;9837:2;9841:6;9815:15;:33::i;:::-;6378:3478;;;;6265:3591;;;:::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;5629:188:8:-;-1:-1:-1;;;;;5712:31:8;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;5712:39:8;;;;;;;;;;5769:40;;5712:39;;:31;5769:40;;;5629:188;;:::o;7427:733:1:-;-1:-1:-1;;;;;7567:20:1;;7559:70;;;;-1:-1:-1;;;7559:70:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7648:23:1;;7640:71;;;;-1:-1:-1;;;7640:71:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7808:17:1;;7784:21;7808:17;;;;;;;;;;;7844:23;;;;7836:74;;;;-1:-1:-1;;;7836:74:1;;14720:2:9;7836:74:1;;;14702:21:9;14759:2;14739:18;;;14732:30;14798:34;14778:18;;;14771:62;-1:-1:-1;;;14849:18:9;;;14842:36;14895:19;;7836:74:1;14518:402:9;7836:74:1;-1:-1:-1;;;;;7946:17:1;;;:9;:17;;;;;;;;;;;7966:22;;;7946:42;;8010:20;;;;;;;;:30;;7982:6;;7946:9;8010:30;;7982:6;;8010:30;:::i;:::-;;;;;;;;8075:9;-1:-1:-1;;;;;8058:35:1;8067:6;-1:-1:-1;;;;;8058:35:1;;8086:6;8058:35;;;;1361:25:9;;1349:2;1334:18;;1215:177;8058:35:1;;;;;;;;8106:46;6265:3591:8;10976:760;11059:4;11015:23;3479:18:1;;;;;;;;;;;11104:17:8;;3479:18:1;;11161:20:8;;;:46;;-1:-1:-1;11185:22:8;;11161:46;11157:85;;;11224:7;;;10976:760::o;11157:85::-;11276:18;;:23;;11297:2;11276:23;:::i;:::-;11258:15;:41;11254:115;;;11334:18;;:23;;11355:2;11334:23;:::i;:::-;11316:41;;11254:115;11412:15;11468:21;11502:36;11412:15;11502:16;:36::i;:::-;11551:18;11572:44;:21;11598:17;11572:25;:44::i;:::-;11649:1;11629:17;:21;;;11685:14;;11677:51;;11551:65;;-1:-1:-1;;;;;;11685:14:8;;11551:65;;11677:51;11649:1;11677:51;11551:65;11685:14;11677:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;10976:760: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;9864:583:8:-;10014:16;;;10028:1;10014:16;;;;;;;;9990:21;;10014:16;;;;;;;;;;-1:-1:-1;10014:16:8;9990:40;;10059:4;10041;10046:1;10041:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;10041:23:8;;;-1:-1:-1;;;;;10041:23:8;;;;;10085:13;-1:-1:-1;;;;;10085:18:8;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10075:4;10080:1;10075:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;10075:30:8;;;-1:-1:-1;;;;;10075:30:8;;;;;10118:60;10135:4;10150:13;10166:11;10118:8;:60::i;:::-;10217:222;;-1:-1:-1;;;10217:222:8;;-1:-1:-1;;;;;10217:13:8;:64;;;;:222;;10296:11;;10322:1;;10366:4;;10393;;10413:15;;10217:222;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9919:528;9864:583;:::o;2963:98:7:-;3021:7;3048:5;3052:1;3048;:5;:::i;14:548:9:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:9;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:9:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:9;;1397:180;-1:-1:-1;1397:180:9:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:9;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:9;2013:18;;;;2000:32;;1582:456::o;2440:247::-;2499:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:52;;;2568:1;2565;2558:12;2520:52;2607:9;2594:23;2626:31;2651:5;2626:31;:::i;2926:118::-;3012:5;3005:13;2998:21;2991:5;2988:32;2978:60;;3034:1;3031;3024:12;3049:382;3114:6;3122;3175:2;3163:9;3154:7;3150:23;3146:32;3143:52;;;3191:1;3188;3181:12;3143:52;3230:9;3217:23;3249:31;3274:5;3249:31;:::i;:::-;3299:5;-1:-1:-1;3356:2:9;3341:18;;3328:32;3369:30;3328:32;3369:30;:::i;:::-;3418:7;3408:17;;;3049:382;;;;;:::o;3436:241::-;3492:6;3545:2;3533:9;3524:7;3520:23;3516:32;3513:52;;;3561:1;3558;3551:12;3513:52;3600:9;3587:23;3619:28;3641:5;3619:28;:::i;3682:388::-;3750:6;3758;3811:2;3799:9;3790:7;3786:23;3782:32;3779:52;;;3827:1;3824;3817:12;3779:52;3866:9;3853:23;3885:31;3910:5;3885:31;:::i;:::-;3935:5;-1:-1:-1;3992:2:9;3977:18;;3964:32;4005:33;3964:32;4005:33;:::i;4075:380::-;4154:1;4150:12;;;;4197;;;4218:61;;4272:4;4264:6;4260:17;4250:27;;4218:61;4325:2;4317:6;4314:14;4294:18;4291:38;4288:161;;4371:10;4366:3;4362:20;4359:1;4352:31;4406:4;4403:1;4396:15;4434:4;4431:1;4424:15;4288:161;;4075:380;;;:::o;4460:356::-;4662:2;4644:21;;;4681:18;;;4674:30;4740:34;4735:2;4720:18;;4713:62;4807:2;4792:18;;4460:356::o;4821:127::-;4882:10;4877:3;4873:20;4870:1;4863:31;4913:4;4910:1;4903:15;4937:4;4934:1;4927:15;4953:168;5026:9;;;5057;;5074:15;;;5068:22;;5054:37;5044:71;;5095:18;;:::i;5126:217::-;5166:1;5192;5182:132;;5236:10;5231:3;5227:20;5224:1;5217:31;5271:4;5268:1;5261:15;5299:4;5296:1;5289:15;5182:132;-1:-1:-1;5328:9:9;;5126:217::o;6118:125::-;6183:9;;;6204:10;;;6201:36;;;6217:18;;:::i;6248:184::-;6318:6;6371:2;6359:9;6350:7;6346:23;6342:32;6339:52;;;6387:1;6384;6377:12;6339:52;-1:-1:-1;6410:16:9;;6248:184;-1:-1:-1;6248:184:9:o;6716:245::-;6783:6;6836:2;6824:9;6815:7;6811:23;6807:32;6804:52;;;6852:1;6849;6842:12;6804:52;6884:9;6878:16;6903:28;6925:5;6903:28;:::i;6966:251::-;7036:6;7089:2;7077:9;7068:7;7064:23;7060:32;7057:52;;;7105:1;7102;7095:12;7057:52;7137:9;7131:16;7156:31;7181:5;7156:31;:::i;11365:401::-;11567:2;11549:21;;;11606:2;11586:18;;;11579:30;11645:34;11640:2;11625:18;;11618:62;-1:-1:-1;;;11711:2:9;11696:18;;11689:35;11756:3;11741:19;;11365:401::o;11771:399::-;11973:2;11955:21;;;12012:2;11992:18;;;11985:30;12051:34;12046:2;12031:18;;12024:62;-1:-1:-1;;;12117:2:9;12102:18;;12095:33;12160:3;12145:19;;11771:399::o;14385:128::-;14452:9;;;14473:11;;;14470:37;;;14487:18;;:::i;15057:127::-;15118:10;15113:3;15109:20;15106:1;15099:31;15149:4;15146:1;15139:15;15173:4;15170:1;15163:15;15189:980;15451:4;15499:3;15488:9;15484:19;15530:6;15519:9;15512:25;15556:2;15594:6;15589:2;15578:9;15574:18;15567:34;15637:3;15632:2;15621:9;15617:18;15610:31;15661:6;15696;15690:13;15727:6;15719;15712:22;15765:3;15754:9;15750:19;15743:26;;15804:2;15796:6;15792:15;15778:29;;15825:1;15835:195;15849:6;15846:1;15843:13;15835:195;;;15914:13;;-1:-1:-1;;;;;15910:39:9;15898:52;;16005:15;;;;15970:12;;;;15946:1;15864:9;15835:195;;;-1:-1:-1;;;;;;;16086:32:9;;;;16081:2;16066:18;;16059:60;-1:-1:-1;;;16150:3:9;16135:19;16128:35;16047:3;15189:980;-1:-1:-1;;;15189:980:9:o

Swarm Source

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