ETH Price: $2,631.33 (+2.26%)

Token

monkaS (monkaS)
 

Overview

Max Total Supply

420,690,000 monkaS

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.272676002142330924 monkaS

Value
$0.00
0x38cFaBe1Edd746942288D89B5145c83219D90293
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
monkaS

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

//https://t.me/Monkasportal
//https://monkascoin.vip
//https://twitter.com/Monkascoin
//https://medium.com/@monkascoin_erc

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/Ownable.sol


// 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/IERC20.sol


// 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/IERC20Metadata.sol


// 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/ERC20.sol


// 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: Pepe.sol


pragma solidity ^0.8.19;



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

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

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

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

contract monkaS is ERC20, Ownable {

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

    IDexRouter public dexRouter;
    address public lpPair;

    bool private swapping;
    uint256 public swapTokensAtAmount;

    address operationsAddress;

    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    mapping (address => bool) public bot;
    uint256 public botsCaught;

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

     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyOperationsFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellOperationsFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForOperations;
    uint256 public tokensForLiquidity;

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

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

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

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

    event EnabledTrading();

    event RemovedLimits();

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event UpdatedMaxBuyAmount(uint256 newAmount);

    event UpdatedMaxSellAmount(uint256 newAmount);

    event UpdatedMaxWalletAmount(uint256 newAmount);

    event UpdatedOperationsAddress(address indexed newWallet);

    event MaxTransactionExclusion(address _address, bool excluded);

    event BuyBackTriggered(uint256 amount);

    event OwnerForcedSwapBack(uint256 timestamp);
 
    event CaughtEarlyBuyer(address sniper);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TransferForeignToken(address token, uint256 amount);

    constructor() ERC20("monkaS", "monkaS") {

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

        IDexRouter _dexRouter = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        dexRouter = _dexRouter;

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

        uint256 totalSupply = 420690 * 1e3 * 1e18;

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

        buyOperationsFee = 20;
        buyLiquidityFee = 0;
        buyTotalFees = buyOperationsFee + buyLiquidityFee;

        sellOperationsFee = 50;
        sellLiquidityFee = 0;
        sellTotalFees = sellOperationsFee + sellLiquidityFee;

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

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

        operationsAddress = address(newOwner);

        _mint(newOwner, totalSupply);
        transferOwnership(newOwner);
    }

    receive() external payable {}

    // only enable if no plan to airdrop

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Cannot reenable trading");
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
        emit EnabledTrading();
    }

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

    function manageBoughtEarly(address wallet, bool flag) external onlyOwner {
        bot[wallet] = flag;
    }

    function massManageBoughtEarly(address[] calldata wallets, bool flag) external onlyOwner {
        for(uint256 i = 0; i < wallets.length; i++){
            bot[wallets[i]] = flag;
        }
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
    }

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

    // 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 _excludeFromMaxTransaction(address updAds, bool isExcluded) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function airdropToWallets(address[] memory wallets, uint256[] memory amountsInTokens) external onlyOwner {
        require(wallets.length == amountsInTokens.length, "arrays must be the same length");
        require(wallets.length < 600, "Can only airdrop 600 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input.
        for(uint256 i = 0; i < wallets.length; i++){
            address wallet = wallets[i];
            uint256 amount = amountsInTokens[i];
            super._transfer(msg.sender, wallet, amount);
        }
    }

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

    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[pair] = value;

        _excludeFromMaxTransaction(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateBuyFees(uint256 _operationsFee, uint256 _liquidityFee) external onlyOwner {
        buyOperationsFee = _operationsFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(uint256 _operationsFee, uint256 _liquidityFee) external onlyOwner {
        sellOperationsFee = _operationsFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee;
        require(sellTotalFees <= 20, "Must keep fees at 20% or less");
    }

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

    function _transfer(address from, address to, uint256 amount) internal override {

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");

        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }

        require(!bot[from] && !bot[to], "Bots cannot transfer tokens in or out except to owner or dead address.");

        if(limitsInEffect){
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled){
                    if (to != address(dexRouter) && to != address(lpPair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number - 2 && _holderLastTransferTimestamp[to] < block.number - 2, "_transfer:: Transfer Delay enabled.  Try again later.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                        _holderLastTransferTimestamp[to] = block.number;
                    }
                }
    
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy.");
                        require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet");
                }
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell.");
                }
                else if (!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees / 100;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForOperations += fees * sellOperationsFee / sellTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount * buyTotalFees / 100;
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForOperations += fees * buyOperationsFee / buyTotalFees;
            }

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

        	amount -= fees;
        }

        super._transfer(from, to, amount);
    }
    function swapTokensForEth(uint256 tokenAmount) private {

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

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

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

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

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

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

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

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

        bool success;

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

        swapTokensForEth(contractBalance - liquidityTokens);

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

        uint256 ethForOperations = ethBalance * tokensForOperations / (totalTokensToSwap - (tokensForLiquidity/2));

        ethForLiquidity -= ethForOperations;

        tokensForLiquidity = 0;
        tokensForOperations = 0;

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

        if(address(this).balance > 0){
            (success,) = address(operationsAddress).call{value: address(this).balance}("");
        }
    }

    function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
        emit TransferForeignToken(_token, _contractBalance);
    }

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

    function setOperationsAddress(address _operationsAddress) external onlyOwner {
        require(_operationsAddress != address(0), "_operationsAddress address cannot be 0");
        operationsAddress = payable(_operationsAddress);
    }

    // force Swap back if slippage issues.
    function forceSwapBack() external onlyOwner {
        require(balanceOf(address(this)) >= 0, "No tokens to swap");
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

}

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":false,"internalType":"address","name":"sniper","type":"address"}],"name":"CaughtEarlyBuyer","type":"event"},{"anonymous":false,"inputs":[],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedOperationsAddress","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amountsInTokens","type":"uint256[]"}],"name":"airdropToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botsCaught","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","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":"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":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"manageBoughtEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"massManageBoughtEarly","outputs":[],"stateMutability":"nonpayable","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":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","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":"_operationsAddress","type":"address"}],"name":"setOperationsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","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":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","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"}]

60806040525f600d556010805462ffffff1916620100011790556012805460ff1916600117905534801562000032575f80fd5b506040805180820182526006808252656d6f6e6b615360d01b602080840182905284518086019095529184529083015290600362000071838262000769565b50600462000080828262000769565b5050506200009d620000976200039a60201b60201c565b6200039e565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051339291829163c45a0155916004808201926020929091908290030181865afa15801562000105573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012b919062000831565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000177573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019d919062000831565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020e919062000831565b600a80546001600160a01b0319166001600160a01b039290921691821790556200023a906001620003ef565b600a5462000253906001600160a01b0316600162000451565b6b015bfc9298de952e2f40000060646200026f82600262000874565b6200027b919062000894565b60065560646200028d82600162000874565b62000299919062000894565b6007556064620002ab82600262000874565b620002b7919062000894565b6008556103e8620002ca82600162000874565b620002d6919062000894565b600b5560148080555f6015819055620002ef91620008b4565b601355603260178190555f60188190556200030a91620008b4565b6016556200031a836001620003ef565b62000327306001620003ef565b6200033661dead6001620003ef565b62000343836001620004bb565b62000350306001620004bb565b6200035f61dead6001620004bb565b600c80546001600160a01b0319166001600160a01b03851617905562000386838262000523565b6200039183620005e8565b505050620008ca565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601c6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382165f908152601d60205260409020805460ff1916821515179055620004808282620003ef565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b620004c562000667565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200057f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620005929190620008b4565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b620005f262000667565b6001600160a01b038116620006595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000576565b62000664816200039e565b50565b6005546001600160a01b03163314620006c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000576565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006f357607f821691505b6020821081036200071257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006c5575f81815260208120601f850160051c81016020861015620007405750805b601f850160051c820191505b8181101562000761578281556001016200074c565b505050505050565b81516001600160401b03811115620007855762000785620006ca565b6200079d81620007968454620006de565b8462000718565b602080601f831160018114620007d3575f8415620007bb5750858301515b5f19600386901b1c1916600185901b17855562000761565b5f85815260208120601f198616915b828110156200080357888601518255948401946001909101908401620007e2565b50858210156200082157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000842575f80fd5b81516001600160a01b038116811462000859575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200088e576200088e62000860565b92915050565b5f82620008af57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200088e576200088e62000860565b612e6080620008d85f395ff3fe60806040526004361061035e575f3560e01c80637571336a116101bd578063c876d0b9116100f2578063e884f26011610092578063f2fde38b1161006d578063f2fde38b1461095e578063f5648a4f1461097d578063f637434214610991578063fb002c97146109a6575f80fd5b8063e884f26014610920578063ee40166e14610934578063f11a24d314610949575f80fd5b8063dc3f0d0f116100cd578063dc3f0d0f146108ae578063dd62ed3e146108cd578063e2f45605146108ec578063e800dff714610901575f80fd5b8063c876d0b914610861578063d257b34f1461087a578063d85ba06314610899575f80fd5b8063a457c2d71161015d578063b62496f511610138578063b62496f5146107d7578063bbc0c74214610805578063c024666814610823578063c18bc19514610842575f80fd5b8063a457c2d714610784578063a9059cbb146107a3578063aa4bde28146107c2575f80fd5b80638a8c523c116101985780638a8c523c146107205780638da5cb5b1461073457806395d89b41146107515780639a7a23d614610765575f80fd5b80637571336a146106cd5780638366e79a146106ec57806388e765ff1461070b575f80fd5b8063452ed4f11161029357806366d602ae116102335780636ddd17131161020e5780636ddd17131461065257806370a0823114610671578063715018a6146106a5578063751039fc146106b9575f80fd5b806366d602ae146106135780636a486a8e146106285780636b0a894c1461063d575f80fd5b80634f77f6c01161026e5780634f77f6c0146105b657806351f205e4146105cb5780635a139dd4146105df57806366ca9b83146105f4575f80fd5b8063452ed4f11461055f578063499b83941461057e5780634a62bb651461059d575f80fd5b80631a8145bb116102fe5780632be32b61116102d95780632be32b61146104d8578063313ce567146104f7578063353f2345146105125780633950935114610540575f80fd5b80631a8145bb146104855780632307b4411461049a57806323b872dd146104b9575f80fd5b8063095ea7b311610339578063095ea7b3146103eb57806310d5de531461041a578063130a2c3c1461044857806318160ddd14610467575f80fd5b806302dbd8f81461036957806306fdde031461038a5780630758d924146103b4575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061038861038336600461284c565b6109bb565b005b348015610395575f80fd5b5061039e610a35565b6040516103ab919061286c565b60405180910390f35b3480156103bf575f80fd5b506009546103d3906001600160a01b031681565b6040516001600160a01b0390911681526020016103ab565b3480156103f6575f80fd5b5061040a6104053660046128cb565b610ac5565b60405190151581526020016103ab565b348015610425575f80fd5b5061040a6104343660046128f5565b601c6020525f908152604090205460ff1681565b348015610453575f80fd5b50610388610462366004612924565b610ade565b348015610472575f80fd5b506002545b6040519081526020016103ab565b348015610490575f80fd5b50610477601a5481565b3480156104a5575f80fd5b506103886104b4366004612a73565b610b5a565b3480156104c4575f80fd5b5061040a6104d3366004612b2f565b610c8e565b3480156104e3575f80fd5b506103886104f2366004612b6d565b610cb1565b348015610502575f80fd5b50604051601281526020016103ab565b34801561051d575f80fd5b5061040a61052c3660046128f5565b600e6020525f908152604090205460ff1681565b34801561054b575f80fd5b5061040a61055a3660046128cb565b610d9c565b34801561056a575f80fd5b50600a546103d3906001600160a01b031681565b348015610589575f80fd5b506103886105983660046128f5565b610dbd565b3480156105a8575f80fd5b5060105461040a9060ff1681565b3480156105c1575f80fd5b5061047760175481565b3480156105d6575f80fd5b50610388610e4c565b3480156105ea575f80fd5b5061047760145481565b3480156105ff575f80fd5b5061038861060e36600461284c565b610eb9565b34801561061e575f80fd5b5061047760075481565b348015610633575f80fd5b5061047760165481565b348015610648575f80fd5b50610477600f5481565b34801561065d575f80fd5b5060105461040a9062010000900460ff1681565b34801561067c575f80fd5b5061047761068b3660046128f5565b6001600160a01b03165f9081526020819052604090205490565b3480156106b0575f80fd5b50610388610f2a565b3480156106c4575f80fd5b50610388610f3d565b3480156106d8575f80fd5b506103886106e7366004612b84565b610f85565b3480156106f7575f80fd5b5061040a610706366004612bbb565b61102a565b348015610716575f80fd5b5061047760065481565b34801561072b575f80fd5b506103886111b1565b34801561073f575f80fd5b506005546001600160a01b03166103d3565b34801561075c575f80fd5b5061039e611250565b348015610770575f80fd5b5061038861077f366004612b84565b61125f565b34801561078f575f80fd5b5061040a61079e3660046128cb565b611330565b3480156107ae575f80fd5b5061040a6107bd3660046128cb565b6113aa565b3480156107cd575f80fd5b5061047760085481565b3480156107e2575f80fd5b5061040a6107f13660046128f5565b601d6020525f908152604090205460ff1681565b348015610810575f80fd5b5060105461040a90610100900460ff1681565b34801561082e575f80fd5b5061038861083d366004612b84565b6113b7565b34801561084d575f80fd5b5061038861085c366004612b6d565b61141d565b34801561086c575f80fd5b5060125461040a9060ff1681565b348015610885575f80fd5b50610388610894366004612b6d565b611504565b3480156108a4575f80fd5b5061047760135481565b3480156108b9575f80fd5b506103886108c8366004612b6d565b61162d565b3480156108d8575f80fd5b506104776108e7366004612bbb565b611712565b3480156108f7575f80fd5b50610477600b5481565b34801561090c575f80fd5b5061038861091b366004612b84565b61173c565b34801561092b575f80fd5b5061038861176e565b34801561093f575f80fd5b50610477600d5481565b348015610954575f80fd5b5061047760155481565b348015610969575f80fd5b506103886109783660046128f5565b611782565b348015610988575f80fd5b506103886117fb565b34801561099c575f80fd5b5061047760185481565b3480156109b1575f80fd5b5061047760195481565b6109c3611842565b601782905560188190556109d78183612bfb565b601681905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b5050565b606060038054610a4490612c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090612c0e565b8015610abb5780601f10610a9257610100808354040283529160200191610abb565b820191905f5260205f20905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b5f33610ad281858561189c565b60019150505b92915050565b610ae6611842565b5f5b82811015610b545781600e5f868685818110610b0657610b06612c46565b9050602002016020810190610b1b91906128f5565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610b4c81612c5a565b915050610ae8565b50505050565b610b62611842565b8051825114610bb35760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610a28565b610258825110610c245760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203630302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610a28565b5f5b8251811015610c89575f838281518110610c4257610c42612c46565b602002602001015190505f838381518110610c5f57610c5f612c46565b60200260200101519050610c743383836119bf565b50508080610c8190612c5a565b915050610c26565b505050565b5f33610c9b858285611ae7565b610ca6858585611b59565b506001949350505050565b610cb9611842565b670de0b6b3a76400006103e8610cce60025490565b610cd9906002612c72565b610ce39190612c89565b610ced9190612c89565b811015610d4e5760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b6064820152608401610a28565b610d6081670de0b6b3a7640000612c72565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f33610ad2818585610dae8383611712565b610db89190612bfb565b61189c565b610dc5611842565b6001600160a01b038116610e2a5760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610a28565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610e54611842565b305f908152602052600a805460ff60a01b1916600160a01b179055610e77612409565b600a805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610ec1611842565b60148290556015819055610ed58183612bfb565b601381905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a28565b610f32611842565b610f3b5f61256d565b565b610f45611842565b6010805460ff199081169091556012805490911690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b610f8d611842565b8061100057600a546001600160a01b03908116908316036110005760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a28565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b5f611033611842565b6001600160a01b0383166110895760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a28565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa1580156110cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f19190612ca8565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015611141573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111659190612cbf565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6111b9611842565b601054610100900460ff16156112115760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610a28565b6010805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb7905f90a1565b606060048054610a4490612c0e565b611267611842565b600a546001600160a01b03908116908316036112eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a28565b6112f582826125be565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b5f338161133d8286611712565b90508381101561139d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a28565b610ca6828686840361189c565b5f33610ad2818585611b59565b6113bf611842565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611425611842565b670de0b6b3a76400006103e861143a60025490565b611445906003612c72565b61144f9190612c89565b6114599190612c89565b8110156114bd5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a28565b6114cf81670de0b6b3a7640000612c72565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610d91565b61150c611842565b620186a061151960025490565b611524906001612c72565b61152e9190612c89565b81101561159b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a28565b6103e86115a760025490565b6115b2906001612c72565b6115bc9190612c89565b8111156116285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a28565b600b55565b611635611842565b670de0b6b3a76400006103e861164a60025490565b611655906002612c72565b61165f9190612c89565b6116699190612c89565b8110156116cb5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a28565b6116dd81670de0b6b3a7640000612c72565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610d91565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611744611842565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b611776611842565b6012805460ff19169055565b61178a611842565b6001600160a01b0381166117ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a28565b6117f88161256d565b50565b611803611842565b6040515f90339047908381818185875af1925050503d805f8114610b54576040519150601f19603f3d011682016040523d82523d5f602084013e610b54565b6005546001600160a01b03163314610f3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a28565b6001600160a01b0383166118fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a28565b6001600160a01b03821661195f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a28565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119e55760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611a0b5760405162461bcd60e51b8152600401610a2890612d1f565b6001600160a01b0383165f9081526020819052604090205481811015611a825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a28565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b54565b5f611af28484611712565b90505f198114610b545781811015611b4c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a28565b610b54848484840361189c565b6001600160a01b038316611b7f5760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611ba55760405162461bcd60e51b8152600401610a2890612d1f565b5f8111611bf45760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a28565b601054610100900460ff16611c85576001600160a01b0383165f908152601b602052604090205460ff1680611c4057506001600160a01b0382165f908152601b602052604090205460ff165b611c855760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a28565b6001600160a01b0383165f908152600e602052604090205460ff16158015611cc557506001600160a01b0382165f908152600e602052604090205460ff16155b611d465760405162461bcd60e51b815260206004820152604660248201527f426f74732063616e6e6f74207472616e7366657220746f6b656e7320696e206f60448201527f72206f75742065786365707420746f206f776e6572206f722064656164206164606482015265323932b9b99760d11b608482015260a401610a28565b60105460ff1615612156576005546001600160a01b03848116911614801590611d7d57506005546001600160a01b03838116911614155b8015611d9157506001600160a01b03821615155b8015611da857506001600160a01b03821661dead14155b8015611dcc57506001600160a01b0383165f908152601b602052604090205460ff16155b8015611df057506001600160a01b0382165f908152601b602052604090205460ff16155b156121565760125460ff1615611f06576009546001600160a01b03838116911614801590611e2c5750600a546001600160a01b03838116911614155b15611f0657611e3c600243612d62565b325f90815260116020526040902054108015611e785750611e5e600243612d62565b6001600160a01b0383165f90815260116020526040902054105b611ee25760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610a28565b325f9081526011602052604080822043908190556001600160a01b03851683529120555b6001600160a01b0383165f908152601d602052604090205460ff168015611f4557506001600160a01b0382165f908152601c602052604090205460ff16155b1561202057600654811115611fad5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a28565b6008546001600160a01b0383165f90815260208190526040902054611fd29083612bfb565b111561201b5760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b612156565b6001600160a01b0382165f908152601d602052604090205460ff16801561205f57506001600160a01b0383165f908152601c602052604090205460ff16155b156120c95760075481111561201b5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a28565b6001600160a01b0382165f908152601c602052604090205460ff16612156576008546001600160a01b0383165f9081526020819052604090205461210d9083612bfb565b11156121565760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b305f90815260208190526040902054600b5481108015908190612181575060105462010000900460ff165b80156121975750600a54600160a01b900460ff16155b80156121bb57506001600160a01b0385165f908152601d602052604090205460ff16155b80156121df57506001600160a01b0385165f908152601b602052604090205460ff16155b801561220357506001600160a01b0384165f908152601b602052604090205460ff16155b1561223157600a805460ff60a01b1916600160a01b179055612223612409565b600a805460ff60a01b191690555b6001600160a01b0385165f908152601b602052604090205460019060ff168061227157506001600160a01b0385165f908152601b602052604090205460ff165b1561227957505f5b5f81156123f5576001600160a01b0386165f908152601d602052604090205460ff1680156122a857505f601654115b1561232e576064601654866122bd9190612c72565b6122c79190612c89565b9050601654601854826122da9190612c72565b6122e49190612c89565b601a5f8282546122f49190612bfb565b90915550506016546017546123099083612c72565b6123139190612c89565b60195f8282546123239190612bfb565b909155506123d79050565b6001600160a01b0387165f908152601d602052604090205460ff16801561235657505f601354115b156123d75760646013548661236b9190612c72565b6123759190612c89565b9050601354601554826123889190612c72565b6123929190612c89565b601a5f8282546123a29190612bfb565b90915550506013546014546123b79083612c72565b6123c19190612c89565b60195f8282546123d19190612bfb565b90915550505b80156123e8576123e88730836119bf565b6123f28186612d62565b94505b6124008787876119bf565b50505050505050565b305f9081526020819052604081205490505f601954601a5461242b9190612bfb565b9050811580612438575080155b15612441575050565b600b5461244f90603c612c72565b82111561246757600b5461246490603c612c72565b91505b5f80600283601a548661247a9190612c72565b6124849190612c89565b61248e9190612c89565b90506124a261249d8286612d62565b6125eb565b601a54479081905f906124b790600290612c89565b6124c19087612d62565b6019546124ce9085612c72565b6124d89190612c89565b90506124e48183612d62565b5f601a819055601955915083158015906124fd57505f82115b1561250c5761250c848361273b565b471561240057600c546040516001600160a01b039091169047905f81818185875af1925050503d805f811461255c576040519150601f19603f3d011682016040523d82523d5f602084013e612561565b606091505b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f908152601d60205260409020805460ff19168215151790556112f582826127ea565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061261e5761261e612c46565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612675573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126999190612d75565b816001815181106126ac576126ac612c46565b6001600160a01b0392831660209182029290920101526009546126d2913091168461189c565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac9479061270a9085905f90869030904290600401612d90565b5f604051808303815f87803b158015612721575f80fd5b505af1158015612733573d5f803e3d5ffd5b505050505050565b6009546127539030906001600160a01b03168461189c565b60095460405163f305d71960e01b8152306004820152602481018490525f60448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156127be573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127e39190612dff565b5050505050565b6001600160a01b0382165f818152601c6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b5f806040838503121561285d575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b818110156128975785810183015185820160400152820161287b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146117f8575f80fd5b5f80604083850312156128dc575f80fd5b82356128e7816128b7565b946020939093013593505050565b5f60208284031215612905575f80fd5b8135612910816128b7565b9392505050565b80151581146117f8575f80fd5b5f805f60408486031215612936575f80fd5b833567ffffffffffffffff8082111561294d575f80fd5b818601915086601f830112612960575f80fd5b81358181111561296e575f80fd5b8760208260051b8501011115612982575f80fd5b6020928301955093505084013561299881612917565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156129e0576129e06129a3565b604052919050565b5f67ffffffffffffffff821115612a0157612a016129a3565b5060051b60200190565b5f82601f830112612a1a575f80fd5b81356020612a2f612a2a836129e8565b6129b7565b82815260059290921b84018101918181019086841115612a4d575f80fd5b8286015b84811015612a685780358352918301918301612a51565b509695505050505050565b5f8060408385031215612a84575f80fd5b823567ffffffffffffffff80821115612a9b575f80fd5b818501915085601f830112612aae575f80fd5b81356020612abe612a2a836129e8565b82815260059290921b84018101918181019089841115612adc575f80fd5b948201945b83861015612b03578535612af4816128b7565b82529482019490820190612ae1565b96505086013592505080821115612b18575f80fd5b50612b2585828601612a0b565b9150509250929050565b5f805f60608486031215612b41575f80fd5b8335612b4c816128b7565b92506020840135612b5c816128b7565b929592945050506040919091013590565b5f60208284031215612b7d575f80fd5b5035919050565b5f8060408385031215612b95575f80fd5b8235612ba0816128b7565b91506020830135612bb081612917565b809150509250929050565b5f8060408385031215612bcc575f80fd5b8235612bd7816128b7565b91506020830135612bb0816128b7565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ad857610ad8612be7565b600181811c90821680612c2257607f821691505b602082108103612c4057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612c6b57612c6b612be7565b5060010190565b8082028115828204841417610ad857610ad8612be7565b5f82612ca357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612cb8575f80fd5b5051919050565b5f60208284031215612ccf575f80fd5b815161291081612917565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ad857610ad8612be7565b5f60208284031215612d85575f80fd5b8151612910816128b7565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612dde5784516001600160a01b031683529383019391830191600101612db9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612e11575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f26c9f04122a25d16a6d50c35e88e50ba3215d879624f44ab52e0cb978fbfac964736f6c63430008150033

Deployed Bytecode

0x60806040526004361061035e575f3560e01c80637571336a116101bd578063c876d0b9116100f2578063e884f26011610092578063f2fde38b1161006d578063f2fde38b1461095e578063f5648a4f1461097d578063f637434214610991578063fb002c97146109a6575f80fd5b8063e884f26014610920578063ee40166e14610934578063f11a24d314610949575f80fd5b8063dc3f0d0f116100cd578063dc3f0d0f146108ae578063dd62ed3e146108cd578063e2f45605146108ec578063e800dff714610901575f80fd5b8063c876d0b914610861578063d257b34f1461087a578063d85ba06314610899575f80fd5b8063a457c2d71161015d578063b62496f511610138578063b62496f5146107d7578063bbc0c74214610805578063c024666814610823578063c18bc19514610842575f80fd5b8063a457c2d714610784578063a9059cbb146107a3578063aa4bde28146107c2575f80fd5b80638a8c523c116101985780638a8c523c146107205780638da5cb5b1461073457806395d89b41146107515780639a7a23d614610765575f80fd5b80637571336a146106cd5780638366e79a146106ec57806388e765ff1461070b575f80fd5b8063452ed4f11161029357806366d602ae116102335780636ddd17131161020e5780636ddd17131461065257806370a0823114610671578063715018a6146106a5578063751039fc146106b9575f80fd5b806366d602ae146106135780636a486a8e146106285780636b0a894c1461063d575f80fd5b80634f77f6c01161026e5780634f77f6c0146105b657806351f205e4146105cb5780635a139dd4146105df57806366ca9b83146105f4575f80fd5b8063452ed4f11461055f578063499b83941461057e5780634a62bb651461059d575f80fd5b80631a8145bb116102fe5780632be32b61116102d95780632be32b61146104d8578063313ce567146104f7578063353f2345146105125780633950935114610540575f80fd5b80631a8145bb146104855780632307b4411461049a57806323b872dd146104b9575f80fd5b8063095ea7b311610339578063095ea7b3146103eb57806310d5de531461041a578063130a2c3c1461044857806318160ddd14610467575f80fd5b806302dbd8f81461036957806306fdde031461038a5780630758d924146103b4575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061038861038336600461284c565b6109bb565b005b348015610395575f80fd5b5061039e610a35565b6040516103ab919061286c565b60405180910390f35b3480156103bf575f80fd5b506009546103d3906001600160a01b031681565b6040516001600160a01b0390911681526020016103ab565b3480156103f6575f80fd5b5061040a6104053660046128cb565b610ac5565b60405190151581526020016103ab565b348015610425575f80fd5b5061040a6104343660046128f5565b601c6020525f908152604090205460ff1681565b348015610453575f80fd5b50610388610462366004612924565b610ade565b348015610472575f80fd5b506002545b6040519081526020016103ab565b348015610490575f80fd5b50610477601a5481565b3480156104a5575f80fd5b506103886104b4366004612a73565b610b5a565b3480156104c4575f80fd5b5061040a6104d3366004612b2f565b610c8e565b3480156104e3575f80fd5b506103886104f2366004612b6d565b610cb1565b348015610502575f80fd5b50604051601281526020016103ab565b34801561051d575f80fd5b5061040a61052c3660046128f5565b600e6020525f908152604090205460ff1681565b34801561054b575f80fd5b5061040a61055a3660046128cb565b610d9c565b34801561056a575f80fd5b50600a546103d3906001600160a01b031681565b348015610589575f80fd5b506103886105983660046128f5565b610dbd565b3480156105a8575f80fd5b5060105461040a9060ff1681565b3480156105c1575f80fd5b5061047760175481565b3480156105d6575f80fd5b50610388610e4c565b3480156105ea575f80fd5b5061047760145481565b3480156105ff575f80fd5b5061038861060e36600461284c565b610eb9565b34801561061e575f80fd5b5061047760075481565b348015610633575f80fd5b5061047760165481565b348015610648575f80fd5b50610477600f5481565b34801561065d575f80fd5b5060105461040a9062010000900460ff1681565b34801561067c575f80fd5b5061047761068b3660046128f5565b6001600160a01b03165f9081526020819052604090205490565b3480156106b0575f80fd5b50610388610f2a565b3480156106c4575f80fd5b50610388610f3d565b3480156106d8575f80fd5b506103886106e7366004612b84565b610f85565b3480156106f7575f80fd5b5061040a610706366004612bbb565b61102a565b348015610716575f80fd5b5061047760065481565b34801561072b575f80fd5b506103886111b1565b34801561073f575f80fd5b506005546001600160a01b03166103d3565b34801561075c575f80fd5b5061039e611250565b348015610770575f80fd5b5061038861077f366004612b84565b61125f565b34801561078f575f80fd5b5061040a61079e3660046128cb565b611330565b3480156107ae575f80fd5b5061040a6107bd3660046128cb565b6113aa565b3480156107cd575f80fd5b5061047760085481565b3480156107e2575f80fd5b5061040a6107f13660046128f5565b601d6020525f908152604090205460ff1681565b348015610810575f80fd5b5060105461040a90610100900460ff1681565b34801561082e575f80fd5b5061038861083d366004612b84565b6113b7565b34801561084d575f80fd5b5061038861085c366004612b6d565b61141d565b34801561086c575f80fd5b5060125461040a9060ff1681565b348015610885575f80fd5b50610388610894366004612b6d565b611504565b3480156108a4575f80fd5b5061047760135481565b3480156108b9575f80fd5b506103886108c8366004612b6d565b61162d565b3480156108d8575f80fd5b506104776108e7366004612bbb565b611712565b3480156108f7575f80fd5b50610477600b5481565b34801561090c575f80fd5b5061038861091b366004612b84565b61173c565b34801561092b575f80fd5b5061038861176e565b34801561093f575f80fd5b50610477600d5481565b348015610954575f80fd5b5061047760155481565b348015610969575f80fd5b506103886109783660046128f5565b611782565b348015610988575f80fd5b506103886117fb565b34801561099c575f80fd5b5061047760185481565b3480156109b1575f80fd5b5061047760195481565b6109c3611842565b601782905560188190556109d78183612bfb565b601681905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b5050565b606060038054610a4490612c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090612c0e565b8015610abb5780601f10610a9257610100808354040283529160200191610abb565b820191905f5260205f20905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b5f33610ad281858561189c565b60019150505b92915050565b610ae6611842565b5f5b82811015610b545781600e5f868685818110610b0657610b06612c46565b9050602002016020810190610b1b91906128f5565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610b4c81612c5a565b915050610ae8565b50505050565b610b62611842565b8051825114610bb35760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610a28565b610258825110610c245760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203630302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610a28565b5f5b8251811015610c89575f838281518110610c4257610c42612c46565b602002602001015190505f838381518110610c5f57610c5f612c46565b60200260200101519050610c743383836119bf565b50508080610c8190612c5a565b915050610c26565b505050565b5f33610c9b858285611ae7565b610ca6858585611b59565b506001949350505050565b610cb9611842565b670de0b6b3a76400006103e8610cce60025490565b610cd9906002612c72565b610ce39190612c89565b610ced9190612c89565b811015610d4e5760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b6064820152608401610a28565b610d6081670de0b6b3a7640000612c72565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f33610ad2818585610dae8383611712565b610db89190612bfb565b61189c565b610dc5611842565b6001600160a01b038116610e2a5760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610a28565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610e54611842565b305f908152602052600a805460ff60a01b1916600160a01b179055610e77612409565b600a805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610ec1611842565b60148290556015819055610ed58183612bfb565b601381905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a28565b610f32611842565b610f3b5f61256d565b565b610f45611842565b6010805460ff199081169091556012805490911690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b610f8d611842565b8061100057600a546001600160a01b03908116908316036110005760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a28565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b5f611033611842565b6001600160a01b0383166110895760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a28565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa1580156110cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f19190612ca8565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015611141573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111659190612cbf565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6111b9611842565b601054610100900460ff16156112115760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610a28565b6010805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb7905f90a1565b606060048054610a4490612c0e565b611267611842565b600a546001600160a01b03908116908316036112eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a28565b6112f582826125be565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b5f338161133d8286611712565b90508381101561139d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a28565b610ca6828686840361189c565b5f33610ad2818585611b59565b6113bf611842565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611425611842565b670de0b6b3a76400006103e861143a60025490565b611445906003612c72565b61144f9190612c89565b6114599190612c89565b8110156114bd5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a28565b6114cf81670de0b6b3a7640000612c72565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610d91565b61150c611842565b620186a061151960025490565b611524906001612c72565b61152e9190612c89565b81101561159b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a28565b6103e86115a760025490565b6115b2906001612c72565b6115bc9190612c89565b8111156116285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a28565b600b55565b611635611842565b670de0b6b3a76400006103e861164a60025490565b611655906002612c72565b61165f9190612c89565b6116699190612c89565b8110156116cb5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a28565b6116dd81670de0b6b3a7640000612c72565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610d91565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611744611842565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b611776611842565b6012805460ff19169055565b61178a611842565b6001600160a01b0381166117ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a28565b6117f88161256d565b50565b611803611842565b6040515f90339047908381818185875af1925050503d805f8114610b54576040519150601f19603f3d011682016040523d82523d5f602084013e610b54565b6005546001600160a01b03163314610f3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a28565b6001600160a01b0383166118fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a28565b6001600160a01b03821661195f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a28565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119e55760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611a0b5760405162461bcd60e51b8152600401610a2890612d1f565b6001600160a01b0383165f9081526020819052604090205481811015611a825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a28565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b54565b5f611af28484611712565b90505f198114610b545781811015611b4c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a28565b610b54848484840361189c565b6001600160a01b038316611b7f5760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611ba55760405162461bcd60e51b8152600401610a2890612d1f565b5f8111611bf45760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a28565b601054610100900460ff16611c85576001600160a01b0383165f908152601b602052604090205460ff1680611c4057506001600160a01b0382165f908152601b602052604090205460ff165b611c855760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a28565b6001600160a01b0383165f908152600e602052604090205460ff16158015611cc557506001600160a01b0382165f908152600e602052604090205460ff16155b611d465760405162461bcd60e51b815260206004820152604660248201527f426f74732063616e6e6f74207472616e7366657220746f6b656e7320696e206f60448201527f72206f75742065786365707420746f206f776e6572206f722064656164206164606482015265323932b9b99760d11b608482015260a401610a28565b60105460ff1615612156576005546001600160a01b03848116911614801590611d7d57506005546001600160a01b03838116911614155b8015611d9157506001600160a01b03821615155b8015611da857506001600160a01b03821661dead14155b8015611dcc57506001600160a01b0383165f908152601b602052604090205460ff16155b8015611df057506001600160a01b0382165f908152601b602052604090205460ff16155b156121565760125460ff1615611f06576009546001600160a01b03838116911614801590611e2c5750600a546001600160a01b03838116911614155b15611f0657611e3c600243612d62565b325f90815260116020526040902054108015611e785750611e5e600243612d62565b6001600160a01b0383165f90815260116020526040902054105b611ee25760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610a28565b325f9081526011602052604080822043908190556001600160a01b03851683529120555b6001600160a01b0383165f908152601d602052604090205460ff168015611f4557506001600160a01b0382165f908152601c602052604090205460ff16155b1561202057600654811115611fad5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a28565b6008546001600160a01b0383165f90815260208190526040902054611fd29083612bfb565b111561201b5760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b612156565b6001600160a01b0382165f908152601d602052604090205460ff16801561205f57506001600160a01b0383165f908152601c602052604090205460ff16155b156120c95760075481111561201b5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a28565b6001600160a01b0382165f908152601c602052604090205460ff16612156576008546001600160a01b0383165f9081526020819052604090205461210d9083612bfb565b11156121565760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b305f90815260208190526040902054600b5481108015908190612181575060105462010000900460ff165b80156121975750600a54600160a01b900460ff16155b80156121bb57506001600160a01b0385165f908152601d602052604090205460ff16155b80156121df57506001600160a01b0385165f908152601b602052604090205460ff16155b801561220357506001600160a01b0384165f908152601b602052604090205460ff16155b1561223157600a805460ff60a01b1916600160a01b179055612223612409565b600a805460ff60a01b191690555b6001600160a01b0385165f908152601b602052604090205460019060ff168061227157506001600160a01b0385165f908152601b602052604090205460ff165b1561227957505f5b5f81156123f5576001600160a01b0386165f908152601d602052604090205460ff1680156122a857505f601654115b1561232e576064601654866122bd9190612c72565b6122c79190612c89565b9050601654601854826122da9190612c72565b6122e49190612c89565b601a5f8282546122f49190612bfb565b90915550506016546017546123099083612c72565b6123139190612c89565b60195f8282546123239190612bfb565b909155506123d79050565b6001600160a01b0387165f908152601d602052604090205460ff16801561235657505f601354115b156123d75760646013548661236b9190612c72565b6123759190612c89565b9050601354601554826123889190612c72565b6123929190612c89565b601a5f8282546123a29190612bfb565b90915550506013546014546123b79083612c72565b6123c19190612c89565b60195f8282546123d19190612bfb565b90915550505b80156123e8576123e88730836119bf565b6123f28186612d62565b94505b6124008787876119bf565b50505050505050565b305f9081526020819052604081205490505f601954601a5461242b9190612bfb565b9050811580612438575080155b15612441575050565b600b5461244f90603c612c72565b82111561246757600b5461246490603c612c72565b91505b5f80600283601a548661247a9190612c72565b6124849190612c89565b61248e9190612c89565b90506124a261249d8286612d62565b6125eb565b601a54479081905f906124b790600290612c89565b6124c19087612d62565b6019546124ce9085612c72565b6124d89190612c89565b90506124e48183612d62565b5f601a819055601955915083158015906124fd57505f82115b1561250c5761250c848361273b565b471561240057600c546040516001600160a01b039091169047905f81818185875af1925050503d805f811461255c576040519150601f19603f3d011682016040523d82523d5f602084013e612561565b606091505b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f908152601d60205260409020805460ff19168215151790556112f582826127ea565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061261e5761261e612c46565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612675573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126999190612d75565b816001815181106126ac576126ac612c46565b6001600160a01b0392831660209182029290920101526009546126d2913091168461189c565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac9479061270a9085905f90869030904290600401612d90565b5f604051808303815f87803b158015612721575f80fd5b505af1158015612733573d5f803e3d5ffd5b505050505050565b6009546127539030906001600160a01b03168461189c565b60095460405163f305d71960e01b8152306004820152602481018490525f60448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156127be573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127e39190612dff565b5050505050565b6001600160a01b0382165f818152601c6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b5f806040838503121561285d575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b818110156128975785810183015185820160400152820161287b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146117f8575f80fd5b5f80604083850312156128dc575f80fd5b82356128e7816128b7565b946020939093013593505050565b5f60208284031215612905575f80fd5b8135612910816128b7565b9392505050565b80151581146117f8575f80fd5b5f805f60408486031215612936575f80fd5b833567ffffffffffffffff8082111561294d575f80fd5b818601915086601f830112612960575f80fd5b81358181111561296e575f80fd5b8760208260051b8501011115612982575f80fd5b6020928301955093505084013561299881612917565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156129e0576129e06129a3565b604052919050565b5f67ffffffffffffffff821115612a0157612a016129a3565b5060051b60200190565b5f82601f830112612a1a575f80fd5b81356020612a2f612a2a836129e8565b6129b7565b82815260059290921b84018101918181019086841115612a4d575f80fd5b8286015b84811015612a685780358352918301918301612a51565b509695505050505050565b5f8060408385031215612a84575f80fd5b823567ffffffffffffffff80821115612a9b575f80fd5b818501915085601f830112612aae575f80fd5b81356020612abe612a2a836129e8565b82815260059290921b84018101918181019089841115612adc575f80fd5b948201945b83861015612b03578535612af4816128b7565b82529482019490820190612ae1565b96505086013592505080821115612b18575f80fd5b50612b2585828601612a0b565b9150509250929050565b5f805f60608486031215612b41575f80fd5b8335612b4c816128b7565b92506020840135612b5c816128b7565b929592945050506040919091013590565b5f60208284031215612b7d575f80fd5b5035919050565b5f8060408385031215612b95575f80fd5b8235612ba0816128b7565b91506020830135612bb081612917565b809150509250929050565b5f8060408385031215612bcc575f80fd5b8235612bd7816128b7565b91506020830135612bb0816128b7565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ad857610ad8612be7565b600181811c90821680612c2257607f821691505b602082108103612c4057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612c6b57612c6b612be7565b5060010190565b8082028115828204841417610ad857610ad8612be7565b5f82612ca357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612cb8575f80fd5b5051919050565b5f60208284031215612ccf575f80fd5b815161291081612917565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ad857610ad8612be7565b5f60208284031215612d85575f80fd5b8151612910816128b7565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612dde5784516001600160a01b031683529383019391830191600101612db9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612e11575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f26c9f04122a25d16a6d50c35e88e50ba3215d879624f44ab52e0cb978fbfac964736f6c63430008150033

Deployed Bytecode Sourcemap

21587:15983:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29747:321;;;;;;;;;;-1:-1:-1;29747:321:0;;;;;:::i;:::-;;:::i;:::-;;9472:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21738:27;;;;;;;;;;-1:-1:-1;21738:27:0;;;;-1:-1:-1;;;;;21738:27:0;;;;;;-1:-1:-1;;;;;1002:32:1;;;984:51;;972:2;957:18;21738:27:0;820:221:1;11832:201:0;;;;;;;;;;-1:-1:-1;11832:201:0;;;;;:::i;:::-;;:::i;:::-;;;1667:14:1;;1660:22;1642:41;;1630:2;1615:18;11832:201:0;1502:187:1;22855:64:0;;;;;;;;;;-1:-1:-1;22855:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26132:199;;;;;;;;;;-1:-1:-1;26132:199:0;;;;;:::i;:::-;;:::i;10601:108::-;;;;;;;;;;-1:-1:-1;10689:12:0;;10601:108;;;2970:25:1;;;2958:2;2943:18;10601:108:0;2824:177:1;22672:33:0;;;;;;;;;;;;;;;;27980:618;;;;;;;;;;-1:-1:-1;27980:618:0;;;;;:::i;:::-;;:::i;12613:261::-;;;;;;;;;;-1:-1:-1;12613:261:0;;;;;:::i;:::-;;:::i;26498:269::-;;;;;;;;;;-1:-1:-1;26498:269:0;;;;;:::i;:::-;;:::i;10443:93::-;;;;;;;;;;-1:-1:-1;10443:93:0;;10526:2;6281:36:1;;6269:2;6254:18;10443:93:0;6139:184:1;21983:36:0;;;;;;;;;;-1:-1:-1;21983:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13283:238;;;;;;;;;;-1:-1:-1;13283:238:0;;;;;:::i;:::-;;:::i;21772:21::-;;;;;;;;;;-1:-1:-1;21772:21:0;;;;-1:-1:-1;;;;;21772:21:0;;;37028:237;;;;;;;;;;-1:-1:-1;37028:237:0;;;;;:::i;:::-;;:::i;22060:33::-;;;;;;;;;;-1:-1:-1;22060:33:0;;;;;;;;22552:32;;;;;;;;;;;;;;;;37317:248;;;;;;;;;;;;;:::i;22440:31::-;;;;;;;;;;;;;;;;29425:314;;;;;;;;;;-1:-1:-1;29425:314:0;;;;;:::i;:::-;;:::i;21664:28::-;;;;;;;;;;;;;;;;22517;;;;;;;;;;;;;;;;22026:25;;;;;;;;;;;;;;;;22140:30;;;;;;;;;;-1:-1:-1;22140:30:0;;;;;;;;;;;10772:127;;;;;;;;;;-1:-1:-1;10772:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10873:18:0;10846:7;10873:18;;;;;;;;;;;;10772:127;2927:103;;;;;;;;;;;;;:::i;25852:154::-;;;;;;;;;;;;;:::i;28606:260::-;;;;;;;;;;-1:-1:-1;28606:260:0;;;;;:::i;:::-;;:::i;36409:381::-;;;;;;;;;;-1:-1:-1;36409:381:0;;;;;:::i;:::-;;:::i;21630:27::-;;;;;;;;;;;;;;;;25551:249;;;;;;;;;;;;;:::i;2286:87::-;;;;;;;;;;-1:-1:-1;2359:6:0;;-1:-1:-1;;;;;2359:6:0;2286:87;;9691:104;;;;;;;;;;;;;:::i;28874:295::-;;;;;;;;;;-1:-1:-1;28874:295:0;;;;;:::i;:::-;;:::i;14024:436::-;;;;;;;;;;-1:-1:-1;14024:436:0;;;;;:::i;:::-;;:::i;11105:193::-;;;;;;;;;;-1:-1:-1;11105:193:0;;;;;:::i;:::-;;:::i;21699:30::-;;;;;;;;;;;;;;;;23077:58;;;;;;;;;;-1:-1:-1;23077:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22100:33;;;;;;;;;;-1:-1:-1;22100:33:0;;;;;;;;;;;30076:182;;;;;;;;;;-1:-1:-1;30076:182:0;;;;;:::i;:::-;;:::i;27057:284::-;;;;;;;;;;-1:-1:-1;27057:284:0;;;;;:::i;:::-;;:::i;22358:39::-;;;;;;;;;;-1:-1:-1;22358:39:0;;;;;;;;27411:346;;;;;;;;;;-1:-1:-1;27411:346:0;;;;;:::i;:::-;;:::i;22406:27::-;;;;;;;;;;;;;;;;26775:274;;;;;;;;;;-1:-1:-1;26775:274:0;;;;;:::i;:::-;;:::i;11361:151::-;;;;;;;;;;-1:-1:-1;11361:151:0;;;;;:::i;:::-;;:::i;21830:33::-;;;;;;;;;;;;;;;;26014:110;;;;;;;;;;-1:-1:-1;26014:110:0;;;;;:::i;:::-;;:::i;26392:98::-;;;;;;;;;;;;;:::i;21906:37::-;;;;;;;;;;;;;;;;22478:30;;;;;;;;;;;;;;;;3185:201;;;;;;;;;;-1:-1:-1;3185:201:0;;;;;:::i;:::-;;:::i;36860:160::-;;;;;;;;;;;;;:::i;22591:31::-;;;;;;;;;;;;;;;;22631:34;;;;;;;;;;;;;;;;29747:321;2172:13;:11;:13::i;:::-;29848:17:::1;:34:::0;;;29893:16:::1;:32:::0;;;29952:36:::1;29912:13:::0;29868:14;29952:36:::1;:::i;:::-;29936:13;:52:::0;;;30024:2:::1;-1:-1:-1::0;30007:19:0::1;29999:61;;;::::0;-1:-1:-1;;;29999:61:0;;7780:2:1;29999:61:0::1;::::0;::::1;7762:21:1::0;7819:2;7799:18;;;7792:30;7858:31;7838:18;;;7831:59;7907:18;;29999:61:0::1;;;;;;;;;29747:321:::0;;:::o;9472:100::-;9526:13;9559:5;9552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9472:100;:::o;11832:201::-;11915:4;917:10;11971:32;917:10;11987:7;11996:6;11971:8;:32::i;:::-;12021:4;12014:11;;;11832:201;;;;;:::o;26132:199::-;2172:13;:11;:13::i;:::-;26236:9:::1;26232:92;26251:18:::0;;::::1;26232:92;;;26308:4;26290:3;:15;26294:7;;26302:1;26294:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26290:15:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;26290:15:0;:22;;-1:-1:-1;;26290:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26271:3;::::1;::::0;::::1;:::i;:::-;;;;26232:92;;;;26132:199:::0;;;:::o;27980:618::-;2172:13;:11;:13::i;:::-;28122:15:::1;:22;28104:7;:14;:40;28096:83;;;::::0;-1:-1:-1;;;28096:83:0;;8795:2:1;28096:83:0::1;::::0;::::1;8777:21:1::0;8834:2;8814:18;;;8807:30;8873:32;8853:18;;;8846:60;8923:18;;28096:83:0::1;8593:354:1::0;28096:83:0::1;28215:3;28198:7;:14;:20;28190:87;;;::::0;-1:-1:-1;;;28190:87:0;;9154:2:1;28190:87:0::1;::::0;::::1;9136:21:1::0;9193:2;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;-1:-1:-1;;;9283:18:1;;;9276:52;9345:19;;28190:87:0::1;8952:418:1::0;28190:87:0::1;28390:9;28386:205;28409:7;:14;28405:1;:18;28386:205;;;28444:14;28461:7;28469:1;28461:10;;;;;;;;:::i;:::-;;;;;;;28444:27;;28486:14;28503:15;28519:1;28503:18;;;;;;;;:::i;:::-;;;;;;;28486:35;;28536:43;28552:10;28564:6;28572;28536:15;:43::i;:::-;28429:162;;28425:3;;;;;:::i;:::-;;;;28386:205;;;;27980:618:::0;;:::o;12613:261::-;12710:4;917:10;12768:38;12784:4;917:10;12799:6;12768:15;:38::i;:::-;12817:27;12827:4;12833:2;12837:6;12817:9;:27::i;:::-;-1:-1:-1;12862:4:0;;12613:261;-1:-1:-1;;;;12613:261:0:o;26498:269::-;2172:13;:11;:13::i;:::-;26617:4:::1;26611;26591:13;10689:12:::0;;;10601:108;26591:13:::1;:17;::::0;26607:1:::1;26591:17;:::i;:::-;:24;;;;:::i;:::-;26590:31;;;;:::i;:::-;26580:6;:41;;26572:95;;;::::0;-1:-1:-1;;;26572:95:0;;9972:2:1;26572:95:0::1;::::0;::::1;9954:21:1::0;10011:2;9991:18;;;9984:30;10050:34;10030:18;;;10023:62;-1:-1:-1;;;10101:18:1;;;10094:39;10150:19;;26572:95:0::1;9770:405:1::0;26572:95:0::1;26693:17;:6:::0;26703::::1;26693:17;:::i;:::-;26678:12;:32:::0;;;26726:33:::1;::::0;2970:25:1;;;26726:33:0::1;::::0;2958:2:1;2943:18;26726:33:0::1;;;;;;;;26498:269:::0;:::o;13283:238::-;13371:4;917:10;13427:64;917:10;13443:7;13480:10;13452:25;917:10;13443:7;13452:9;:25::i;:::-;:38;;;;:::i;:::-;13427:8;:64::i;37028:237::-;2172:13;:11;:13::i;:::-;-1:-1:-1;;;;;37124:32:0;::::1;37116:83;;;::::0;-1:-1:-1;;;37116:83:0;;10382:2:1;37116:83:0::1;::::0;::::1;10364:21:1::0;10421:2;10401:18;;;10394:30;10460:34;10440:18;;;10433:62;-1:-1:-1;;;10511:18:1;;;10504:36;10557:19;;37116:83:0::1;10180:402:1::0;37116:83:0::1;37210:17;:47:::0;;-1:-1:-1;;;;;;37210:47:0::1;-1:-1:-1::0;;;;;37210:47:0;;;::::1;::::0;;;::::1;::::0;;37028:237::o;37317:248::-;2172:13;:11;:13::i;:::-;37398:4:::1;37408:1;10873:18:::0;;;;;37442:8:::1;:15:::0;;-1:-1:-1;;;;37442:15:0::1;-1:-1:-1::0;;;37442:15:0::1;::::0;;37468:10:::1;:8;:10::i;:::-;37489:8;:16:::0;;-1:-1:-1;;;;37489:16:0::1;::::0;;37521:36:::1;::::0;37541:15:::1;2970:25:1::0;;37521:36:0::1;::::0;2958:2:1;2943:18;37521:36:0::1;;;;;;;37317:248::o:0;29425:314::-;2172:13;:11;:13::i;:::-;29525:16:::1;:33:::0;;;29569:15:::1;:31:::0;;;29626:34:::1;29587:13:::0;29544:14;29626:34:::1;:::i;:::-;29611:12;:49:::0;;;29695:2:::1;-1:-1:-1::0;29679:18:0::1;29671:60;;;::::0;-1:-1:-1;;;29671:60:0;;7780:2:1;29671:60:0::1;::::0;::::1;7762:21:1::0;7819:2;7799:18;;;7792:30;7858:31;7838:18;;;7831:59;7907:18;;29671:60:0::1;7578:353:1::0;2927:103:0;2172:13;:11;:13::i;:::-;2992:30:::1;3019:1;2992:18;:30::i;:::-;2927:103::o:0;25852:154::-;2172:13;:11;:13::i;:::-;25906:14:::1;:22:::0;;-1:-1:-1;;25906:22:0;;::::1;::::0;;;25939:20:::1;:28:::0;;;;::::1;::::0;;25983:15:::1;::::0;::::1;::::0;25923:5:::1;::::0;25983:15:::1;25852:154::o:0;28606:260::-;2172:13;:11;:13::i;:::-;28702:4:::1;28698:104;;28740:6;::::0;-1:-1:-1;;;;;28740:6:0;;::::1;28730:16:::0;;::::1;::::0;28722:68:::1;;;::::0;-1:-1:-1;;;28722:68:0;;11135:2:1;28722:68:0::1;::::0;::::1;11117:21:1::0;11174:2;11154:18;;;11147:30;11213:34;11193:18;;;11186:62;-1:-1:-1;;;11264:18:1;;;11257:37;11311:19;;28722:68:0::1;10933:403:1::0;28722:68:0::1;-1:-1:-1::0;;;;;28812:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28812:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28606:260::o;36409:381::-;36496:10;2172:13;:11;:13::i;:::-;-1:-1:-1;;;;;36527:20:0;::::1;36519:59;;;::::0;-1:-1:-1;;;36519:59:0;;11543:2:1;36519:59:0::1;::::0;::::1;11525:21:1::0;11582:2;11562:18;;;11555:30;11621:28;11601:18;;;11594:56;11667:18;;36519:59:0::1;11341:350:1::0;36519:59:0::1;36616:39;::::0;-1:-1:-1;;;36616:39:0;;36649:4:::1;36616:39;::::0;::::1;984:51:1::0;36589:24:0::1;::::0;-1:-1:-1;;;;;36616:24:0;::::1;::::0;::::1;::::0;957:18:1;;36616:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36674:46;::::0;-1:-1:-1;;;36674:46:0;;-1:-1:-1;;;;;12077:32:1;;;36674:46:0::1;::::0;::::1;12059:51:1::0;12126:18;;;12119:34;;;36589:66:0;;-1:-1:-1;36674:23:0;;::::1;::::0;::::1;::::0;12032:18:1;;36674:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36736;::::0;;-1:-1:-1;;;;;12077:32:1;;12059:51;;12141:2;12126:18;;12119:34;;;36666:54:0;;-1:-1:-1;36736:46:0::1;::::0;12032:18:1;36736:46:0::1;;;;;;;36508:282;36409:381:::0;;;;:::o;25551:249::-;2172:13;:11;:13::i;:::-;25615::::1;::::0;::::1;::::0;::::1;;;25614:14;25606:50;;;::::0;-1:-1:-1;;;25606:50:0;;12616:2:1;25606:50:0::1;::::0;::::1;12598:21:1::0;12655:2;12635:18;;;12628:30;12694:25;12674:18;;;12667:53;12737:18;;25606:50:0::1;12414:347:1::0;25606:50:0::1;25667:13;:20:::0;;-1:-1:-1;;25698:18:0;;;;;25748:12:::1;25727:18;:33:::0;25776:16:::1;::::0;::::1;::::0;-1:-1:-1;;25776:16:0::1;25551:249::o:0;9691:104::-;9747:13;9780:7;9773:14;;;;;:::i;28874:295::-;2172:13;:11;:13::i;:::-;28983:6:::1;::::0;-1:-1:-1;;;;;28983:6:0;;::::1;28975:14:::0;;::::1;::::0;28967:84:::1;;;::::0;-1:-1:-1;;;28967:84:0;;12968:2:1;28967:84:0::1;::::0;::::1;12950:21:1::0;13007:2;12987:18;;;12980:30;13046:34;13026:18;;;13019:62;13117:27;13097:18;;;13090:55;13162:19;;28967:84:0::1;12766:421:1::0;28967:84:0::1;29064:41;29093:4;29099:5;29064:28;:41::i;:::-;29121:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;29121:40:0;::::1;::::0;::::1;::::0;;;::::1;28874:295:::0;;:::o;14024:436::-;14117:4;917:10;14117:4;14200:25;917:10;14217:7;14200:9;:25::i;:::-;14173:52;;14264:15;14244:16;:35;;14236:85;;;;-1:-1:-1;;;14236:85:0;;13394:2:1;14236:85:0;;;13376:21:1;13433:2;13413:18;;;13406:30;13472:34;13452:18;;;13445:62;-1:-1:-1;;;13523:18:1;;;13516:35;13568:19;;14236:85:0;13192:401:1;14236:85:0;14357:60;14366:5;14373:7;14401:15;14382:16;:34;14357:8;:60::i;11105:193::-;11184:4;917:10;11240:28;917:10;11257:2;11261:6;11240:9;:28::i;30076:182::-;2172:13;:11;:13::i;:::-;-1:-1:-1;;;;;30161:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30161:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30216:34;;1642:41:1;;;30216:34:0::1;::::0;1615:18:1;30216:34:0::1;;;;;;;30076:182:::0;;:::o;27057:284::-;2172:13;:11;:13::i;:::-;27179:4:::1;27173;27153:13;10689:12:::0;;;10601:108;27153:13:::1;:17;::::0;27169:1:::1;27153:17;:::i;:::-;:24;;;;:::i;:::-;27152:31;;;;:::i;:::-;27142:6;:41;;27134:98;;;::::0;-1:-1:-1;;;27134:98:0;;13800:2:1;27134:98:0::1;::::0;::::1;13782:21:1::0;13839:2;13819:18;;;13812:30;13878:34;13858:18;;;13851:62;-1:-1:-1;;;13929:18:1;;;13922:42;13981:19;;27134:98:0::1;13598:408:1::0;27134:98:0::1;27261:17;:6:::0;27271::::1;27261:17;:::i;:::-;27243:15;:35:::0;;;27294:39:::1;::::0;2970:25:1;;;27294:39:0::1;::::0;2958:2:1;2943:18;27294:39:0::1;2824:177:1::0;27411:346:0;2172:13;:11;:13::i;:::-;27534:6:::1;27514:13;10689:12:::0;;;10601:108;27514:13:::1;:17;::::0;27530:1:::1;27514:17;:::i;:::-;:26;;;;:::i;:::-;27501:9;:39;;27493:105;;;::::0;-1:-1:-1;;;27493:105:0;;14213:2:1;27493:105:0::1;::::0;::::1;14195:21:1::0;14252:2;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;-1:-1:-1;;;14342:18:1;;;14335:51;14403:19;;27493:105:0::1;14011:417:1::0;27493:105:0::1;27649:4;27629:13;10689:12:::0;;;10601:108;27629:13:::1;:17;::::0;27645:1:::1;27629:17;:::i;:::-;:24;;;;:::i;:::-;27616:9;:37;;27608:102;;;::::0;-1:-1:-1;;;27608:102:0;;14635:2:1;27608:102:0::1;::::0;::::1;14617:21:1::0;14674:2;14654:18;;;14647:30;14713:34;14693:18;;;14686:62;-1:-1:-1;;;14764:18:1;;;14757:50;14824:19;;27608:102:0::1;14433:416:1::0;27608:102:0::1;27720:18;:30:::0;27411:346::o;26775:274::-;2172:13;:11;:13::i;:::-;26895:4:::1;26889;26869:13;10689:12:::0;;;10601:108;26869:13:::1;:17;::::0;26885:1:::1;26869:17;:::i;:::-;:24;;;;:::i;:::-;26868:31;;;;:::i;:::-;26858:6;:41;;26850:96;;;::::0;-1:-1:-1;;;26850:96:0;;15056:2:1;26850:96:0::1;::::0;::::1;15038:21:1::0;15095:2;15075:18;;;15068:30;15134:34;15114:18;;;15107:62;-1:-1:-1;;;15185:18:1;;;15178:40;15235:19;;26850:96:0::1;14854:406:1::0;26850:96:0::1;26973:17;:6:::0;26983::::1;26973:17;:::i;:::-;26957:13;:33:::0;;;27006:35:::1;::::0;2970:25:1;;;27006:35:0::1;::::0;2958:2:1;2943:18;27006:35:0::1;2824:177:1::0;11361:151:0;-1:-1:-1;;;;;11477:18:0;;;11450:7;11477:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11361:151::o;26014:110::-;2172:13;:11;:13::i;:::-;-1:-1:-1;;;;;26098:11:0;;;::::1;;::::0;;;:3:::1;:11;::::0;;;;:18;;-1:-1:-1;;26098:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26014:110::o;26392:98::-;2172:13;:11;:13::i;:::-;26454:20:::1;:28:::0;;-1:-1:-1;;26454:28:0::1;::::0;;26392:98::o;3185:201::-;2172:13;:11;:13::i;:::-;-1:-1:-1;;;;;3274:22:0;::::1;3266:73;;;::::0;-1:-1:-1;;;3266:73:0;;15467:2:1;3266:73:0::1;::::0;::::1;15449:21:1::0;15506:2;15486:18;;;15479:30;15545:34;15525:18;;;15518:62;-1:-1:-1;;;15596:18:1;;;15589:36;15642:19;;3266:73:0::1;15265:402:1::0;3266:73:0::1;3350:28;3369:8;3350:18;:28::i;:::-;3185:201:::0;:::o;36860:160::-;2172:13;:11;:13::i;:::-;36954:58:::1;::::0;36918:12:::1;::::0;36962:10:::1;::::0;36986:21:::1;::::0;36918:12;36954:58;36918:12;36954:58;36986:21;36962:10;36954:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2451:132:::0;2359:6;;-1:-1:-1;;;;;2359:6:0;917:10;2515:23;2507:68;;;;-1:-1:-1;;;2507:68:0;;16084:2:1;2507:68:0;;;16066:21:1;;;16103:18;;;16096:30;16162:34;16142:18;;;16135:62;16214:18;;2507:68:0;15882:356:1;18017:346:0;-1:-1:-1;;;;;18119:19:0;;18111:68;;;;-1:-1:-1;;;18111:68:0;;16445:2:1;18111:68:0;;;16427:21:1;16484:2;16464:18;;;16457:30;16523:34;16503:18;;;16496:62;-1:-1:-1;;;16574:18:1;;;16567:34;16618:19;;18111:68:0;16243:400:1;18111:68:0;-1:-1:-1;;;;;18198:21:0;;18190:68;;;;-1:-1:-1;;;18190:68:0;;16850:2:1;18190:68:0;;;16832:21:1;16889:2;16869:18;;;16862:30;16928:34;16908:18;;;16901:62;-1:-1:-1;;;16979:18:1;;;16972:32;17021:19;;18190:68:0;16648:398:1;18190:68:0;-1:-1:-1;;;;;18271:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18323:32;;2970:25:1;;;18323:32:0;;2943:18:1;18323:32:0;;;;;;;18017:346;;;:::o;14930:806::-;-1:-1:-1;;;;;15027:18:0;;15019:68;;;;-1:-1:-1;;;15019:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15106:16:0;;15098:64;;;;-1:-1:-1;;;15098:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15248:15:0;;15226:19;15248:15;;;;;;;;;;;15282:21;;;;15274:72;;;;-1:-1:-1;;;15274:72:0;;18063:2:1;15274:72:0;;;18045:21:1;18102:2;18082:18;;;18075:30;18141:34;18121:18;;;18114:62;-1:-1:-1;;;18192:18:1;;;18185:36;18238:19;;15274:72:0;17861:402:1;15274:72:0;-1:-1:-1;;;;;15382:15:0;;;:9;:15;;;;;;;;;;;15400:20;;;15382:38;;15600:13;;;;;;;;;;:23;;;;;;15652:26;;2970:25:1;;;15600:13:0;;15652:26;;2943:18:1;15652:26:0;;;;;;;15691:37;27980:618;18654:419;18755:24;18782:25;18792:5;18799:7;18782:9;:25::i;:::-;18755:52;;-1:-1:-1;;18822:16:0;:37;18818:248;;18904:6;18884:16;:26;;18876:68;;;;-1:-1:-1;;;18876:68:0;;18470:2:1;18876:68:0;;;18452:21:1;18509:2;18489:18;;;18482:30;18548:31;18528:18;;;18521:59;18597:18;;18876:68:0;18268:353:1;18876:68:0;18988:51;18997:5;19004:7;19032:6;19013:16;:25;18988:8;:51::i;30266:3806::-;-1:-1:-1;;;;;30366:18:0;;30358:68;;;;-1:-1:-1;;;30358:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30445:16:0;;30437:64;;;;-1:-1:-1;;;30437:64:0;;;;;;;:::i;:::-;30529:1;30520:6;:10;30512:52;;;;-1:-1:-1;;;30512:52:0;;18828:2:1;30512:52:0;;;18810:21:1;18867:2;18847:18;;;18840:30;18906:31;18886:18;;;18879:59;18955:18;;30512:52:0;18626:353:1;30512:52:0;30581:13;;;;;;;30577:132;;-1:-1:-1;;;;;30618:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30647:23:0;;;;;;:19;:23;;;;;;;;30618:52;30610:87;;;;-1:-1:-1;;;30610:87:0;;19186:2:1;30610:87:0;;;19168:21:1;19225:2;19205:18;;;19198:30;-1:-1:-1;;;19244:18:1;;;19237:52;19306:18;;30610:87:0;18984:346:1;30610:87:0;-1:-1:-1;;;;;30730:9:0;;;;;;:3;:9;;;;;;;;30729:10;:22;;;;-1:-1:-1;;;;;;30744:7:0;;;;;;:3;:7;;;;;;;;30743:8;30729:22;30721:105;;;;-1:-1:-1;;;30721:105:0;;19537:2:1;30721:105:0;;;19519:21:1;19576:2;19556:18;;;19549:30;19615:34;19595:18;;;19588:62;19686:34;19666:18;;;19659:62;-1:-1:-1;;;19737:19:1;;;19730:37;19784:19;;30721:105:0;19335:474:1;30721:105:0;30842:14;;;;30839:1653;;;2359:6;;-1:-1:-1;;;;;30876:15:0;;;2359:6;;30876:15;;;;:32;;-1:-1:-1;2359:6:0;;-1:-1:-1;;;;;30895:13:0;;;2359:6;;30895:13;;30876:32;:52;;;;-1:-1:-1;;;;;;30912:16:0;;;;30876:52;:77;;;;-1:-1:-1;;;;;;30932:21:0;;30946:6;30932:21;;30876:77;:107;;;;-1:-1:-1;;;;;;30958:25:0;;;;;;:19;:25;;;;;;;;30957:26;30876:107;:135;;;;-1:-1:-1;;;;;;30988:23:0;;;;;;:19;:23;;;;;;;;30987:24;30876:135;30872:1609;;;31169:20;;;;31165:506;;;31231:9;;-1:-1:-1;;;;;31217:24:0;;;31231:9;;31217:24;;;;:49;;-1:-1:-1;31259:6:0;;-1:-1:-1;;;;;31245:21:0;;;31259:6;;31245:21;;31217:49;31213:439;;;31344:16;31359:1;31344:12;:16;:::i;:::-;31331:9;31302:39;;;;:28;:39;;;;;;:58;:113;;;;-1:-1:-1;31399:16:0;31414:1;31399:12;:16;:::i;:::-;-1:-1:-1;;;;;31364:32:0;;;;;;:28;:32;;;;;;:51;31302:113;31294:179;;;;-1:-1:-1;;;31294:179:0;;20149:2:1;31294:179:0;;;20131:21:1;20188:2;20168:18;;;20161:30;20227:34;20207:18;;;20200:62;-1:-1:-1;;;20278:18:1;;;20271:51;20339:19;;31294:179:0;19947:417:1;31294:179:0;31529:9;31500:39;;;;:28;:39;;;;;;31542:12;31500:54;;;;-1:-1:-1;;;;;31581:32:0;;;;;;:47;31213:439;-1:-1:-1;;;;;31727:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;31763:35:0;;;;;;:31;:35;;;;;;;;31762:36;31727:71;31723:743;;;31845:12;;31835:6;:22;;31827:75;;;;-1:-1:-1;;;31827:75:0;;20571:2:1;31827:75:0;;;20553:21:1;20610:2;20590:18;;;20583:30;20649:34;20629:18;;;20622:62;-1:-1:-1;;;20700:18:1;;;20693:38;20748:19;;31827:75:0;20369:404:1;31827:75:0;31963:15;;-1:-1:-1;;;;;10873:18:0;;10846:7;10873:18;;;;;;;;;;;31937:22;;:6;:22;:::i;:::-;:41;;31929:78;;;;-1:-1:-1;;;31929:78:0;;20980:2:1;31929:78:0;;;20962:21:1;21019:2;20999:18;;;20992:30;-1:-1:-1;;;21038:18:1;;;21031:54;21102:18;;31929:78:0;20778:348:1;31929:78:0;31723:743;;;-1:-1:-1;;;;;32083:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;32117:37:0;;;;;;:31;:37;;;;;;;;32116:38;32083:71;32079:387;;;32201:13;;32191:6;:23;;32183:78;;;;-1:-1:-1;;;32183:78:0;;21333:2:1;32183:78:0;;;21315:21:1;21372:2;21352:18;;;21345:30;21411:34;21391:18;;;21384:62;-1:-1:-1;;;21462:18:1;;;21455:40;21512:19;;32183:78:0;21131:406:1;32079:387:0;-1:-1:-1;;;;;32309:35:0;;;;;;:31;:35;;;;;;;;32304:162;;32402:15;;-1:-1:-1;;;;;10873:18:0;;10846:7;10873:18;;;;;;;;;;;32376:22;;:6;:22;:::i;:::-;:41;;32368:78;;;;-1:-1:-1;;;32368:78:0;;20980:2:1;32368:78:0;;;20962:21:1;21019:2;20999:18;;;20992:30;-1:-1:-1;;;21038:18:1;;;21031:54;21102:18;;32368:78:0;20778:348:1;32368:78:0;32553:4;32504:28;10873:18;;;;;;;;;;;32611;;32587:42;;;;;;;32645:22;;-1:-1:-1;32656:11:0;;;;;;;32645:22;:35;;;;-1:-1:-1;32672:8:0;;-1:-1:-1;;;32672:8:0;;;;32671:9;32645:35;:71;;;;-1:-1:-1;;;;;;32685:31:0;;;;;;:25;:31;;;;;;;;32684:32;32645:71;:101;;;;-1:-1:-1;;;;;;32721:25:0;;;;;;:19;:25;;;;;;;;32720:26;32645:101;:129;;;;-1:-1:-1;;;;;;32751:23:0;;;;;;:19;:23;;;;;;;;32750:24;32645:129;32642:236;;;32791:8;:15;;-1:-1:-1;;;;32791:15:0;-1:-1:-1;;;32791:15:0;;;32823:10;:8;:10::i;:::-;32850:8;:16;;-1:-1:-1;;;;32850:16:0;;;32642:236;-1:-1:-1;;;;;33008:25:0;;32890:12;33008:25;;;:19;:25;;;;;;32905:4;;33008:25;;;:52;;-1:-1:-1;;;;;;33037:23:0;;;;;;:19;:23;;;;;;;;33008:52;33005:99;;;-1:-1:-1;33087:5:0;33005:99;33116:12;33220:7;33217:802;;;-1:-1:-1;;;;;33271:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;33320:1;33304:13;;:17;33271:50;33267:608;;;33373:3;33357:13;;33348:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;33341:35;;33443:13;;33424:16;;33417:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;33395:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33525:13:0;;33505:17;;33498:24;;:4;:24;:::i;:::-;:40;;;;:::i;:::-;33475:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;33267:608:0;;-1:-1:-1;33267:608:0;;-1:-1:-1;;;;;33601:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;33651:1;33636:12;;:16;33601:51;33598:277;;;33701:3;33686:12;;33677:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;33670:34;;33767:12;;33749:15;;33742:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;33720:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;33847:12:0;;33828:16;;33821:23;;:4;:23;:::i;:::-;:38;;;;:::i;:::-;33798:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33598:277:0;33894:8;;33891:89;;33922:42;33938:4;33952;33959;33922:15;:42::i;:::-;33993:14;34003:4;33993:14;;:::i;:::-;;;33217:802;34031:33;34047:4;34053:2;34057:6;34031:15;:33::i;:::-;30345:3727;;;;30266:3806;;;:::o;35176:1225::-;35259:4;35215:23;10873:18;;;;;;;;;;;35215:50;;35276:25;35325:19;;35304:18;;:40;;;;:::i;:::-;35276:68;-1:-1:-1;35360:20:0;;;:46;;-1:-1:-1;35384:22:0;;35360:46;35357:60;;;35409:7;;35176:1225::o;35357:60::-;35450:18;;:23;;35471:2;35450:23;:::i;:::-;35432:15;:41;35429:113;;;35507:18;;:23;;35528:2;35507:23;:::i;:::-;35489:41;;35429:113;35554:12;35628:23;35713:1;35693:17;35672:18;;35654:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;35628:86;-1:-1:-1;35727:51:0;35744:33;35628:86;35744:15;:33;:::i;:::-;35727:16;:51::i;:::-;35977:18;;35812:21;;;;35791:18;;35977:20;;35996:1;;35977:20;:::i;:::-;35956:42;;:17;:42;:::i;:::-;35933:19;;35920:32;;:10;:32;:::i;:::-;:79;;;;:::i;:::-;35893:106;-1:-1:-1;36012:35:0;35893:106;36012:35;;:::i;:::-;36081:1;36060:18;:22;;;36093:19;:23;36012:35;-1:-1:-1;36132:19:0;;;;;:42;;;36173:1;36155:15;:19;36132:42;36129:119;;;36190:46;36203:15;36220;36190:12;:46::i;:::-;36263:21;:25;36260:134;;36325:17;;36317:65;;-1:-1:-1;;;;;36325:17:0;;;;36356:21;;36317:65;;;;36356:21;36325:17;36317:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;35176:1225:0:o;3546:191::-;3639:6;;;-1:-1:-1;;;;;3656:17:0;;;-1:-1:-1;;;;;;3656:17:0;;;;;;;3689:40;;3639:6;;;3656:17;3639:6;;3689:40;;3620:16;;3689:40;3609:128;3546:191;:::o;29177:240::-;-1:-1:-1;;;;;29260:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;29260:39:0;;;;;;;29312;29260:31;:39;29312:26;:39::i;34078:573::-;34230:16;;;34244:1;34230:16;;;;;;;;34206:21;;34230:16;;;;;;;;;;-1:-1:-1;34230:16:0;34206:40;;34275:4;34257;34262:1;34257:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34257:23:0;;;:7;;;;;;;;;;:23;;;;34301:9;;:16;;;-1:-1:-1;;;34301:16:0;;;;:9;;;;;:14;;:16;;;;;34257:7;;34301:16;;;;;:9;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34291:4;34296:1;34291:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34291:26:0;;;:7;;;;;;;;;:26;34362:9;;34330:56;;34347:4;;34362:9;34374:11;34330:8;:56::i;:::-;34425:9;;:218;;-1:-1:-1;;;34425:218:0;;-1:-1:-1;;;;;34425:9:0;;;;:60;;:218;;34500:11;;34425:9;;34570:4;;34597;;34617:15;;34425:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34133:518;34078:573;:::o;34659:509::-;34839:9;;34807:56;;34824:4;;-1:-1:-1;;;;;34839:9:0;34851:11;34807:8;:56::i;:::-;34906:9;;:254;;-1:-1:-1;;;34906:254:0;;34972:4;34906:254;;;23124:34:1;23174:18;;;23167:34;;;34906:9:0;23217:18:1;;;23210:34;;;23260:18;;;23253:34;35112:6:0;23303:19:1;;;23296:44;35134:15:0;23356:19:1;;;23349:35;-1:-1:-1;;;;;34906:9:0;;;;:25;;34939:9;;23058:19:1;;34906:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34659:509;;:::o;27765:207::-;-1:-1:-1;;;;;27853:39:0;;;;;;:31;:39;;;;;;;;;:52;;-1:-1:-1;;27853:52:0;;;;;;;;;;27921:43;;23874:51:1;;;23941:18;;;23934:50;27921:43:0;;23847:18:1;27921:43:0;;;;;;;27765:207;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;1046:131::-;-1:-1:-1;;;;;1121:31:1;;1111:42;;1101:70;;1167:1;1164;1157:12;1182:315;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:52;;;1327:1;1324;1317:12;1279:52;1366:9;1353:23;1385:31;1410:5;1385:31;:::i;:::-;1435:5;1487:2;1472:18;;;;1459:32;;-1:-1:-1;;;1182:315:1:o;1694:247::-;1753:6;1806:2;1794:9;1785:7;1781:23;1777:32;1774:52;;;1822:1;1819;1812:12;1774:52;1861:9;1848:23;1880:31;1905:5;1880:31;:::i;:::-;1930:5;1694:247;-1:-1:-1;;;1694:247:1:o;1946:118::-;2032:5;2025:13;2018:21;2011:5;2008:32;1998:60;;2054:1;2051;2044:12;2069:750;2161:6;2169;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2286:9;2273:23;2315:18;2356:2;2348:6;2345:14;2342:34;;;2372:1;2369;2362:12;2342:34;2410:6;2399:9;2395:22;2385:32;;2455:7;2448:4;2444:2;2440:13;2436:27;2426:55;;2477:1;2474;2467:12;2426:55;2517:2;2504:16;2543:2;2535:6;2532:14;2529:34;;;2559:1;2556;2549:12;2529:34;2614:7;2607:4;2597:6;2594:1;2590:14;2586:2;2582:23;2578:34;2575:47;2572:67;;;2635:1;2632;2625:12;2572:67;2666:4;2658:13;;;;-1:-1:-1;2690:6:1;-1:-1:-1;;2731:20:1;;2718:34;2761:28;2718:34;2761:28;:::i;:::-;2808:5;2798:15;;;2069:750;;;;;:::o;3006:127::-;3067:10;3062:3;3058:20;3055:1;3048:31;3098:4;3095:1;3088:15;3122:4;3119:1;3112:15;3138:275;3209:2;3203:9;3274:2;3255:13;;-1:-1:-1;;3251:27:1;3239:40;;3309:18;3294:34;;3330:22;;;3291:62;3288:88;;;3356:18;;:::i;:::-;3392:2;3385:22;3138:275;;-1:-1:-1;3138:275:1:o;3418:183::-;3478:4;3511:18;3503:6;3500:30;3497:56;;;3533:18;;:::i;:::-;-1:-1:-1;3578:1:1;3574:14;3590:4;3570:25;;3418:183::o;3606:662::-;3660:5;3713:3;3706:4;3698:6;3694:17;3690:27;3680:55;;3731:1;3728;3721:12;3680:55;3767:6;3754:20;3793:4;3817:60;3833:43;3873:2;3833:43;:::i;:::-;3817:60;:::i;:::-;3911:15;;;3997:1;3993:10;;;;3981:23;;3977:32;;;3942:12;;;;4021:15;;;4018:35;;;4049:1;4046;4039:12;4018:35;4085:2;4077:6;4073:15;4097:142;4113:6;4108:3;4105:15;4097:142;;;4179:17;;4167:30;;4217:12;;;;4130;;4097:142;;;-1:-1:-1;4257:5:1;3606:662;-1:-1:-1;;;;;;3606:662:1:o;4273:1215::-;4391:6;4399;4452:2;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4508:9;4495:23;4537:18;4578:2;4570:6;4567:14;4564:34;;;4594:1;4591;4584:12;4564:34;4632:6;4621:9;4617:22;4607:32;;4677:7;4670:4;4666:2;4662:13;4658:27;4648:55;;4699:1;4696;4689:12;4648:55;4735:2;4722:16;4757:4;4781:60;4797:43;4837:2;4797:43;:::i;4781:60::-;4875:15;;;4957:1;4953:10;;;;4945:19;;4941:28;;;4906:12;;;;4981:19;;;4978:39;;;5013:1;5010;5003:12;4978:39;5037:11;;;;5057:217;5073:6;5068:3;5065:15;5057:217;;;5153:3;5140:17;5170:31;5195:5;5170:31;:::i;:::-;5214:18;;5090:12;;;;5252;;;;5057:217;;;5293:5;-1:-1:-1;;5336:18:1;;5323:32;;-1:-1:-1;;5367:16:1;;;5364:36;;;5396:1;5393;5386:12;5364:36;;5419:63;5474:7;5463:8;5452:9;5448:24;5419:63;:::i;:::-;5409:73;;;4273:1215;;;;;:::o;5493:456::-;5570:6;5578;5586;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5713:31;5738:5;5713:31;:::i;:::-;5763:5;-1:-1:-1;5820:2:1;5805:18;;5792:32;5833:33;5792:32;5833:33;:::i;:::-;5493:456;;5885:7;;-1:-1:-1;;;5939:2:1;5924:18;;;;5911:32;;5493:456::o;5954:180::-;6013:6;6066:2;6054:9;6045:7;6041:23;6037:32;6034:52;;;6082:1;6079;6072:12;6034:52;-1:-1:-1;6105:23:1;;5954:180;-1:-1:-1;5954:180:1:o;6536:382::-;6601:6;6609;6662:2;6650:9;6641:7;6637:23;6633:32;6630:52;;;6678:1;6675;6668:12;6630:52;6717:9;6704:23;6736:31;6761:5;6736:31;:::i;:::-;6786:5;-1:-1:-1;6843:2:1;6828:18;;6815:32;6856:30;6815:32;6856:30;:::i;:::-;6905:7;6895:17;;;6536:382;;;;;:::o;6923:388::-;6991:6;6999;7052:2;7040:9;7031:7;7027:23;7023:32;7020:52;;;7068:1;7065;7058:12;7020:52;7107:9;7094:23;7126:31;7151:5;7126:31;:::i;:::-;7176:5;-1:-1:-1;7233:2:1;7218:18;;7205:32;7246:33;7205:32;7246:33;:::i;7316:127::-;7377:10;7372:3;7368:20;7365:1;7358:31;7408:4;7405:1;7398:15;7432:4;7429:1;7422:15;7448:125;7513:9;;;7534:10;;;7531:36;;;7547:18;;:::i;7936:380::-;8015:1;8011:12;;;;8058;;;8079:61;;8133:4;8125:6;8121:17;8111:27;;8079:61;8186:2;8178:6;8175:14;8155:18;8152:38;8149:161;;8232:10;8227:3;8223:20;8220:1;8213:31;8267:4;8264:1;8257:15;8295:4;8292:1;8285:15;8149:161;;7936:380;;;:::o;8321:127::-;8382:10;8377:3;8373:20;8370:1;8363:31;8413:4;8410:1;8403:15;8437:4;8434:1;8427:15;8453:135;8492:3;8513:17;;;8510:43;;8533:18;;:::i;:::-;-1:-1:-1;8580:1:1;8569:13;;8453:135::o;9375:168::-;9448:9;;;9479;;9496:15;;;9490:22;;9476:37;9466:71;;9517:18;;:::i;9548:217::-;9588:1;9614;9604:132;;9658:10;9653:3;9649:20;9646:1;9639:31;9693:4;9690:1;9683:15;9721:4;9718:1;9711:15;9604:132;-1:-1:-1;9750:9:1;;9548:217::o;11696:184::-;11766:6;11819:2;11807:9;11798:7;11794:23;11790:32;11787:52;;;11835:1;11832;11825:12;11787:52;-1:-1:-1;11858:16:1;;11696:184;-1:-1:-1;11696:184:1:o;12164:245::-;12231:6;12284:2;12272:9;12263:7;12259:23;12255:32;12252:52;;;12300:1;12297;12290:12;12252:52;12332:9;12326:16;12351:28;12373:5;12351:28;:::i;17051:401::-;17253:2;17235:21;;;17292:2;17272:18;;;17265:30;17331:34;17326:2;17311:18;;17304:62;-1:-1:-1;;;17397:2:1;17382:18;;17375:35;17442:3;17427:19;;17051:401::o;17457:399::-;17659:2;17641:21;;;17698:2;17678:18;;;17671:30;17737:34;17732:2;17717:18;;17710:62;-1:-1:-1;;;17803:2:1;17788:18;;17781:33;17846:3;17831:19;;17457:399::o;19814:128::-;19881:9;;;19902:11;;;19899:37;;;19916:18;;:::i;21542:251::-;21612:6;21665:2;21653:9;21644:7;21640:23;21636:32;21633:52;;;21681:1;21678;21671:12;21633:52;21713:9;21707:16;21732:31;21757:5;21732:31;:::i;21798:980::-;22060:4;22108:3;22097:9;22093:19;22139:6;22128:9;22121:25;22165:2;22203:6;22198:2;22187:9;22183:18;22176:34;22246:3;22241:2;22230:9;22226:18;22219:31;22270:6;22305;22299:13;22336:6;22328;22321:22;22374:3;22363:9;22359:19;22352:26;;22413:2;22405:6;22401:15;22387:29;;22434:1;22444:195;22458:6;22455:1;22452:13;22444:195;;;22523:13;;-1:-1:-1;;;;;22519:39:1;22507:52;;22614:15;;;;22579:12;;;;22555:1;22473:9;22444:195;;;-1:-1:-1;;;;;;;22695:32:1;;;;22690:2;22675:18;;22668:60;-1:-1:-1;;;22759:3:1;22744:19;22737:35;22656:3;21798:980;-1:-1:-1;;;21798:980:1:o;23395:306::-;23483:6;23491;23499;23552:2;23540:9;23531:7;23527:23;23523:32;23520:52;;;23568:1;23565;23558:12;23520:52;23597:9;23591:16;23581:26;;23647:2;23636:9;23632:18;23626:25;23616:35;;23691:2;23680:9;23676:18;23670:25;23660:35;;23395:306;;;;;:::o

Swarm Source

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