ETH Price: $3,359.99 (-2.73%)
Gas: 2 Gwei

Token

LIZA (LIZA)
 

Overview

Max Total Supply

743,139,939.852088883550677786 LIZA

Holders

1,066 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-0.20%)

Onchain Market Cap

$1,074,765.90

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
266,299.002129782462270915 LIZA

Value
$385.13 ( ~0.114622430544378 Eth) [0.0358%]
0xe0f963f0ac501749e8ad4993a2a1b10427ae35d8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LIZA is an exceptional project, bringing a fresh approach to the crypto scene with its AI-driven utilities and bots that are set to transform crypto trading and decision-making

Market

Volume (24H):$213.66
Market Capitalization:$0.00
Circulating Supply:0.00 LIZA
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LizaToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
Website: https://lizatoken.com
Twitter: https://twitter.com/Lizatoken
Telegram: https://t.me/Liza_Token
Medium: https://medium.com/@Liza_Token
*/

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 contracts/LizaToken.sol

pragma solidity 0.8.15;


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

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

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

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

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

contract LizaToken is ERC20, Ownable {
    address public devTaxWallet;
    address public marketingTaxWallet;
    address public rewardsTaxWallet;
    address public cexWallet;
    address public rewardsWallet;


    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    IUniswapV2Router public uniswapV2Router;

    address public lpPair;

    bool public hasLimits = true;
    bool private swapping;
    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 public buyRewardsFee;
    uint256 public buyMarketingFee;
    uint256 public buyDevFee;
    uint256 public buyBurnFee;

    uint256 public sellTotalFees;
    uint256 public sellRewardsFee;
    uint256 public sellMarketingFee;
    uint256 public sellDevFee;
    uint256 public sellBurnFee;

    uint256 public tokensForRewards;
    uint256 public tokensForMarketing;
    uint256 public tokensForDev;
    uint256 public tokensForBurn;

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

    //events
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event MaxTransactionExclusion(address _address, bool excluded);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event OwnerForcedSwapBack(uint256 timestamp);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event RemovedLimits();
    event BuyBackTriggered(uint256 amount);

    constructor() ERC20("LIZA", "LIZA") {

        address newOwner = msg.sender; // can leave alone if owner is deployer.

        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;

        //create pair
        lpPair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _excludeFromMaxTransaction(address(lpPair), true);
        _setAutomatedMarketMakerPair(address(lpPair), true);

        uint256 totalSupply = 777777777 * 1e18;

        maxBuyAmount = totalSupply * 1 / 100;
        maxSellAmount = totalSupply * 1 / 100;
        maxWalletAmount = totalSupply * 1 / 100;
        swapTokensAtAmount = totalSupply * 1 / 1000;

        buyDevFee = 3;
        buyMarketingFee = 1;
        buyRewardsFee = 1;
        buyBurnFee = 1;
        buyTotalFees = buyBurnFee + buyRewardsFee + buyMarketingFee + buyDevFee;

        sellDevFee = 13;
        sellMarketingFee = 10;
        sellRewardsFee = 1;
        sellBurnFee = 1;
        sellTotalFees = sellBurnFee + sellRewardsFee + sellMarketingFee + sellDevFee;

        devTaxWallet = 0xa8bAE2505e986782BCEFD3A20d6DE02AF0f7001c;
        marketingTaxWallet = 0x9B197F752d3EE4486A078530a0546aCE65fEA41a;
        rewardsTaxWallet = 0xB31497898903CEF62Ad6CDA5c449B8BDF9C07596;
        rewardsWallet = 0xfec13df9f85BC3cE66b7113Fe8b8107bf7AeDf3C;
        cexWallet = 0x454450ee5C7f64632989993820dBA797702B1C0B;

        _excludeFromMaxTransaction(devTaxWallet, true);
        _excludeFromMaxTransaction(marketingTaxWallet, true);
        _excludeFromMaxTransaction(rewardsTaxWallet, true);
        _excludeFromMaxTransaction(rewardsWallet, true);
        _excludeFromMaxTransaction(cexWallet, true);
        _excludeFromMaxTransaction(address(this), true);

        excludeFromFees(newOwner, true);
        excludeFromFees(devTaxWallet, true);
        excludeFromFees(marketingTaxWallet, true);
        excludeFromFees(rewardsTaxWallet, true);
        excludeFromFees(rewardsWallet, true);
        excludeFromFees(cexWallet, true);

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

        _mint(newOwner, totalSupply * 85/100);
        _mint(rewardsWallet, totalSupply * 10/100); //mint 10% for rewards
        _mint(cexWallet, totalSupply * 5/100); //mint 5% for cex
        transferOwnership(newOwner);
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "cannot transfer from the zero address");
        require(to != address(0), "cannot transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");
        //check for max wallet / max transaction
        if(hasLimits){
            if(from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){


                //buy action
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy.");
                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet");
                }
                //sell action
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell.");
                }
                //other transfers
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max amount");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = true;

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

        uint256 fees = 0;

        if(takeFee){
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees / 100;
                tokensForRewards += fees * sellRewardsFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
            }
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * buyTotalFees / 100;
                tokensForRewards += fees * buyRewardsFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                tokensForBurn += fees * buyBurnFee / buyTotalFees;
            }

            if(fees > 0){

            super._transfer(from, address(this), fees);
            }

            amount -= fees;

        }

        super._transfer(from, to, amount);

    }

    function swapBack() private {

        //burn
        if(tokensForBurn > 0 && balanceOf(address(this)) >= tokensForBurn) {
            _burn(address(this), tokensForBurn);
        }
        tokensForBurn = 0;

        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDev + tokensForMarketing + tokensForRewards;

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

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

        bool success;

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        uint256 ethForDev = ethBalance * tokensForDev / (totalTokensToSwap);
        uint256 ethForReward = ethBalance * tokensForRewards / (totalTokensToSwap);
        uint256 ethForMarketing = ethBalance * tokensForMarketing / (totalTokensToSwap);

        (success,) = address(devTaxWallet).call{value: ethForDev}("");
        (success,) = address(rewardsTaxWallet).call{value: ethForReward}("");
        (success,) = address(marketingTaxWallet).call{value: address(this).balance}("");

    }

    receive() external payable {}

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

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

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

    }

    // force Swap back if slippage issues.
    function forceSwapBack() external onlyOwner {
        require(balanceOf(address(this)) >= swapTokensAtAmount, "Contract should have a token amount that is higher than restriction");
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

    // withdraw ETH from contract address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

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

    function setWalletsAddresses(address _development, address _marketing, address _rewards) external onlyOwner {
        require(_development != address(0),"address cannot be zero address");
        require(_marketing != address(0),"address cannot be zero address");
        require(_rewards != address(0),"address cannot be zero address");

        devTaxWallet = payable(_development);
        marketingTaxWallet = payable(_marketing);
        rewardsTaxWallet = payable(_rewards);

    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 1 / 1000, "Swap amount cannot be higher than 0.1% total supply.");
        swapTokensAtAmount = newAmount;
    }

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

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

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

    function updateBuyFees(uint256 _developmentFee, uint256 _marketingFee, uint256 _rewardsFee, uint256 _burnFee) external onlyOwner {
        buyDevFee = _developmentFee;
        buyMarketingFee = _marketingFee;
        buyRewardsFee = _rewardsFee;
        buyBurnFee = _burnFee;
        buyTotalFees = buyDevFee + buyMarketingFee + buyRewardsFee + buyBurnFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(uint256 _developmentFee, uint256 _marketingFee, uint256 _rewardsFee, uint256 _burnFee) external onlyOwner {
        sellDevFee = _developmentFee;
        sellMarketingFee = _marketingFee;
        sellRewardsFee = _rewardsFee;
        sellBurnFee = _burnFee;
        sellTotalFees = sellDevFee + sellMarketingFee + sellRewardsFee + sellBurnFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

        _excludeFromMaxTransaction(lpPair, value);

        emit SetAutomatedMarketMakerPair(lpPair, value);
    }
    //remove limits after token is stable
    function removeLimits() external onlyOwner {
        hasLimits = false;
        emit RemovedLimits();
    }

    // useful for buybacks or to reclaim any ETH on the contract in a way that helps holders.
    function buyBackTokens(uint256 amountInWei) external onlyOwner {
        require(amountInWei <= 10 ether, "May not buy more than 10 ETH in a single buy to reduce sandwich attacks");

        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountInWei}(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
        emit BuyBackTriggered(amountInWei);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountInWei","type":"uint256"}],"name":"buyBackTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cexWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"devTaxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTaxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsTaxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_development","type":"address"},{"internalType":"address","name":"_marketing","type":"address"},{"internalType":"address","name":"_rewards","type":"address"}],"name":"setWalletsAddresses","outputs":[],"stateMutability":"nonpayable","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":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600f805460ff60a01b1916600160a01b1790553480156200002457600080fd5b506040805180820182526004808252634c495a4160e01b60208084018290528451808601909552918452908301529060036200006183826200098f565b5060046200007082826200098f565b5050506200008d62000087620005ac60201b60201c565b620005b0565b600e80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051339291829163c45a0155916004808201926020929091908290030181865afa158015620000f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011d919062000a5b565b6001600160a01b031663c9c6539630600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000180573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a6919062000a5b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000a5b565b600f80546001600160a01b0319166001600160a01b039290921691821790556200024690600162000602565b600f546200025f906001600160a01b0316600162000663565b6b02835cd9c6d6f2156b24000060646200027b82600162000aa3565b62000287919062000ac5565b600b5560646200029982600162000aa3565b620002a5919062000ac5565b600c556064620002b782600162000aa3565b620002c3919062000ac5565b600d556103e8620002d682600162000aa3565b620002e2919062000ac5565b60105560036014819055600160138190556012819055601581905562000309818062000ae8565b62000315919062000ae8565b62000321919062000ae8565b601155600d6019819055600a601881905560016017819055601a8190556200034a908062000ae8565b62000356919062000ae8565b62000362919062000ae8565b601655600680546001600160a01b031990811673a8bae2505e986782bcefd3a20d6de02af0f7001c908117909255600780548216739b197f752d3ee4486a078530a0546ace65fea41a17905560088054821673b31497898903cef62ad6cda5c449b8bdf9c07596179055600a8054821673fec13df9f85bc3ce66b7113fe8b8107bf7aedf3c1790556009805490911673454450ee5c7f64632989993820dba797702b1c0b1790556200041690600162000602565b6007546200042f906001600160a01b0316600162000602565b60085462000448906001600160a01b0316600162000602565b600a5462000461906001600160a01b0316600162000602565b6009546200047a906001600160a01b0316600162000602565b6200048730600162000602565b62000494836001620006d9565b600654620004ad906001600160a01b03166001620006d9565b600754620004c6906001600160a01b03166001620006d9565b600854620004df906001600160a01b03166001620006d9565b600a54620004f8906001600160a01b03166001620006d9565b60095462000511906001600160a01b03166001620006d9565b6200051e306001620006d9565b6200052d61dead6001620006d9565b620005538360646200054184605562000aa3565b6200054d919062000ac5565b62000742565b600a805462000578916001600160a01b03909116906064906200054190859062000aa3565b60095462000598906001600160a01b031660646200054184600562000aa3565b620005a38362000809565b50505062000b03565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660008181526020808052604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b600f80546001600160a01b039081166000908152602160205260409020805460ff191684151517905590546200069b91168262000602565b600f54604051821515916001600160a01b0316907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b620006e362000888565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200079e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620007b2919062000ae8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200081362000888565b6001600160a01b0381166200087a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000795565b6200088581620005b0565b50565b6005546001600160a01b03163314620008e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000795565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200091657607f821691505b6020821081036200093757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620008e657600081815260208120601f850160051c81016020861015620009665750805b601f850160051c820191505b81811015620009875782815560010162000972565b505050505050565b81516001600160401b03811115620009ab57620009ab620008eb565b620009c381620009bc845462000901565b846200093d565b602080601f831160018114620009fb5760008415620009e25750858301515b600019600386901b1c1916600185901b17855562000987565b600085815260208120601f198616915b8281101562000a2c5788860151825594840194600190910190840162000a0b565b508582101562000a4b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a6e57600080fd5b81516001600160a01b038116811462000a8657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000ac05762000ac062000a8d565b500290565b60008262000ae357634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000afe5762000afe62000a8d565b500190565b612c418062000b136000396000f3fe60806040526004361061036e5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e71dc3f511610095578063f48c36f41161006f578063f48c36f41461096d578063f54afa781461098e578063f5648a4f146109a4578063fc155d1d146109b957600080fd5b8063e71dc3f514610917578063e7ad9fcd1461092d578063f2fde38b1461094d57600080fd5b8063d85ba063116100d1578063d85ba063146108ab578063dc3f0d0f146108c1578063dd62ed3e146108e1578063e2f456051461090157600080fd5b8063c02466681461084b578063c18bc1951461086b578063d257b34f1461088b57600080fd5b8063a457c2d711610164578063adb873bd1161013e578063adb873bd146107cf578063b1075943146107e5578063b62496f514610805578063bb8d51311461083557600080fd5b8063a457c2d714610779578063a9059cbb14610799578063aa4bde28146107b957600080fd5b80639a7a23d6116101a05780639a7a23d6146107175780639c3b4fdc146107375780639fccce321461074d578063a0d82dc51461076357600080fd5b80638da5cb5b146106ce57806392136913146106ec57806395d89b411461070257600080fd5b8063452ed4f1116102a057806370a082311161023e5780637571336a116102185780637571336a1461066c57806377a3b6091461068c5780637bce5a04146106a257806388e765ff146106b857600080fd5b806370a0823114610622578063715018a614610642578063751039fc1461065757600080fd5b80635b35f9c91161027a5780635b35f9c9146105b657806366d602ae146105d65780636a486a8e146105ec5780636ade20fb1461060257600080fd5b8063452ed4f11461056157806351f205e414610581578063570e5f621461059657600080fd5b80631f3fed8f1161030d5780632be32b61116102e75780632be32b61146104e35780632e6ed7ef14610505578063313ce56714610525578063395093511461054157600080fd5b80631f3fed8f1461048d57806323b872dd146104a3578063272c57fd146104c357600080fd5b806310d5de531161034957806310d5de53146104095780631694505e1461043857806318160ddd146104585780631d7778561461047757600080fd5b8062851fb31461037a57806306fdde03146103b7578063095ea7b3146103d957600080fd5b3661037557005b600080fd5b34801561038657600080fd5b5060075461039a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103c357600080fd5b506103cc6109d9565b6040516103ae919061282f565b3480156103e557600080fd5b506103f96103f4366004612899565b610a6b565b60405190151581526020016103ae565b34801561041557600080fd5b506103f96104243660046128c5565b602080526000908152604090205460ff1681565b34801561044457600080fd5b50600e5461039a906001600160a01b031681565b34801561046457600080fd5b506002545b6040519081526020016103ae565b34801561048357600080fd5b50610469601e5481565b34801561049957600080fd5b50610469601c5481565b3480156104af57600080fd5b506103f96104be3660046128e9565b610a83565b3480156104cf57600080fd5b5060065461039a906001600160a01b031681565b3480156104ef57600080fd5b506105036104fe36600461292a565b610aa7565b005b34801561051157600080fd5b50610503610520366004612943565b610b97565b34801561053157600080fd5b50604051601281526020016103ae565b34801561054d57600080fd5b506103f961055c366004612899565b610c2e565b34801561056d57600080fd5b50600f5461039a906001600160a01b031681565b34801561058d57600080fd5b50610503610c50565b3480156105a257600080fd5b5060085461039a906001600160a01b031681565b3480156105c257600080fd5b50600a5461039a906001600160a01b031681565b3480156105e257600080fd5b50610469600c5481565b3480156105f857600080fd5b5061046960165481565b34801561060e57600080fd5b5061050361061d366004612975565b610d41565b34801561062e57600080fd5b5061046961063d3660046128c5565b610dfa565b34801561064e57600080fd5b50610503610e15565b34801561066357600080fd5b50610503610e29565b34801561067857600080fd5b506105036106873660046129c0565b610e69565b34801561069857600080fd5b5061046960125481565b3480156106ae57600080fd5b5061046960135481565b3480156106c457600080fd5b50610469600b5481565b3480156106da57600080fd5b506005546001600160a01b031661039a565b3480156106f857600080fd5b5061046960185481565b34801561070e57600080fd5b506103cc610f0e565b34801561072357600080fd5b506105036107323660046129c0565b610f1d565b34801561074357600080fd5b5061046960145481565b34801561075957600080fd5b50610469601d5481565b34801561076f57600080fd5b5061046960195481565b34801561078557600080fd5b506103f9610794366004612899565b610fef565b3480156107a557600080fd5b506103f96107b4366004612899565b61106a565b3480156107c557600080fd5b50610469600d5481565b3480156107db57600080fd5b50610469601a5481565b3480156107f157600080fd5b5060095461039a906001600160a01b031681565b34801561081157600080fd5b506103f96108203660046128c5565b60216020526000908152604090205460ff1681565b34801561084157600080fd5b5061046960175481565b34801561085757600080fd5b506105036108663660046129c0565b611078565b34801561087757600080fd5b5061050361088636600461292a565b6110df565b34801561089757600080fd5b506105036108a636600461292a565b6111c6565b3480156108b757600080fd5b5061046960115481565b3480156108cd57600080fd5b506105036108dc36600461292a565b6112ef565b3480156108ed57600080fd5b506104696108fc3660046129fe565b6113d4565b34801561090d57600080fd5b5061046960105481565b34801561092357600080fd5b5061046960155481565b34801561093957600080fd5b50610503610948366004612943565b6113ff565b34801561095957600080fd5b506105036109683660046128c5565b611490565b34801561097957600080fd5b50600f546103f990600160a01b900460ff1681565b34801561099a57600080fd5b50610469601b5481565b3480156109b057600080fd5b50610503611509565b3480156109c557600080fd5b506105036109d436600461292a565b611553565b6060600380546109e890612a2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1490612a2c565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b600033610a79818585611775565b5060019392505050565b600033610a9185828561189a565b610a9c85858561190e565b506001949350505050565b610aaf612087565b670de0b6b3a76400006103e8610ac460025490565b610acf906002612a7c565b610ad99190612a9b565b610ae39190612a9b565b811015610b495760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b60648201526084015b60405180910390fd5b610b5b81670de0b6b3a7640000612a7c565b600b8190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b610b9f612087565b60148490556013839055601282905560158190558082610bbf8587612abd565b610bc99190612abd565b610bd39190612abd565b601181905560191015610c285760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b40565b50505050565b600033610a79818585610c4183836113d4565b610c4b9190612abd565b611775565b610c58612087565b601054610c6430610dfa565b1015610ce45760405162461bcd60e51b815260206004820152604360248201527f436f6e74726163742073686f756c642068617665206120746f6b656e20616d6f60448201527f756e74207468617420697320686967686572207468616e20726573747269637460648201526234b7b760e91b608482015260a401610b40565b600f805460ff60a81b1916600160a81b179055610cff6120e1565b600f805460ff60a81b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610d49612087565b6001600160a01b038316610d6f5760405162461bcd60e51b8152600401610b4090612ad5565b6001600160a01b038216610d955760405162461bcd60e51b8152600401610b4090612ad5565b6001600160a01b038116610dbb5760405162461bcd60e51b8152600401610b4090612ad5565b600680546001600160a01b039485166001600160a01b031991821617909155600780549385169382169390931790925560088054919093169116179055565b6001600160a01b031660009081526020819052604090205490565b610e1d612087565b610e2760006122e7565b565b610e31612087565b600f805460ff60a01b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610e71612087565b80610ee457600f546001600160a01b0390811690831603610ee45760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610b40565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6060600480546109e890612a2c565b610f25612087565b600f546001600160a01b0390811690831603610fa95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b40565b610fb38282612339565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60003381610ffd82866113d4565b90508381101561105d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b40565b610a9c8286868403611775565b600033610a7981858561190e565b611080612087565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110e7612087565b670de0b6b3a76400006103e86110fc60025490565b611107906003612a7c565b6111119190612a9b565b61111b9190612a9b565b81101561117f5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610b40565b61119181670de0b6b3a7640000612a7c565b600d8190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610b8c565b6111ce612087565b620186a06111db60025490565b6111e6906001612a7c565b6111f09190612a9b565b81101561125d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b40565b6103e861126960025490565b611274906001612a7c565b61127e9190612a9b565b8111156112ea5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610b40565b601055565b6112f7612087565b670de0b6b3a76400006103e861130c60025490565b611317906002612a7c565b6113219190612a9b565b61132b9190612a9b565b81101561138d5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610b40565b61139f81670de0b6b3a7640000612a7c565b600c8190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610b8c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611407612087565b601984905560188390556017829055601a81905580826114278587612abd565b6114319190612abd565b61143b9190612abd565b601681905560191015610c285760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b40565b611498612087565b6001600160a01b0381166114fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b40565b611506816122e7565b50565b611511612087565b604051600090339047908381818185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c28565b61155b612087565b678ac7230489e800008111156115e95760405162461bcd60e51b815260206004820152604760248201527f4d6179206e6f7420627579206d6f7265207468616e2031302045544820696e2060448201527f612073696e676c652062757920746f207265647563652073616e64776963682060648201526661747461636b7360c81b608482015260a401610b40565b6040805160028082526060820183526000926020830190803683375050600e54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611653573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116779190612b0c565b8160008151811061168a5761168a612b29565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106116be576116be612b29565b6001600160a01b039283166020918202929092010152600e5460405163b6f9de9560e01b815291169063b6f9de9590849061170690600090869061dead904290600401612b83565b6000604051808303818588803b15801561171f57600080fd5b505af1158015611733573d6000803e3d6000fd5b50505050507fa017c1567cfcdd2d750a8c01e39fe2a846bcebc293c7d078477014d6848205688260405161176991815260200190565b60405180910390a15050565b6001600160a01b0383166117d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b40565b6001600160a01b0382166118385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b40565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006118a684846113d4565b90506000198114610c2857818110156119015760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b40565b610c288484848403611775565b6001600160a01b0383166119725760405162461bcd60e51b815260206004820152602560248201527f63616e6e6f74207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b40565b6001600160a01b0382166119d45760405162461bcd60e51b815260206004820152602360248201527f63616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b40565b60008111611a245760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610b40565b600f54600160a01b900460ff1615611d1a576005546001600160a01b03848116911614801590611a6257506005546001600160a01b03838116911614155b8015611a7657506001600160a01b03821615155b8015611a8d57506001600160a01b03821661dead14155b8015611ab257506001600160a01b0383166000908152601f602052604090205460ff16155b8015611ad757506001600160a01b0382166000908152601f602052604090205460ff16155b15611d1a576001600160a01b03831660009081526021602052604090205460ff168015611b1c57506001600160a01b038216600090815260208052604090205460ff16155b15611bed57600b54811115611b845760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610b40565b600d54611b9083610dfa565b611b9a9083612abd565b1115611be85760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610b40565b611d1a565b6001600160a01b03821660009081526021602052604090205460ff168015611c2d57506001600160a01b038316600090815260208052604090205460ff16155b15611c9757600c54811115611be85760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610b40565b6001600160a01b038216600090815260208052604090205460ff16611d1a57600d54611cc283610dfa565b611ccc9083612abd565b1115611d1a5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d617820616d6f756e7400000000000000006044820152606401610b40565b6000611d2530610dfa565b60105490915081108015908190611d465750600f54600160a81b900460ff16155b8015611d6b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611d9057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611db557506001600160a01b0384166000908152601f602052604090205460ff16155b15611de357600f805460ff60a81b1916600160a81b179055611dd56120e1565b600f805460ff60a81b191690555b6001600160a01b0385166000908152601f602052604090205460019060ff1680611e2557506001600160a01b0385166000908152601f602052604090205460ff165b15611e2e575060005b60008115612073576001600160a01b03861660009081526021602052604090205460ff168015611e6057506000601654115b15611f4857606460165486611e759190612a7c565b611e7f9190612a9b565b905060165460175482611e929190612a7c565b611e9c9190612a9b565b601b6000828254611ead9190612abd565b9091555050601654601954611ec29083612a7c565b611ecc9190612a9b565b601d6000828254611edd9190612abd565b9091555050601654601854611ef29083612a7c565b611efc9190612a9b565b601c6000828254611f0d9190612abd565b9091555050601654601a54611f229083612a7c565b611f2c9190612a9b565b601e6000828254611f3d9190612abd565b909155506120559050565b6001600160a01b03871660009081526021602052604090205460ff168015611f7257506000601154115b1561205557606460115486611f879190612a7c565b611f919190612a9b565b905060115460125482611fa49190612a7c565b611fae9190612a9b565b601b6000828254611fbf9190612abd565b9091555050601154601454611fd49083612a7c565b611fde9190612a9b565b601d6000828254611fef9190612abd565b90915550506011546013546120049083612a7c565b61200e9190612a9b565b601c600082825461201f9190612abd565b90915550506011546015546120349083612a7c565b61203e9190612a9b565b601e600082825461204f9190612abd565b90915550505b8015612066576120668730836123ad565b6120708186612bb8565b94505b61207e8787876123ad565b50505050505050565b6005546001600160a01b03163314610e275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b40565b6000601e541180156120fd5750601e546120fa30610dfa565b10155b1561210e5761210e30601e54612551565b6000601e81905561211e30610dfa565b90506000601b54601c54601d546121359190612abd565b61213f9190612abd565b905081158061214c575080155b15612155575050565b601054612163906014612a7c565b82111561217b57601054612178906014612a7c565b91505b60006121868361267b565b601d544790600090849061219a9084612a7c565b6121a49190612a9b565b9050600084601b54846121b79190612a7c565b6121c19190612a9b565b9050600085601c54856121d49190612a7c565b6121de9190612a9b565b6006546040519192506001600160a01b0316908490600081818185875af1925050503d806000811461222c576040519150601f19603f3d011682016040523d82523d6000602084013e612231565b606091505b50506008546040519196506001600160a01b0316908390600081818185875af1925050503d8060008114612281576040519150601f19603f3d011682016040523d82523d6000602084013e612286565b606091505b50506007546040519196506001600160a01b0316904790600081818185875af1925050503d80600081146122d6576040519150601f19603f3d011682016040523d82523d6000602084013e6122db565b606091505b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f80546001600160a01b039081166000908152602160205260409020805460ff1916841515179055905461236f9116826127d5565b600f54604051821515916001600160a01b0316907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166124115760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b40565b6001600160a01b0382166124735760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b40565b6001600160a01b038316600090815260208190526040902054818110156124eb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b40565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c28565b6001600160a01b0382166125b15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b40565b6001600160a01b038216600090815260208190526040902054818110156126255760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b40565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161188d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126b0576126b0612b29565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612709573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272d9190612b0c565b8160018151811061274057612740612b29565b6001600160a01b039283166020918202929092010152600e546127669130911684611775565b600e5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061279f908590600090869030904290600401612bcf565b600060405180830381600087803b1580156127b957600080fd5b505af11580156127cd573d6000803e3d6000fd5b505050505050565b6001600160a01b03821660008181526020808052604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67469101611769565b600060208083528351808285015260005b8181101561285c57858101830151858201604001528201612840565b8181111561286e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461150657600080fd5b600080604083850312156128ac57600080fd5b82356128b781612884565b946020939093013593505050565b6000602082840312156128d757600080fd5b81356128e281612884565b9392505050565b6000806000606084860312156128fe57600080fd5b833561290981612884565b9250602084013561291981612884565b929592945050506040919091013590565b60006020828403121561293c57600080fd5b5035919050565b6000806000806080858703121561295957600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561298a57600080fd5b833561299581612884565b925060208401356129a581612884565b915060408401356129b581612884565b809150509250925092565b600080604083850312156129d357600080fd5b82356129de81612884565b9150602083013580151581146129f357600080fd5b809150509250929050565b60008060408385031215612a1157600080fd5b8235612a1c81612884565b915060208301356129f381612884565b600181811c90821680612a4057607f821691505b602082108103612a6057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612a9657612a96612a66565b500290565b600082612ab857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612ad057612ad0612a66565b500190565b6020808252601e908201527f616464726573732063616e6e6f74206265207a65726f20616464726573730000604082015260600190565b600060208284031215612b1e57600080fd5b81516128e281612884565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612b785781516001600160a01b031687529582019590820190600101612b53565b509495945050505050565b848152608060208201526000612b9c6080830186612b3f565b6001600160a01b03949094166040830152506060015292915050565b600082821015612bca57612bca612a66565b500390565b85815284602082015260a060408201526000612bee60a0830186612b3f565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212209f96b72d93712e34ef234886aa8e9e0c897e50fdf824f358bf7a67538186294964736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061036e5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e71dc3f511610095578063f48c36f41161006f578063f48c36f41461096d578063f54afa781461098e578063f5648a4f146109a4578063fc155d1d146109b957600080fd5b8063e71dc3f514610917578063e7ad9fcd1461092d578063f2fde38b1461094d57600080fd5b8063d85ba063116100d1578063d85ba063146108ab578063dc3f0d0f146108c1578063dd62ed3e146108e1578063e2f456051461090157600080fd5b8063c02466681461084b578063c18bc1951461086b578063d257b34f1461088b57600080fd5b8063a457c2d711610164578063adb873bd1161013e578063adb873bd146107cf578063b1075943146107e5578063b62496f514610805578063bb8d51311461083557600080fd5b8063a457c2d714610779578063a9059cbb14610799578063aa4bde28146107b957600080fd5b80639a7a23d6116101a05780639a7a23d6146107175780639c3b4fdc146107375780639fccce321461074d578063a0d82dc51461076357600080fd5b80638da5cb5b146106ce57806392136913146106ec57806395d89b411461070257600080fd5b8063452ed4f1116102a057806370a082311161023e5780637571336a116102185780637571336a1461066c57806377a3b6091461068c5780637bce5a04146106a257806388e765ff146106b857600080fd5b806370a0823114610622578063715018a614610642578063751039fc1461065757600080fd5b80635b35f9c91161027a5780635b35f9c9146105b657806366d602ae146105d65780636a486a8e146105ec5780636ade20fb1461060257600080fd5b8063452ed4f11461056157806351f205e414610581578063570e5f621461059657600080fd5b80631f3fed8f1161030d5780632be32b61116102e75780632be32b61146104e35780632e6ed7ef14610505578063313ce56714610525578063395093511461054157600080fd5b80631f3fed8f1461048d57806323b872dd146104a3578063272c57fd146104c357600080fd5b806310d5de531161034957806310d5de53146104095780631694505e1461043857806318160ddd146104585780631d7778561461047757600080fd5b8062851fb31461037a57806306fdde03146103b7578063095ea7b3146103d957600080fd5b3661037557005b600080fd5b34801561038657600080fd5b5060075461039a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103c357600080fd5b506103cc6109d9565b6040516103ae919061282f565b3480156103e557600080fd5b506103f96103f4366004612899565b610a6b565b60405190151581526020016103ae565b34801561041557600080fd5b506103f96104243660046128c5565b602080526000908152604090205460ff1681565b34801561044457600080fd5b50600e5461039a906001600160a01b031681565b34801561046457600080fd5b506002545b6040519081526020016103ae565b34801561048357600080fd5b50610469601e5481565b34801561049957600080fd5b50610469601c5481565b3480156104af57600080fd5b506103f96104be3660046128e9565b610a83565b3480156104cf57600080fd5b5060065461039a906001600160a01b031681565b3480156104ef57600080fd5b506105036104fe36600461292a565b610aa7565b005b34801561051157600080fd5b50610503610520366004612943565b610b97565b34801561053157600080fd5b50604051601281526020016103ae565b34801561054d57600080fd5b506103f961055c366004612899565b610c2e565b34801561056d57600080fd5b50600f5461039a906001600160a01b031681565b34801561058d57600080fd5b50610503610c50565b3480156105a257600080fd5b5060085461039a906001600160a01b031681565b3480156105c257600080fd5b50600a5461039a906001600160a01b031681565b3480156105e257600080fd5b50610469600c5481565b3480156105f857600080fd5b5061046960165481565b34801561060e57600080fd5b5061050361061d366004612975565b610d41565b34801561062e57600080fd5b5061046961063d3660046128c5565b610dfa565b34801561064e57600080fd5b50610503610e15565b34801561066357600080fd5b50610503610e29565b34801561067857600080fd5b506105036106873660046129c0565b610e69565b34801561069857600080fd5b5061046960125481565b3480156106ae57600080fd5b5061046960135481565b3480156106c457600080fd5b50610469600b5481565b3480156106da57600080fd5b506005546001600160a01b031661039a565b3480156106f857600080fd5b5061046960185481565b34801561070e57600080fd5b506103cc610f0e565b34801561072357600080fd5b506105036107323660046129c0565b610f1d565b34801561074357600080fd5b5061046960145481565b34801561075957600080fd5b50610469601d5481565b34801561076f57600080fd5b5061046960195481565b34801561078557600080fd5b506103f9610794366004612899565b610fef565b3480156107a557600080fd5b506103f96107b4366004612899565b61106a565b3480156107c557600080fd5b50610469600d5481565b3480156107db57600080fd5b50610469601a5481565b3480156107f157600080fd5b5060095461039a906001600160a01b031681565b34801561081157600080fd5b506103f96108203660046128c5565b60216020526000908152604090205460ff1681565b34801561084157600080fd5b5061046960175481565b34801561085757600080fd5b506105036108663660046129c0565b611078565b34801561087757600080fd5b5061050361088636600461292a565b6110df565b34801561089757600080fd5b506105036108a636600461292a565b6111c6565b3480156108b757600080fd5b5061046960115481565b3480156108cd57600080fd5b506105036108dc36600461292a565b6112ef565b3480156108ed57600080fd5b506104696108fc3660046129fe565b6113d4565b34801561090d57600080fd5b5061046960105481565b34801561092357600080fd5b5061046960155481565b34801561093957600080fd5b50610503610948366004612943565b6113ff565b34801561095957600080fd5b506105036109683660046128c5565b611490565b34801561097957600080fd5b50600f546103f990600160a01b900460ff1681565b34801561099a57600080fd5b50610469601b5481565b3480156109b057600080fd5b50610503611509565b3480156109c557600080fd5b506105036109d436600461292a565b611553565b6060600380546109e890612a2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1490612a2c565b8015610a615780601f10610a3657610100808354040283529160200191610a61565b820191906000526020600020905b815481529060010190602001808311610a4457829003601f168201915b5050505050905090565b600033610a79818585611775565b5060019392505050565b600033610a9185828561189a565b610a9c85858561190e565b506001949350505050565b610aaf612087565b670de0b6b3a76400006103e8610ac460025490565b610acf906002612a7c565b610ad99190612a9b565b610ae39190612a9b565b811015610b495760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b60648201526084015b60405180910390fd5b610b5b81670de0b6b3a7640000612a7c565b600b8190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b610b9f612087565b60148490556013839055601282905560158190558082610bbf8587612abd565b610bc99190612abd565b610bd39190612abd565b601181905560191015610c285760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b40565b50505050565b600033610a79818585610c4183836113d4565b610c4b9190612abd565b611775565b610c58612087565b601054610c6430610dfa565b1015610ce45760405162461bcd60e51b815260206004820152604360248201527f436f6e74726163742073686f756c642068617665206120746f6b656e20616d6f60448201527f756e74207468617420697320686967686572207468616e20726573747269637460648201526234b7b760e91b608482015260a401610b40565b600f805460ff60a81b1916600160a81b179055610cff6120e1565b600f805460ff60a81b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610d49612087565b6001600160a01b038316610d6f5760405162461bcd60e51b8152600401610b4090612ad5565b6001600160a01b038216610d955760405162461bcd60e51b8152600401610b4090612ad5565b6001600160a01b038116610dbb5760405162461bcd60e51b8152600401610b4090612ad5565b600680546001600160a01b039485166001600160a01b031991821617909155600780549385169382169390931790925560088054919093169116179055565b6001600160a01b031660009081526020819052604090205490565b610e1d612087565b610e2760006122e7565b565b610e31612087565b600f805460ff60a01b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b610e71612087565b80610ee457600f546001600160a01b0390811690831603610ee45760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610b40565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6060600480546109e890612a2c565b610f25612087565b600f546001600160a01b0390811690831603610fa95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b40565b610fb38282612339565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60003381610ffd82866113d4565b90508381101561105d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b40565b610a9c8286868403611775565b600033610a7981858561190e565b611080612087565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110e7612087565b670de0b6b3a76400006103e86110fc60025490565b611107906003612a7c565b6111119190612a9b565b61111b9190612a9b565b81101561117f5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610b40565b61119181670de0b6b3a7640000612a7c565b600d8190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610b8c565b6111ce612087565b620186a06111db60025490565b6111e6906001612a7c565b6111f09190612a9b565b81101561125d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b40565b6103e861126960025490565b611274906001612a7c565b61127e9190612a9b565b8111156112ea5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610b40565b601055565b6112f7612087565b670de0b6b3a76400006103e861130c60025490565b611317906002612a7c565b6113219190612a9b565b61132b9190612a9b565b81101561138d5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610b40565b61139f81670de0b6b3a7640000612a7c565b600c8190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610b8c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611407612087565b601984905560188390556017829055601a81905580826114278587612abd565b6114319190612abd565b61143b9190612abd565b601681905560191015610c285760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b40565b611498612087565b6001600160a01b0381166114fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b40565b611506816122e7565b50565b611511612087565b604051600090339047908381818185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c28565b61155b612087565b678ac7230489e800008111156115e95760405162461bcd60e51b815260206004820152604760248201527f4d6179206e6f7420627579206d6f7265207468616e2031302045544820696e2060448201527f612073696e676c652062757920746f207265647563652073616e64776963682060648201526661747461636b7360c81b608482015260a401610b40565b6040805160028082526060820183526000926020830190803683375050600e54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611653573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116779190612b0c565b8160008151811061168a5761168a612b29565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106116be576116be612b29565b6001600160a01b039283166020918202929092010152600e5460405163b6f9de9560e01b815291169063b6f9de9590849061170690600090869061dead904290600401612b83565b6000604051808303818588803b15801561171f57600080fd5b505af1158015611733573d6000803e3d6000fd5b50505050507fa017c1567cfcdd2d750a8c01e39fe2a846bcebc293c7d078477014d6848205688260405161176991815260200190565b60405180910390a15050565b6001600160a01b0383166117d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b40565b6001600160a01b0382166118385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b40565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006118a684846113d4565b90506000198114610c2857818110156119015760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b40565b610c288484848403611775565b6001600160a01b0383166119725760405162461bcd60e51b815260206004820152602560248201527f63616e6e6f74207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b40565b6001600160a01b0382166119d45760405162461bcd60e51b815260206004820152602360248201527f63616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b40565b60008111611a245760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610b40565b600f54600160a01b900460ff1615611d1a576005546001600160a01b03848116911614801590611a6257506005546001600160a01b03838116911614155b8015611a7657506001600160a01b03821615155b8015611a8d57506001600160a01b03821661dead14155b8015611ab257506001600160a01b0383166000908152601f602052604090205460ff16155b8015611ad757506001600160a01b0382166000908152601f602052604090205460ff16155b15611d1a576001600160a01b03831660009081526021602052604090205460ff168015611b1c57506001600160a01b038216600090815260208052604090205460ff16155b15611bed57600b54811115611b845760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610b40565b600d54611b9083610dfa565b611b9a9083612abd565b1115611be85760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d61782077616c6c657400000000000000006044820152606401610b40565b611d1a565b6001600160a01b03821660009081526021602052604090205460ff168015611c2d57506001600160a01b038316600090815260208052604090205460ff16155b15611c9757600c54811115611be85760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610b40565b6001600160a01b038216600090815260208052604090205460ff16611d1a57600d54611cc283610dfa565b611ccc9083612abd565b1115611d1a5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420457863656564206d617820616d6f756e7400000000000000006044820152606401610b40565b6000611d2530610dfa565b60105490915081108015908190611d465750600f54600160a81b900460ff16155b8015611d6b57506001600160a01b03851660009081526021602052604090205460ff16155b8015611d9057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611db557506001600160a01b0384166000908152601f602052604090205460ff16155b15611de357600f805460ff60a81b1916600160a81b179055611dd56120e1565b600f805460ff60a81b191690555b6001600160a01b0385166000908152601f602052604090205460019060ff1680611e2557506001600160a01b0385166000908152601f602052604090205460ff165b15611e2e575060005b60008115612073576001600160a01b03861660009081526021602052604090205460ff168015611e6057506000601654115b15611f4857606460165486611e759190612a7c565b611e7f9190612a9b565b905060165460175482611e929190612a7c565b611e9c9190612a9b565b601b6000828254611ead9190612abd565b9091555050601654601954611ec29083612a7c565b611ecc9190612a9b565b601d6000828254611edd9190612abd565b9091555050601654601854611ef29083612a7c565b611efc9190612a9b565b601c6000828254611f0d9190612abd565b9091555050601654601a54611f229083612a7c565b611f2c9190612a9b565b601e6000828254611f3d9190612abd565b909155506120559050565b6001600160a01b03871660009081526021602052604090205460ff168015611f7257506000601154115b1561205557606460115486611f879190612a7c565b611f919190612a9b565b905060115460125482611fa49190612a7c565b611fae9190612a9b565b601b6000828254611fbf9190612abd565b9091555050601154601454611fd49083612a7c565b611fde9190612a9b565b601d6000828254611fef9190612abd565b90915550506011546013546120049083612a7c565b61200e9190612a9b565b601c600082825461201f9190612abd565b90915550506011546015546120349083612a7c565b61203e9190612a9b565b601e600082825461204f9190612abd565b90915550505b8015612066576120668730836123ad565b6120708186612bb8565b94505b61207e8787876123ad565b50505050505050565b6005546001600160a01b03163314610e275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b40565b6000601e541180156120fd5750601e546120fa30610dfa565b10155b1561210e5761210e30601e54612551565b6000601e81905561211e30610dfa565b90506000601b54601c54601d546121359190612abd565b61213f9190612abd565b905081158061214c575080155b15612155575050565b601054612163906014612a7c565b82111561217b57601054612178906014612a7c565b91505b60006121868361267b565b601d544790600090849061219a9084612a7c565b6121a49190612a9b565b9050600084601b54846121b79190612a7c565b6121c19190612a9b565b9050600085601c54856121d49190612a7c565b6121de9190612a9b565b6006546040519192506001600160a01b0316908490600081818185875af1925050503d806000811461222c576040519150601f19603f3d011682016040523d82523d6000602084013e612231565b606091505b50506008546040519196506001600160a01b0316908390600081818185875af1925050503d8060008114612281576040519150601f19603f3d011682016040523d82523d6000602084013e612286565b606091505b50506007546040519196506001600160a01b0316904790600081818185875af1925050503d80600081146122d6576040519150601f19603f3d011682016040523d82523d6000602084013e6122db565b606091505b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f80546001600160a01b039081166000908152602160205260409020805460ff1916841515179055905461236f9116826127d5565b600f54604051821515916001600160a01b0316907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166124115760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b40565b6001600160a01b0382166124735760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b40565b6001600160a01b038316600090815260208190526040902054818110156124eb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b40565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c28565b6001600160a01b0382166125b15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b40565b6001600160a01b038216600090815260208190526040902054818110156126255760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b40565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161188d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126b0576126b0612b29565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612709573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272d9190612b0c565b8160018151811061274057612740612b29565b6001600160a01b039283166020918202929092010152600e546127669130911684611775565b600e5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061279f908590600090869030904290600401612bcf565b600060405180830381600087803b1580156127b957600080fd5b505af11580156127cd573d6000803e3d6000fd5b505050505050565b6001600160a01b03821660008181526020808052604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd67469101611769565b600060208083528351808285015260005b8181101561285c57858101830151858201604001528201612840565b8181111561286e576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461150657600080fd5b600080604083850312156128ac57600080fd5b82356128b781612884565b946020939093013593505050565b6000602082840312156128d757600080fd5b81356128e281612884565b9392505050565b6000806000606084860312156128fe57600080fd5b833561290981612884565b9250602084013561291981612884565b929592945050506040919091013590565b60006020828403121561293c57600080fd5b5035919050565b6000806000806080858703121561295957600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561298a57600080fd5b833561299581612884565b925060208401356129a581612884565b915060408401356129b581612884565b809150509250925092565b600080604083850312156129d357600080fd5b82356129de81612884565b9150602083013580151581146129f357600080fd5b809150509250929050565b60008060408385031215612a1157600080fd5b8235612a1c81612884565b915060208301356129f381612884565b600181811c90821680612a4057607f821691505b602082108103612a6057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612a9657612a96612a66565b500290565b600082612ab857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612ad057612ad0612a66565b500190565b6020808252601e908201527f616464726573732063616e6e6f74206265207a65726f20616464726573730000604082015260600190565b600060208284031215612b1e57600080fd5b81516128e281612884565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612b785781516001600160a01b031687529582019590820190600101612b53565b509495945050505050565b848152608060208201526000612b9c6080830186612b3f565b6001600160a01b03949094166040830152506060015292915050565b600082821015612bca57612bca612a66565b500390565b85815284602082015260a060408201526000612bee60a0830186612b3f565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212209f96b72d93712e34ef234886aa8e9e0c897e50fdf824f358bf7a67538186294964736f6c634300080f0033

Deployed Bytecode Sourcemap

21638:14581:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21716:33;;;;;;;;;;-1:-1:-1;21716:33:0;;;;-1:-1:-1;;;;;21716:33:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;21716:33:0;;;;;;;;9536:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11896:201::-;;;;;;;;;;-1:-1:-1;11896:201:0;;;;;:::i;:::-;;:::i;:::-;;;1445:14:1;;1438:22;1420:41;;1408:2;1393:18;11896:201:0;1280:187:1;22709:64:0;;;;;;;;;;-1:-1:-1;22709:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21970:39;;;;;;;;;;-1:-1:-1;21970:39:0;;;;-1:-1:-1;;;;;21970:39:0;;;10665:108;;;;;;;;;;-1:-1:-1;10753:12:0;;10665:108;;;2102:25:1;;;2090:2;2075:18;10665:108:0;1956:177:1;22612:28:0;;;;;;;;;;;;;;;;22538:33;;;;;;;;;;;;;;;;12677:261;;;;;;;;;;-1:-1:-1;12677:261:0;;;;;:::i;:::-;;:::i;21682:27::-;;;;;;;;;;-1:-1:-1;21682:27:0;;;;-1:-1:-1;;;;;21682:27:0;;;33335:269;;;;;;;;;;-1:-1:-1;33335:269:0;;;;;:::i;:::-;;:::i;:::-;;33894:440;;;;;;;;;;-1:-1:-1;33894:440:0;;;;;:::i;:::-;;:::i;10507:93::-;;;;;;;;;;-1:-1:-1;10507:93:0;;10590:2;3316:36:1;;3304:2;3289:18;10507:93:0;3174:184:1;13347:238:0;;;;;;;;;;-1:-1:-1;13347:238:0;;;;;:::i;:::-;;:::i;22018:21::-;;;;;;;;;;-1:-1:-1;22018:21:0;;;;-1:-1:-1;;;;;22018:21:0;;;31395:315;;;;;;;;;;;;;:::i;21756:31::-;;;;;;;;;;-1:-1:-1;21756:31:0;;;;-1:-1:-1;;;;;21756:31:0;;;21825:28;;;;;;;;;;-1:-1:-1;21825:28:0;;;;-1:-1:-1;;;;;21825:28:0;;;21898;;;;;;;;;;;;;;;;22324;;;;;;;;;;;;;;;;32119:496;;;;;;;;;;-1:-1:-1;32119:496:0;;;;;:::i;:::-;;:::i;10836:127::-;;;;;;;;;;-1:-1:-1;10836:127:0;;;;;:::i;:::-;;:::i;2977:103::-;;;;;;;;;;;;;:::i;35399:110::-;;;;;;;;;;;;;:::i;30273:260::-;;;;;;;;;;-1:-1:-1;30273:260:0;;;;;:::i;:::-;;:::i;22187:28::-;;;;;;;;;;;;;;;;22222:30;;;;;;;;;;;;;;;;21864:27;;;;;;;;;;;;;;;;2336:87;;;;;;;;;;-1:-1:-1;2409:6:0;;-1:-1:-1;;;;;2409:6:0;2336:87;;22395:31;;;;;;;;;;;;;;;;9755:104;;;;;;;;;;;;;:::i;34801:295::-;;;;;;;;;;-1:-1:-1;34801:295:0;;;;;:::i;:::-;;:::i;22259:24::-;;;;;;;;;;;;;;;;22578:27;;;;;;;;;;;;;;;;22433:25;;;;;;;;;;;;;;;;14088:436;;;;;;;;;;-1:-1:-1;14088:436:0;;;;;:::i;:::-;;:::i;11169:193::-;;;;;;;;;;-1:-1:-1;11169:193:0;;;;;:::i;:::-;;:::i;21933:30::-;;;;;;;;;;;;;;;;22465:26;;;;;;;;;;;;;;;;21794:24;;;;;;;;;;-1:-1:-1;21794:24:0;;;;-1:-1:-1;;;;;21794:24:0;;;22929:58;;;;;;;;;;-1:-1:-1;22929:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22359:29;;;;;;;;;;;;;;;;31929:182;;;;;;;;;;-1:-1:-1;31929:182:0;;;;;:::i;:::-;;:::i;33043:284::-;;;;;;;;;;-1:-1:-1;33043:284:0;;;;;:::i;:::-;;:::i;32685:350::-;;;;;;;;;;-1:-1:-1;32685:350:0;;;;;:::i;:::-;;:::i;22153:27::-;;;;;;;;;;;;;;;;33612:274;;;;;;;;;;-1:-1:-1;33612:274:0;;;;;:::i;:::-;;:::i;11425:151::-;;;;;;;;;;-1:-1:-1;11425:151:0;;;;;:::i;:::-;;:::i;22111:33::-;;;;;;;;;;;;;;;;22290:25;;;;;;;;;;;;;;;;34342:451;;;;;;;;;;-1:-1:-1;34342:451:0;;;;;:::i;:::-;;:::i;3235:201::-;;;;;;;;;;-1:-1:-1;3235:201:0;;;;;:::i;:::-;;:::i;22048:28::-;;;;;;;;;;-1:-1:-1;22048:28:0;;;;-1:-1:-1;;;22048:28:0;;;;;;22500:31;;;;;;;;;;;;;;;;31761:160;;;;;;;;;;;;;:::i;35612:602::-;;;;;;;;;;-1:-1:-1;35612:602:0;;;;;:::i;:::-;;:::i;9536:100::-;9590:13;9623:5;9616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9536:100;:::o;11896:201::-;11979:4;963:10;12035:32;963:10;12051:7;12060:6;12035:8;:32::i;:::-;-1:-1:-1;12085:4:0;;11896:201;-1:-1:-1;;;11896:201:0:o;12677:261::-;12774:4;963:10;12832:38;12848:4;963:10;12863:6;12832:15;:38::i;:::-;12881:27;12891:4;12897:2;12901:6;12881:9;:27::i;:::-;-1:-1:-1;12926:4:0;;12677:261;-1:-1:-1;;;;12677:261:0:o;33335:269::-;2222:13;:11;:13::i;:::-;33454:4:::1;33448;33428:13;10753:12:::0;;;10665:108;33428:13:::1;:17;::::0;33444:1:::1;33428:17;:::i;:::-;:24;;;;:::i;:::-;33427:31;;;;:::i;:::-;33417:6;:41;;33409:95;;;::::0;-1:-1:-1;;;33409:95:0;;5825:2:1;33409:95:0::1;::::0;::::1;5807:21:1::0;5864:2;5844:18;;;5837:30;5903:34;5883:18;;;5876:62;-1:-1:-1;;;5954:18:1;;;5947:39;6003:19;;33409:95:0::1;;;;;;;;;33530:17;:6:::0;33540::::1;33530:17;:::i;:::-;33515:12;:32:::0;;;33563:33:::1;::::0;2102:25:1;;;33563:33:0::1;::::0;2090:2:1;2075:18;33563:33:0::1;;;;;;;;33335:269:::0;:::o;33894:440::-;2222:13;:11;:13::i;:::-;34034:9:::1;:27:::0;;;34072:15:::1;:31:::0;;;34114:13:::1;:27:::0;;;34152:10:::1;:21:::0;;;34165:8;34130:11;34199:27:::1;34090:13:::0;34046:15;34199:27:::1;:::i;:::-;:43;;;;:::i;:::-;:56;;;;:::i;:::-;34184:12;:71:::0;;;34290:2:::1;-1:-1:-1::0;34274:18:0::1;34266:60;;;::::0;-1:-1:-1;;;34266:60:0;;6368:2:1;34266:60:0::1;::::0;::::1;6350:21:1::0;6407:2;6387:18;;;6380:30;6446:31;6426:18;;;6419:59;6495:18;;34266:60:0::1;6166:353:1::0;34266:60:0::1;33894:440:::0;;;;:::o;13347:238::-;13435:4;963:10;13491:64;963:10;13507:7;13544:10;13516:25;963:10;13507:7;13516:9;:25::i;:::-;:38;;;;:::i;:::-;13491:8;:64::i;31395:315::-;2222:13;:11;:13::i;:::-;31486:18:::1;;31458:24;31476:4;31458:9;:24::i;:::-;:46;;31450:126;;;::::0;-1:-1:-1;;;31450:126:0;;6726:2:1;31450:126:0::1;::::0;::::1;6708:21:1::0;6765:2;6745:18;;;6738:30;6804:34;6784:18;;;6777:62;6875:34;6855:18;;;6848:62;-1:-1:-1;;;6926:19:1;;;6919:34;6970:19;;31450:126:0::1;6524:471:1::0;31450:126:0::1;31587:8;:15:::0;;-1:-1:-1;;;;31587:15:0::1;-1:-1:-1::0;;;31587:15:0::1;::::0;;31613:10:::1;:8;:10::i;:::-;31634:8;:16:::0;;-1:-1:-1;;;;31634:16:0::1;::::0;;31666:36:::1;::::0;31686:15:::1;2102:25:1::0;;31666:36:0::1;::::0;2090:2:1;2075:18;31666:36:0::1;;;;;;;31395:315::o:0;32119:496::-;2222:13;:11;:13::i;:::-;-1:-1:-1;;;;;32246:26:0;::::1;32238:68;;;;-1:-1:-1::0;;;32238:68:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32325:24:0;::::1;32317:66;;;;-1:-1:-1::0;;;32317:66:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32402:22:0;::::1;32394:64;;;;-1:-1:-1::0;;;32394:64:0::1;;;;;;;:::i;:::-;32471:12;:36:::0;;-1:-1:-1;;;;;32471:36:0;;::::1;-1:-1:-1::0;;;;;;32471:36:0;;::::1;;::::0;;;32518:18:::1;:40:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;32569:16:::1;:36:::0;;;;;::::1;::::0;::::1;;::::0;;32119:496::o;10836:127::-;-1:-1:-1;;;;;10937:18:0;10910:7;10937:18;;;;;;;;;;;;10836:127::o;2977:103::-;2222:13;:11;:13::i;:::-;3042:30:::1;3069:1;3042:18;:30::i;:::-;2977:103::o:0;35399:110::-;2222:13;:11;:13::i;:::-;35453:9:::1;:17:::0;;-1:-1:-1;;;;35453:17:0::1;::::0;;35486:15:::1;::::0;::::1;::::0;35465:5:::1;::::0;35486:15:::1;35399:110::o:0;30273:260::-;2222:13;:11;:13::i;:::-;30369:4:::1;30365:104;;30407:6;::::0;-1:-1:-1;;;;;30407:6:0;;::::1;30397:16:::0;;::::1;::::0;30389:68:::1;;;::::0;-1:-1:-1;;;30389:68:0;;7561:2:1;30389:68:0::1;::::0;::::1;7543:21:1::0;7600:2;7580:18;;;7573:30;7639:34;7619:18;;;7612:62;-1:-1:-1;;;7690:18:1;;;7683:37;7737:19;;30389:68:0::1;7359:403:1::0;30389:68:0::1;-1:-1:-1::0;;;;;30479:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;30479:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30273:260::o;9755:104::-;9811:13;9844:7;9837:14;;;;;:::i;34801:295::-;2222:13;:11;:13::i;:::-;34910:6:::1;::::0;-1:-1:-1;;;;;34910:6:0;;::::1;34902:14:::0;;::::1;::::0;34894:84:::1;;;::::0;-1:-1:-1;;;34894:84:0;;7969:2:1;34894:84:0::1;::::0;::::1;7951:21:1::0;8008:2;7988:18;;;7981:30;8047:34;8027:18;;;8020:62;8118:27;8098:18;;;8091:55;8163:19;;34894:84:0::1;7767:421:1::0;34894:84:0::1;34991:41;35020:4;35026:5;34991:28;:41::i;:::-;35048:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;35048:40:0;::::1;::::0;::::1;::::0;;;::::1;34801:295:::0;;:::o;14088:436::-;14181:4;963:10;14181:4;14264:25;963:10;14281:7;14264:9;:25::i;:::-;14237:52;;14328:15;14308:16;:35;;14300:85;;;;-1:-1:-1;;;14300:85:0;;8395:2:1;14300:85:0;;;8377:21:1;8434:2;8414:18;;;8407:30;8473:34;8453:18;;;8446:62;-1:-1:-1;;;8524:18:1;;;8517:35;8569:19;;14300:85:0;8193:401:1;14300:85:0;14421:60;14430:5;14437:7;14465:15;14446:16;:34;14421:8;:60::i;11169:193::-;11248:4;963:10;11304:28;963:10;11321:2;11325:6;11304:9;:28::i;31929:182::-;2222:13;:11;:13::i;:::-;-1:-1:-1;;;;;32014:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32014:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32069:34;;1420:41:1;;;32069:34:0::1;::::0;1393:18:1;32069:34:0::1;;;;;;;31929:182:::0;;:::o;33043:284::-;2222:13;:11;:13::i;:::-;33165:4:::1;33159;33139:13;10753:12:::0;;;10665:108;33139:13:::1;:17;::::0;33155:1:::1;33139:17;:::i;:::-;:24;;;;:::i;:::-;33138:31;;;;:::i;:::-;33128:6;:41;;33120:98;;;::::0;-1:-1:-1;;;33120:98:0;;8801:2:1;33120:98:0::1;::::0;::::1;8783:21:1::0;8840:2;8820:18;;;8813:30;8879:34;8859:18;;;8852:62;-1:-1:-1;;;8930:18:1;;;8923:42;8982:19;;33120:98:0::1;8599:408:1::0;33120:98:0::1;33247:17;:6:::0;33257::::1;33247:17;:::i;:::-;33229:15;:35:::0;;;33280:39:::1;::::0;2102:25:1;;;33280:39:0::1;::::0;2090:2:1;2075:18;33280:39:0::1;1956:177:1::0;32685:350:0;2222:13;:11;:13::i;:::-;32809:6:::1;32789:13;10753:12:::0;;;10665:108;32789:13:::1;:17;::::0;32805:1:::1;32789:17;:::i;:::-;:26;;;;:::i;:::-;32776:9;:39;;32768:105;;;::::0;-1:-1:-1;;;32768:105:0;;9214:2:1;32768:105:0::1;::::0;::::1;9196:21:1::0;9253:2;9233:18;;;9226:30;9292:34;9272:18;;;9265:62;-1:-1:-1;;;9343:18:1;;;9336:51;9404:19;;32768:105:0::1;9012:417:1::0;32768:105:0::1;32925:4;32905:13;10753:12:::0;;;10665:108;32905:13:::1;:17;::::0;32921:1:::1;32905:17;:::i;:::-;:24;;;;:::i;:::-;32892:9;:37;;32884:102;;;::::0;-1:-1:-1;;;32884:102:0;;9636:2:1;32884:102:0::1;::::0;::::1;9618:21:1::0;9675:2;9655:18;;;9648:30;9714:34;9694:18;;;9687:62;-1:-1:-1;;;9765:18:1;;;9758:50;9825:19;;32884:102:0::1;9434:416:1::0;32884:102:0::1;32997:18;:30:::0;32685:350::o;33612:274::-;2222:13;:11;:13::i;:::-;33732:4:::1;33726;33706:13;10753:12:::0;;;10665:108;33706:13:::1;:17;::::0;33722:1:::1;33706:17;:::i;:::-;:24;;;;:::i;:::-;33705:31;;;;:::i;:::-;33695:6;:41;;33687:96;;;::::0;-1:-1:-1;;;33687:96:0;;10057:2:1;33687:96:0::1;::::0;::::1;10039:21:1::0;10096:2;10076:18;;;10069:30;10135:34;10115:18;;;10108:62;-1:-1:-1;;;10186:18:1;;;10179:40;10236:19;;33687:96:0::1;9855:406:1::0;33687:96:0::1;33810:17;:6:::0;33820::::1;33810:17;:::i;:::-;33794:13;:33:::0;;;33843:35:::1;::::0;2102:25:1;;;33843:35:0::1;::::0;2090:2:1;2075:18;33843:35:0::1;1956:177:1::0;11425:151:0;-1:-1:-1;;;;;11541:18:0;;;11514:7;11541:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11425:151::o;34342:451::-;2222:13;:11;:13::i;:::-;34483:10:::1;:28:::0;;;34522:16:::1;:32:::0;;;34565:14:::1;:28:::0;;;34604:11:::1;:22:::0;;;34618:8;34582:11;34653:29:::1;34541:13:::0;34496:15;34653:29:::1;:::i;:::-;:46;;;;:::i;:::-;:60;;;;:::i;:::-;34637:13;:76:::0;;;34749:2:::1;-1:-1:-1::0;34732:19:0::1;34724:61;;;::::0;-1:-1:-1;;;34724:61:0;;6368:2:1;34724:61:0::1;::::0;::::1;6350:21:1::0;6407:2;6387:18;;;6380:30;6446:31;6426:18;;;6419:59;6495:18;;34724:61:0::1;6166:353:1::0;3235:201:0;2222:13;:11;:13::i;:::-;-1:-1:-1;;;;;3324:22:0;::::1;3316:73;;;::::0;-1:-1:-1;;;3316:73:0;;10468:2:1;3316:73:0::1;::::0;::::1;10450:21:1::0;10507:2;10487:18;;;10480:30;10546:34;10526:18;;;10519:62;-1:-1:-1;;;10597:18:1;;;10590:36;10643:19;;3316:73:0::1;10266:402:1::0;3316:73:0::1;3400:28;3419:8;3400:18;:28::i;:::-;3235:201:::0;:::o;31761:160::-;2222:13;:11;:13::i;:::-;31855:58:::1;::::0;31819:12:::1;::::0;31863:10:::1;::::0;31887:21:::1;::::0;31819:12;31855:58;31819:12;31855:58;31887:21;31863:10;31855:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35612:602:::0;2222:13;:11;:13::i;:::-;35709:8:::1;35694:11;:23;;35686:107;;;::::0;-1:-1:-1;;;35686:107:0;;11085:2:1;35686:107:0::1;::::0;::::1;11067:21:1::0;11124:2;11104:18;;;11097:30;11163:34;11143:18;;;11136:62;11234:34;11214:18;;;11207:62;-1:-1:-1;;;11285:19:1;;;11278:38;11333:19;;35686:107:0::1;10883:475:1::0;35686:107:0::1;35830:16;::::0;;35844:1:::1;35830:16:::0;;;;;::::1;::::0;;35806:21:::1;::::0;35830:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;35867:15:0::1;::::0;:22:::1;::::0;;-1:-1:-1;;;35867:22:0;;;;35806:40;;-1:-1:-1;;;;;;35867:15:0;;::::1;::::0;:20:::1;::::0;-1:-1:-1;35867:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35857:4;35862:1;35857:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;35857:32:0::1;;;-1:-1:-1::0;;;;;35857:32:0::1;;;::::0;::::1;35918:4;35900;35905:1;35900:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35900:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;35936:15:::1;::::0;:225:::1;::::0;-1:-1:-1;;;35936:225:0;;:15;::::1;::::0;:66:::1;::::0;36010:11;;35936:225:::1;::::0;:15:::1;::::0;36086:4;;36113:6:::1;::::0;36135:15:::1;::::0;35936:225:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;36177:29;36194:11;36177:29;;;;2102:25:1::0;;2090:2;2075:18;;1956:177;36177:29:0::1;;;;;;;;35675:539;35612:602:::0;:::o;18081:346::-;-1:-1:-1;;;;;18183:19:0;;18175:68;;;;-1:-1:-1;;;18175:68:0;;13066:2:1;18175:68:0;;;13048:21:1;13105:2;13085:18;;;13078:30;13144:34;13124:18;;;13117:62;-1:-1:-1;;;13195:18:1;;;13188:34;13239:19;;18175:68:0;12864:400:1;18175:68:0;-1:-1:-1;;;;;18262:21:0;;18254:68;;;;-1:-1:-1;;;18254:68:0;;13471:2:1;18254:68:0;;;13453:21:1;13510:2;13490:18;;;13483:30;13549:34;13529:18;;;13522:62;-1:-1:-1;;;13600:18:1;;;13593:32;13642:19;;18254:68:0;13269:398:1;18254:68:0;-1:-1:-1;;;;;18335:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18387:32;;2102:25:1;;;18387:32:0;;2075:18:1;18387:32:0;;;;;;;;18081:346;;;:::o;18718:419::-;18819:24;18846:25;18856:5;18863:7;18846:9;:25::i;:::-;18819:52;;-1:-1:-1;;18886:16:0;:37;18882:248;;18968:6;18948:16;:26;;18940:68;;;;-1:-1:-1;;;18940:68:0;;13874:2:1;18940:68:0;;;13856:21:1;13913:2;13893:18;;;13886:30;13952:31;13932:18;;;13925:59;14001:18;;18940:68:0;13672:353:1;18940:68:0;19052:51;19061:5;19068:7;19096:6;19077:16;:25;19052:8;:51::i;26022:3001::-;-1:-1:-1;;;;;26120:18:0;;26112:68;;;;-1:-1:-1;;;26112:68:0;;14232:2:1;26112:68:0;;;14214:21:1;14271:2;14251:18;;;14244:30;14310:34;14290:18;;;14283:62;-1:-1:-1;;;14361:18:1;;;14354:35;14406:19;;26112:68:0;14030:401:1;26112:68:0;-1:-1:-1;;;;;26199:16:0;;26191:64;;;;-1:-1:-1;;;26191:64:0;;14638:2:1;26191:64:0;;;14620:21:1;14677:2;14657:18;;;14650:30;14716:34;14696:18;;;14689:62;-1:-1:-1;;;14767:18:1;;;14760:33;14810:19;;26191:64:0;14436:399:1;26191:64:0;26283:1;26274:6;:10;26266:52;;;;-1:-1:-1;;;26266:52:0;;15042:2:1;26266:52:0;;;15024:21:1;15081:2;15061:18;;;15054:30;15120:31;15100:18;;;15093:59;15169:18;;26266:52:0;14840:353:1;26266:52:0;26382:9;;-1:-1:-1;;;26382:9:0;;;;26379:1013;;;2409:6;;-1:-1:-1;;;;;26410:15:0;;;2409:6;;26410:15;;;;:32;;-1:-1:-1;2409:6:0;;-1:-1:-1;;;;;26429:13:0;;;2409:6;;26429:13;;26410:32;:52;;;;-1:-1:-1;;;;;;26446:16:0;;;;26410:52;:77;;;;-1:-1:-1;;;;;;26466:21:0;;26480:6;26466:21;;26410:77;:107;;;;-1:-1:-1;;;;;;26492:25:0;;;;;;:19;:25;;;;;;;;26491:26;26410:107;:135;;;;-1:-1:-1;;;;;;26522:23:0;;;;;;:19;:23;;;;;;;;26521:24;26410:135;26407:974;;;-1:-1:-1;;;;;26603:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;26639:35:0;;;;;;:31;:35;;;;;;;;26638:36;26603:71;26599:767;;;26717:12;;26707:6;:22;;26699:75;;;;-1:-1:-1;;;26699:75:0;;15400:2:1;26699:75:0;;;15382:21:1;15439:2;15419:18;;;15412:30;15478:34;15458:18;;;15451:62;-1:-1:-1;;;15529:18:1;;;15522:38;15577:19;;26699:75:0;15198:404:1;26699:75:0;26831:15;;26814:13;26824:2;26814:9;:13::i;:::-;26805:22;;:6;:22;:::i;:::-;:41;;26797:78;;;;-1:-1:-1;;;26797:78:0;;15809:2:1;26797:78:0;;;15791:21:1;15848:2;15828:18;;;15821:30;15887:26;15867:18;;;15860:54;15931:18;;26797:78:0;15607:348:1;26797:78:0;26599:767;;;-1:-1:-1;;;;;26953:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;26987:37:0;;;;;;:31;:37;;;;;;;;26986:38;26953:71;26949:417;;;27067:13;;27057:6;:23;;27049:78;;;;-1:-1:-1;;;27049:78:0;;16162:2:1;27049:78:0;;;16144:21:1;16201:2;16181:18;;;16174:30;16240:34;16220:18;;;16213:62;-1:-1:-1;;;16291:18:1;;;16284:40;16341:19;;27049:78:0;15960:406:1;26949:417:0;-1:-1:-1;;;;;27209:35:0;;;;;;:31;:35;;;;;;;;27205:161;;27302:15;;27285:13;27295:2;27285:9;:13::i;:::-;27276:22;;:6;:22;:::i;:::-;:41;;27268:78;;;;-1:-1:-1;;;27268:78:0;;16573:2:1;27268:78:0;;;16555:21:1;16612:2;16592:18;;;16585:30;16651:26;16631:18;;;16624:54;16695:18;;27268:78:0;16371:348:1;27268:78:0;27404:28;27435:24;27453:4;27435:9;:24::i;:::-;27511:18;;27404:55;;-1:-1:-1;27487:42:0;;;;;;;27545:20;;-1:-1:-1;27557:8:0;;-1:-1:-1;;;27557:8:0;;;;27556:9;27545:20;:56;;;;-1:-1:-1;;;;;;27570:31:0;;;;;;:25;:31;;;;;;;;27569:32;27545:56;:86;;;;-1:-1:-1;;;;;;27606:25:0;;;;;;:19;:25;;;;;;;;27605:26;27545:86;:114;;;;-1:-1:-1;;;;;;27636:23:0;;;;;;:19;:23;;;;;;;;27635:24;27545:114;27542:221;;;27676:8;:15;;-1:-1:-1;;;;27676:15:0;-1:-1:-1;;;27676:15:0;;;27708:10;:8;:10::i;:::-;27735:8;:16;;-1:-1:-1;;;;27735:16:0;;;27542:221;-1:-1:-1;;;;;27810:25:0;;27775:12;27810:25;;;:19;:25;;;;;;27790:4;;27810:25;;;:52;;-1:-1:-1;;;;;;27839:23:0;;;;;;:19;:23;;;;;;;;27810:52;27807:98;;;-1:-1:-1;27888:5:0;27807:98;27917:12;27949:7;27946:1022;;;-1:-1:-1;;;;;27976:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;28025:1;28009:13;;:17;27976:50;27972:849;;;28078:3;28062:13;;28053:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28046:35;;28144:13;;28127:14;;28120:4;:21;;;;:::i;:::-;:37;;;;:::i;:::-;28100:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;28212:13:0;;28199:10;;28192:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;28176:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;28292:13:0;;28273:16;;28266:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;28244:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;28362:13:0;;28348:11;;28341:18;;:4;:18;:::i;:::-;:34;;;;:::i;:::-;28324:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;27972:849:0;;-1:-1:-1;27972:849:0;;-1:-1:-1;;;;;28413:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;28463:1;28448:12;;:16;28413:51;28410:411;;;28516:3;28501:12;;28492:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;28485:34;;28581:12;;28565:13;;28558:4;:20;;;;:::i;:::-;:35;;;;:::i;:::-;28538:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;28647:12:0;;28635:9;;28628:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;28612:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;28725:12:0;;28707:15;;28700:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;28678:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;28793:12:0;;28780:10;;28773:17;;:4;:17;:::i;:::-;:32;;;;:::i;:::-;28756:13;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;28410:411:0;28840:8;;28837:87;;28866:42;28882:4;28896;28903;28866:15;:42::i;:::-;28940:14;28950:4;28940:14;;:::i;:::-;;;27946:1022;28980:33;28996:4;29002:2;29006:6;28980:15;:33::i;:::-;26101:2922;;;;26022:3001;;;:::o;2501:132::-;2409:6;;-1:-1:-1;;;;;2409:6:0;963:10;2565:23;2557:68;;;;-1:-1:-1;;;2557:68:0;;17056:2:1;2557:68:0;;;17038:21:1;;;17075:18;;;17068:30;17134:34;17114:18;;;17107:62;17186:18;;2557:68:0;16854:356:1;29031:1197:0;29107:1;29091:13;;:17;:62;;;;;29140:13;;29112:24;29130:4;29112:9;:24::i;:::-;:41;;29091:62;29088:129;;;29170:35;29184:4;29191:13;;29170:5;:35::i;:::-;29243:1;29227:13;:17;;;29283:24;29301:4;29283:9;:24::i;:::-;29257:50;;29318:25;29382:16;;29361:18;;29346:12;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;29318:80;-1:-1:-1;29414:20:0;;;:46;;-1:-1:-1;29438:22:0;;29414:46;29411:59;;;29462:7;;29031:1197::o;29411:59::-;29503:18;;:23;;29524:2;29503:23;:::i;:::-;29485:15;:41;29482:113;;;29560:18;;:23;;29581:2;29560:23;:::i;:::-;29542:41;;29482:113;29607:12;29632:33;29649:15;29632:16;:33::i;:::-;29766:12;;29699:21;;29678:18;;29782:17;;29753:25;;29699:21;29753:25;:::i;:::-;:47;;;;:::i;:::-;29733:67;;29811:20;29867:17;29847:16;;29834:10;:29;;;;:::i;:::-;:51;;;;:::i;:::-;29811:74;;29896:23;29957:17;29935:18;;29922:10;:31;;;;:::i;:::-;:53;;;;:::i;:::-;30009:12;;30001:48;;29896:79;;-1:-1:-1;;;;;;30009:12:0;;30035:9;;30001:48;;;;30035:9;30009:12;30001:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30081:16:0;;30073:55;;29988:61;;-1:-1:-1;;;;;;30081:16:0;;30111:12;;30073:55;;;;30111:12;30081:16;30073:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30160:18:0;;30152:66;;30060:68;;-1:-1:-1;;;;;;30160:18:0;;30192:21;;30152:66;;;;30192:21;30160:18;30152:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;29031:1197:0:o;3596:191::-;3689:6;;;-1:-1:-1;;;;;3706:17:0;;;-1:-1:-1;;;;;;3706:17:0;;;;;;;3739:40;;3689:6;;;3706:17;3689:6;;3739:40;;3670:16;;3739:40;3659:128;3596:191;:::o;35104:246::-;35213:6;;;-1:-1:-1;;;;;35213:6:0;;;35187:33;;;;:25;:33;;;;;:41;;-1:-1:-1;;35187:41:0;;;;;;;35268:6;;35241:41;;35268:6;35187:41;35241:26;:41::i;:::-;35328:6;;35300:42;;;;;;-1:-1:-1;;;;;35328:6:0;;35300:42;;35328:6;;35300:42;35104:246;;:::o;14994:806::-;-1:-1:-1;;;;;15091:18:0;;15083:68;;;;-1:-1:-1;;;15083:68:0;;17417:2:1;15083:68:0;;;17399:21:1;17456:2;17436:18;;;17429:30;17495:34;17475:18;;;17468:62;-1:-1:-1;;;17546:18:1;;;17539:35;17591:19;;15083:68:0;17215:401:1;15083:68:0;-1:-1:-1;;;;;15170:16:0;;15162:64;;;;-1:-1:-1;;;15162:64:0;;17823:2:1;15162:64:0;;;17805:21:1;17862:2;17842:18;;;17835:30;17901:34;17881:18;;;17874:62;-1:-1:-1;;;17952:18:1;;;17945:33;17995:19;;15162:64:0;17621:399:1;15162:64:0;-1:-1:-1;;;;;15312:15:0;;15290:19;15312:15;;;;;;;;;;;15346:21;;;;15338:72;;;;-1:-1:-1;;;15338:72:0;;18227:2:1;15338:72:0;;;18209:21:1;18266:2;18246:18;;;18239:30;18305:34;18285:18;;;18278:62;-1:-1:-1;;;18356:18:1;;;18349:36;18402:19;;15338:72:0;18025:402:1;15338:72:0;-1:-1:-1;;;;;15446:15:0;;;:9;:15;;;;;;;;;;;15464:20;;;15446:38;;15664:13;;;;;;;;;;:23;;;;;;15716:26;;2102:25:1;;;15664:13:0;;15716:26;;2075:18:1;15716:26:0;;;;;;;15755:37;16968:675;;-1:-1:-1;;;;;17052:21:0;;17044:67;;;;-1:-1:-1;;;17044:67:0;;18634:2:1;17044:67:0;;;18616:21:1;18673:2;18653:18;;;18646:30;18712:34;18692:18;;;18685:62;-1:-1:-1;;;18763:18:1;;;18756:31;18804:19;;17044:67:0;18432:397:1;17044:67:0;-1:-1:-1;;;;;17211:18:0;;17186:22;17211:18;;;;;;;;;;;17248:24;;;;17240:71;;;;-1:-1:-1;;;17240:71:0;;19036:2:1;17240:71:0;;;19018:21:1;19075:2;19055:18;;;19048:30;19114:34;19094:18;;;19087:62;-1:-1:-1;;;19165:18:1;;;19158:32;19207:19;;17240:71:0;18834:398:1;17240:71:0;-1:-1:-1;;;;;17347:18:0;;:9;:18;;;;;;;;;;;17368:23;;;17347:44;;17486:12;:22;;;;;;;17537:37;2102:25:1;;;17347:9:0;;:18;17537:37;;2075:18:1;17537:37:0;1956:177:1;30750:593:0;30902:16;;;30916:1;30902:16;;;;;;;;30878:21;;30902:16;;;;;;;;;;-1:-1:-1;30902:16:0;30878:40;;30947:4;30929;30934:1;30929:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30929:23:0;;;:7;;;;;;;;;;:23;;;;30973:15;;:22;;;-1:-1:-1;;;30973:22:0;;;;:15;;;;;:20;;:22;;;;;30929:7;;30973:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30963:4;30968:1;30963:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30963:32:0;;;:7;;;;;;;;;:32;31040:15;;31008:62;;31025:4;;31040:15;31058:11;31008:8;:62::i;:::-;31109:15;;:224;;-1:-1:-1;;;31109:224:0;;-1:-1:-1;;;;;31109:15:0;;;;:66;;:224;;31190:11;;31109:15;;31260:4;;31287;;31307:15;;31109:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30805:538;30750:593;:::o;30541:201::-;-1:-1:-1;;;;;30627:37:0;;;;;;:31;:37;;;;;;;;:50;;-1:-1:-1;;30627:50:0;;;;;;;;;;30693:41;;19992:51:1;;;20059:18;;;20052:50;30693:41:0;;19965:18:1;30693:41:0;19824:284:1;222:597;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;660:6;657:1;654:13;651:91;;;730:1;725:2;716:6;705:9;701:22;697:31;690:42;651:91;-1:-1:-1;803:2:1;782:15;-1:-1:-1;;778:29:1;763:45;;;;810:2;759:54;;222:597;-1:-1:-1;;;222:597:1:o;824:131::-;-1:-1:-1;;;;;899:31:1;;889:42;;879:70;;945:1;942;935:12;960:315;1028:6;1036;1089:2;1077:9;1068:7;1064:23;1060:32;1057:52;;;1105:1;1102;1095:12;1057:52;1144:9;1131:23;1163:31;1188:5;1163:31;:::i;:::-;1213:5;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;960:315:1:o;1472:247::-;1531:6;1584:2;1572:9;1563:7;1559:23;1555:32;1552:52;;;1600:1;1597;1590:12;1552:52;1639:9;1626:23;1658:31;1683:5;1658:31;:::i;:::-;1708:5;1472:247;-1:-1:-1;;;1472:247:1:o;2138:456::-;2215:6;2223;2231;2284:2;2272:9;2263:7;2259:23;2255:32;2252:52;;;2300:1;2297;2290:12;2252:52;2339:9;2326:23;2358:31;2383:5;2358:31;:::i;:::-;2408:5;-1:-1:-1;2465:2:1;2450:18;;2437:32;2478:33;2437:32;2478:33;:::i;:::-;2138:456;;2530:7;;-1:-1:-1;;;2584:2:1;2569:18;;;;2556:32;;2138:456::o;2599:180::-;2658:6;2711:2;2699:9;2690:7;2686:23;2682:32;2679:52;;;2727:1;2724;2717:12;2679:52;-1:-1:-1;2750:23:1;;2599:180;-1:-1:-1;2599:180:1:o;2784:385::-;2870:6;2878;2886;2894;2947:3;2935:9;2926:7;2922:23;2918:33;2915:53;;;2964:1;2961;2954:12;2915:53;-1:-1:-1;;2987:23:1;;;3057:2;3042:18;;3029:32;;-1:-1:-1;3108:2:1;3093:18;;3080:32;;3159:2;3144:18;3131:32;;-1:-1:-1;2784:385:1;-1:-1:-1;2784:385:1:o;3363:529::-;3440:6;3448;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3564:9;3551:23;3583:31;3608:5;3583:31;:::i;:::-;3633:5;-1:-1:-1;3690:2:1;3675:18;;3662:32;3703:33;3662:32;3703:33;:::i;:::-;3755:7;-1:-1:-1;3814:2:1;3799:18;;3786:32;3827:33;3786:32;3827:33;:::i;:::-;3879:7;3869:17;;;3363:529;;;;;:::o;3897:416::-;3962:6;3970;4023:2;4011:9;4002:7;3998:23;3994:32;3991:52;;;4039:1;4036;4029:12;3991:52;4078:9;4065:23;4097:31;4122:5;4097:31;:::i;:::-;4147:5;-1:-1:-1;4204:2:1;4189:18;;4176:32;4246:15;;4239:23;4227:36;;4217:64;;4277:1;4274;4267:12;4217:64;4300:7;4290:17;;;3897:416;;;;;:::o;4318:388::-;4386:6;4394;4447:2;4435:9;4426:7;4422:23;4418:32;4415:52;;;4463:1;4460;4453:12;4415:52;4502:9;4489:23;4521:31;4546:5;4521:31;:::i;:::-;4571:5;-1:-1:-1;4628:2:1;4613:18;;4600:32;4641:33;4600:32;4641:33;:::i;4711:380::-;4790:1;4786:12;;;;4833;;;4854:61;;4908:4;4900:6;4896:17;4886:27;;4854:61;4961:2;4953:6;4950:14;4930:18;4927:38;4924:161;;5007:10;5002:3;4998:20;4995:1;4988:31;5042:4;5039:1;5032:15;5070:4;5067:1;5060:15;4924:161;;4711:380;;;:::o;5096:127::-;5157:10;5152:3;5148:20;5145:1;5138:31;5188:4;5185:1;5178:15;5212:4;5209:1;5202:15;5228:168;5268:7;5334:1;5330;5326:6;5322:14;5319:1;5316:21;5311:1;5304:9;5297:17;5293:45;5290:71;;;5341:18;;:::i;:::-;-1:-1:-1;5381:9:1;;5228:168::o;5401:217::-;5441:1;5467;5457:132;;5511:10;5506:3;5502:20;5499:1;5492:31;5546:4;5543:1;5536:15;5574:4;5571:1;5564:15;5457:132;-1:-1:-1;5603:9:1;;5401:217::o;6033:128::-;6073:3;6104:1;6100:6;6097:1;6094:13;6091:39;;;6110:18;;:::i;:::-;-1:-1:-1;6146:9:1;;6033:128::o;7000:354::-;7202:2;7184:21;;;7241:2;7221:18;;;7214:30;7280:32;7275:2;7260:18;;7253:60;7345:2;7330:18;;7000:354::o;11495:251::-;11565:6;11618:2;11606:9;11597:7;11593:23;11589:32;11586:52;;;11634:1;11631;11624:12;11586:52;11666:9;11660:16;11685:31;11710:5;11685:31;:::i;11751:127::-;11812:10;11807:3;11803:20;11800:1;11793:31;11843:4;11840:1;11833:15;11867:4;11864:1;11857:15;11883:461;11936:3;11974:5;11968:12;12001:6;11996:3;11989:19;12027:4;12056:2;12051:3;12047:12;12040:19;;12093:2;12086:5;12082:14;12114:1;12124:195;12138:6;12135:1;12132:13;12124:195;;;12203:13;;-1:-1:-1;;;;;12199:39:1;12187:52;;12259:12;;;;12294:15;;;;12235:1;12153:9;12124:195;;;-1:-1:-1;12335:3:1;;11883:461;-1:-1:-1;;;;;11883:461:1:o;12349:510::-;12620:6;12609:9;12602:25;12663:3;12658:2;12647:9;12643:18;12636:31;12583:4;12684:57;12736:3;12725:9;12721:19;12713:6;12684:57;:::i;:::-;-1:-1:-1;;;;;12777:32:1;;;;12772:2;12757:18;;12750:60;-1:-1:-1;12841:2:1;12826:18;12819:34;12676:65;12349:510;-1:-1:-1;;12349:510:1:o;16724:125::-;16764:4;16792:1;16789;16786:8;16783:34;;;16797:18;;:::i;:::-;-1:-1:-1;16834:9:1;;16724:125::o;19237:582::-;19536:6;19525:9;19518:25;19579:6;19574:2;19563:9;19559:18;19552:34;19622:3;19617:2;19606:9;19602:18;19595:31;19499:4;19643:57;19695:3;19684:9;19680:19;19672:6;19643:57;:::i;:::-;-1:-1:-1;;;;;19736:32:1;;;;19731:2;19716:18;;19709:60;-1:-1:-1;19800:3:1;19785:19;19778:35;19635:65;19237:582;-1:-1:-1;;;19237:582:1:o

Swarm Source

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