ETH Price: $3,440.28 (-1.13%)
Gas: 4 Gwei

Token

Durham Inu (RBI)
 

Overview

Max Total Supply

1,000,000,000 RBI

Holders

597

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Fake_Phishing66229
Balance
66,264.711253004454252336 RBI

Value
$0.00
0x6E01aF3913026660Fcebb93f054345eCCd972251
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:
DurhamInu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-19
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10;

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);

    /**
     * @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
    );
}

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

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

/**
 * @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);
}

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

/**
 * @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;
    }
}

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

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev 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 {}
}

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // 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 buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Durham Inu", "RBI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 5;
        uint256 _buyLiquidityFee = 3;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 10;
        uint256 _sellLiquidityFee = 3;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 1) / 1000; // 0.1% maxTransactionAmountTxn
        maxWallet = (totalSupply * 5) / 1000; // .5% maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

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

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

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

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

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

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

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / 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] = uniswapV2Router.WETH();

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916831790556013805490911690911790553480156200004d57600080fd5b506040518060400160405280600a81526020016944757268616d20496e7560b01b8152506040518060400160405280600381526020016252424960e81b8152508160039080519060200190620000a5929190620006a7565b508051620000bb906004906020840190620006a7565b505050620000d8620000d2620003f560201b60201c565b620003f9565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000fa8160016200044b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000145573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016b91906200074d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001df91906200074d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025391906200074d565b6001600160a01b031660a08190526200026e9060016200044b565b60a0516200027e906001620004c4565b600560036002600a82826b033b2e3c9fd0803ce80000006103e8620002a582600162000795565b620002b19190620007b7565b6008556103e8620002c482600562000795565b620002d09190620007b7565b600a55612710620002e382600562000795565b620002ef9190620007b7565b600955601587905560168690556017859055846200030e8789620007da565b6200031a9190620007da565b6014556019849055601a839055601b82905581620003398486620007da565b620003459190620007da565b601855600554600680546001600160a01b03199081166001600160a01b0390931692831790915560078054909116821790556200038490600162000518565b6200039130600162000518565b620003a061dead600162000518565b620003bf620003b76005546001600160a01b031690565b60016200044b565b620003cc3060016200044b565b620003db61dead60016200044b565b620003e73382620005c2565b505050505050505062000832565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200049a5760405162461bcd60e51b8152602060048201819052602482015260008051602062003a0383398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005635760405162461bcd60e51b8152602060048201819052602482015260008051602062003a03833981519152604482015260640162000491565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200061a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000491565b80600260008282546200062e9190620007da565b90915550506001600160a01b038216600090815260208190526040812080548392906200065d908490620007da565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006b590620007f5565b90600052602060002090601f016020900481019282620006d9576000855562000724565b82601f10620006f457805160ff191683800117855562000724565b8280016001018555821562000724579182015b828111156200072457825182559160200191906001019062000707565b506200073292915062000736565b5090565b5b8082111562000732576000815560010162000737565b6000602082840312156200076057600080fd5b81516001600160a01b03811681146200077857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007b257620007b26200077f565b500290565b600082620007d557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007f057620007f06200077f565b500190565b600181811c908216806200080a57607f821691505b602082108114156200082c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613149620008ba600039600081816106000152818161110701528181611819015281816118b4015281816118e001528181611d0f0152818161288101528181612923015261294f01526000818161045901528181611cd101528181612a5901528181612b1201528181612b4e01528181612bc80152612c2501526131496000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612ca3565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d0d565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612d39565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612d39565b610bdf565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612d56565b610c6f565b34801561055857600080fd5b50610408610567366004612d6f565b610d4c565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612d0d565b610d70565b3480156105fa57600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612d39565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612d39565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610daf565b34801561070257600080fd5b506104d2610711366004612dc0565b610de5565b34801561072257600080fd5b50610408610f0e565b34801561073757600080fd5b506104d2610746366004612df5565b610f4b565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612e2a565b610f9f565b3480156107ad57600080fd5b506104d2611045565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612e56565b611086565b34801561083657600080fd5b506103d26110cc565b34801561084b57600080fd5b506104d261085a366004612df5565b6110db565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612d0d565b6111bb565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612d0d565b61124d565b34801561091957600080fd5b506104d2610928366004612d39565b61125b565b34801561093957600080fd5b50610408610948366004612d39565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612df5565b6112e2565b3480156109a857600080fd5b506104d26109b7366004612e2a565b61136b565b3480156109c857600080fd5b506104d26109d7366004612d56565b61140e565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612d56565b6114df565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612e71565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b50610408611636565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612d39565b611673565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612d56565b61170e565b606060038054610b4490612eaa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612eaa565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b600033610bd5818585611988565b5060019392505050565b6005546001600160a01b03163314610c125760405162461bcd60e51b8152600401610c0990612ee5565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c995760405162461bcd60e51b8152600401610c0990612ee5565b670de0b6b3a76400006103e8610cae60025490565b610cb9906001612f30565b610cc39190612f4f565b610ccd9190612f4f565b811015610d345760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c09565b610d4681670de0b6b3a7640000612f30565b60085550565b600033610d5a858285611aac565b610d65858585611b3e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610bd59082908690610daa908790612f71565b611988565b6005546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610c0990612ee5565b610de36000612413565b565b6005546001600160a01b03163314610e0f5760405162461bcd60e51b8152600401610c0990612ee5565b610258831015610e7d5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c09565b6103e88211158015610e8d575060015b610ef25760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c09565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f3b5760405162461bcd60e51b8152600401610c0990612ee5565b506011805460ff19169055600190565b6005546001600160a01b03163314610f755760405162461bcd60e51b8152600401610c0990612ee5565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c0990612ee5565b60158390556016829055601781905580610fe38385612f71565b610fed9190612f71565b601481815510156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c09565b505050565b6005546001600160a01b0316331461106f5760405162461bcd60e51b8152600401610c0990612ee5565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146110b05760405162461bcd60e51b8152600401610c0990612ee5565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612eaa565b6005546001600160a01b031633146111055760405162461bcd60e51b8152600401610c0990612ee5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156111ad5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c09565b6111b78282612465565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156112405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c09565b610d658286868403611988565b600033610bd5818585611b3e565b6005546001600160a01b031633146112855760405162461bcd60e51b8152600401610c0990612ee5565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461130c5760405162461bcd60e51b8152600401610c0990612ee5565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113955760405162461bcd60e51b8152600401610c0990612ee5565b6019839055601a829055601b819055806113af8385612f71565b6113b99190612f71565b6018819055601910156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c09565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610c0990612ee5565b670de0b6b3a76400006103e861144d60025490565b611458906005612f30565b6114629190612f4f565b61146c9190612f4f565b8110156114c75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c09565b6114d981670de0b6b3a7640000612f30565b600a5550565b6005546000906001600160a01b0316331461150c5760405162461bcd60e51b8152600401610c0990612ee5565b620186a061151960025490565b611524906001612f30565b61152e9190612f4f565b82101561159b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c09565b6103e86115a760025490565b6115b2906005612f30565b6115bc9190612f4f565b8211156116285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c09565b50600981905560015b919050565b6005546000906001600160a01b031633146116635760405162461bcd60e51b8152600401610c0990612ee5565b506013805460ff19169055600190565b6005546001600160a01b0316331461169d5760405162461bcd60e51b8152600401610c0990612ee5565b6001600160a01b0381166117025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c09565b61170b81612413565b50565b6005546000906001600160a01b0316331461173b5760405162461bcd60e51b8152600401610c0990612ee5565b600f5460105461174b9190612f71565b42116117995760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c09565b6103e88211156117fe5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c09565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188d9190612f89565b905060006118a76127106118a184876124b9565b906124cc565b905080156118dc576118dc7f000000000000000000000000000000000000000000000000000000000000000061dead836124d8565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561193c57600080fd5b505af1158015611950573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c09565b6001600160a01b038216611a4b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c09565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611b385781811015611b2b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c09565b611b388484848403611988565b50505050565b6001600160a01b038316611b645760405162461bcd60e51b8152600401610c0990612fa2565b6001600160a01b038216611b8a5760405162461bcd60e51b8152600401610c0990612fe7565b80611b9b57611040838360006124d8565b60115460ff1615612055576005546001600160a01b03848116911614801590611bd257506005546001600160a01b03838116911614155b8015611be657506001600160a01b03821615155b8015611bfd57506001600160a01b03821661dead14155b8015611c135750600554600160a01b900460ff16155b1561205557601154610100900460ff16611cab576001600160a01b0383166000908152601f602052604090205460ff1680611c6657506001600160a01b0382166000908152601f602052604090205460ff165b611cab5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c09565b60135460ff1615611df2576005546001600160a01b03838116911614801590611d0657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d4457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611df257326000908152601260205260409020544311611ddf5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c09565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e3257506001600160a01b038216600090815260208052604090205460ff16155b15611f1657600854811115611ea75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c09565b600a546001600160a01b038316600090815260208190526040902054611ecd9083612f71565b1115611f115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c09565b612055565b6001600160a01b03821660009081526021602052604090205460ff168015611f5657506001600160a01b038316600090815260208052604090205460ff16155b15611fcc57600854811115611f115760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c09565b6001600160a01b038216600090815260208052604090205460ff1661205557600a546001600160a01b0383166000908152602081905260409020546120119083612f71565b11156120555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c09565b3060009081526020819052604090205460095481108015908190612081575060115462010000900460ff165b80156120975750600554600160a01b900460ff16155b80156120bc57506001600160a01b03851660009081526021602052604090205460ff16155b80156120e157506001600160a01b0385166000908152601f602052604090205460ff16155b801561210657506001600160a01b0384166000908152601f602052604090205460ff16155b15612134576005805460ff60a01b1916600160a01b17905561212661262c565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561216657506001600160a01b03841660009081526021602052604090205460ff165b80156121745750600c5460ff165b801561218f5750600d54600e5461218b9190612f71565b4210155b80156121b457506001600160a01b0385166000908152601f602052604090205460ff16155b156121c3576121c1612866565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061221157506001600160a01b0385166000908152601f602052604090205460ff165b1561221a575060005b600081156123ff576001600160a01b03861660009081526021602052604090205460ff16801561224c57506000601854115b156123045761226b60646118a1601854886124b990919063ffffffff16565b9050601854601a548261227e9190612f30565b6122889190612f4f565b601d60008282546122999190612f71565b9091555050601854601b546122ae9083612f30565b6122b89190612f4f565b601e60008282546122c99190612f71565b90915550506018546019546122de9083612f30565b6122e89190612f4f565b601c60008282546122f99190612f71565b909155506123e19050565b6001600160a01b03871660009081526021602052604090205460ff16801561232e57506000601454115b156123e15761234d60646118a1601454886124b990919063ffffffff16565b9050601454601654826123609190612f30565b61236a9190612f4f565b601d600082825461237b9190612f71565b90915550506014546017546123909083612f30565b61239a9190612f4f565b601e60008282546123ab9190612f71565b90915550506014546015546123c09083612f30565b6123ca9190612f4f565b601c60008282546123db9190612f71565b90915550505b80156123f2576123f28730836124d8565b6123fc818661302a565b94505b61240a8787876124d8565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124c58284612f30565b9392505050565b60006124c58284612f4f565b6001600160a01b0383166124fe5760405162461bcd60e51b8152600401610c0990612fa2565b6001600160a01b0382166125245760405162461bcd60e51b8152600401610c0990612fe7565b6001600160a01b0383166000908152602081905260409020548181101561259c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c09565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125d3908490612f71565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261f91815260200190565b60405180910390a3611b38565b3060009081526020819052604081205490506000601e54601c54601d546126539190612f71565b61265d9190612f71565b9050600082158061266c575081155b1561267657505050565b600954612684906014612f30565b83111561269c57600954612699906014612f30565b92505b6000600283601d54866126af9190612f30565b6126b99190612f4f565b6126c39190612f4f565b905060006126d185836129f6565b9050476126dd82612a02565b60006126e947836129f6565b90506000612706876118a1601c54856124b990919063ffffffff16565b90506000612723886118a1601e54866124b990919063ffffffff16565b9050600081612732848661302a565b61273c919061302a565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b509098505086158015906127b25750600081115b15612805576127c18782612bc2565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612852576040519150601f19603f3d011682016040523d82523d6000602084013e612857565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa1580156128d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f79190612f89565b905060006129166127106118a1600b54856124b990919063ffffffff16565b9050801561294b5761294b7f000000000000000000000000000000000000000000000000000000000000000061dead836124d8565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129ab57600080fd5b505af11580156129bf573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124c5828461302a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a3757612a37613041565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ab5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad99190613057565b81600181518110612aec57612aec613041565b60200260200101906001600160a01b031690816001600160a01b031681525050612b37307f000000000000000000000000000000000000000000000000000000000000000084611988565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b8c908590600090869030904290600401613074565b600060405180830381600087803b158015612ba657600080fd5b505af1158015612bba573d6000803e3d6000fd5b505050505050565b612bed307f000000000000000000000000000000000000000000000000000000000000000084611988565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c77573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9c91906130e5565b5050505050565b600060208083528351808285015260005b81811015612cd057858101830151858201604001528201612cb4565b81811115612ce2576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461170b57600080fd5b60008060408385031215612d2057600080fd5b8235612d2b81612cf8565b946020939093013593505050565b600060208284031215612d4b57600080fd5b81356124c581612cf8565b600060208284031215612d6857600080fd5b5035919050565b600080600060608486031215612d8457600080fd5b8335612d8f81612cf8565b92506020840135612d9f81612cf8565b929592945050506040919091013590565b8035801515811461163157600080fd5b600080600060608486031215612dd557600080fd5b8335925060208401359150612dec60408501612db0565b90509250925092565b60008060408385031215612e0857600080fd5b8235612e1381612cf8565b9150612e2160208401612db0565b90509250929050565b600080600060608486031215612e3f57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e6857600080fd5b6124c582612db0565b60008060408385031215612e8457600080fd5b8235612e8f81612cf8565b91506020830135612e9f81612cf8565b809150509250929050565b600181811c90821680612ebe57607f821691505b60208210811415612edf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4a57612f4a612f1a565b500290565b600082612f6c57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f8457612f84612f1a565b500190565b600060208284031215612f9b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561303c5761303c612f1a565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561306957600080fd5b81516124c581612cf8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130c45784516001600160a01b03168352938301939183019160010161309f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130fa57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122082b94dbf9d3e02fe652ef932b9a0453a65a1c8cfb7c7cd00bf406811d4acc63664736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610ac9578063f637434214610ae9578063f8b45b0514610aff578063fe72b27a14610b1557600080fd5b8063dd62ed3e14610a42578063e2f4560514610a88578063e884f26014610a9e578063f11a24d314610ab357600080fd5b8063c876d0b9116100dc578063c876d0b9146109dc578063c8c8ebe4146109f6578063d257b34f14610a0c578063d85ba06314610a2c57600080fd5b8063bbc0c7421461095d578063c02466681461097c578063c17b5b8c1461099c578063c18bc195146109bc57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108d7578063a9059cbb146108ed578063aacebbe31461090d578063b62496f51461092d57600080fd5b80639ec22c0e146108755780639fccce321461088b578063a0d82dc5146108a1578063a457c2d7146108b757600080fd5b8063924de9b7116101c1578063924de9b71461080a57806395d89b411461082a5780639a7a23d61461083f5780639c3b4fdc1461085f57600080fd5b80638da5cb5b146107b65780638ea5220f146107d457806392136913146107f457600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a8741461074b5780637bce5a041461076b5780638095d564146107815780638a8c523c146107a157600080fd5b8063715018a6146106e1578063730c1888146106f6578063751039fc146107165780637571336a1461072b57600080fd5b80634fbee193116102a65780634fbee1931461063c5780636a486a8e146106755780636ddd17131461068b57806370a08231146106ab57600080fd5b8063313ce567146105b257806339509351146105ce57806349bd5a5e146105ee5780634a62bb651461062257600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461054c57806327c8f8351461056c5780632c3e486c146105825780632e82f1a01461059857600080fd5b8063199ffc72146104ea5780631a8145bb146105005780631f3fed8f14610516578063203e727e1461052c57600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104935780631816467f146104b2578063184c16c5146104d457600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b35565b6040516103df9190612ca3565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612d0d565b610bc7565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612d39565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103df565b34801561049f57600080fd5b506002545b6040519081526020016103df565b3480156104be57600080fd5b506104d26104cd366004612d39565b610bdf565b005b3480156104e057600080fd5b506104a4600f5481565b3480156104f657600080fd5b506104a4600b5481565b34801561050c57600080fd5b506104a4601d5481565b34801561052257600080fd5b506104a4601c5481565b34801561053857600080fd5b506104d2610547366004612d56565b610c6f565b34801561055857600080fd5b50610408610567366004612d6f565b610d4c565b34801561057857600080fd5b5061047b61dead81565b34801561058e57600080fd5b506104a4600d5481565b3480156105a457600080fd5b50600c546104089060ff1681565b3480156105be57600080fd5b50604051601281526020016103df565b3480156105da57600080fd5b506104086105e9366004612d0d565b610d70565b3480156105fa57600080fd5b5061047b7f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f81565b34801561062e57600080fd5b506011546104089060ff1681565b34801561064857600080fd5b50610408610657366004612d39565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561068157600080fd5b506104a460185481565b34801561069757600080fd5b506011546104089062010000900460ff1681565b3480156106b757600080fd5b506104a46106c6366004612d39565b6001600160a01b031660009081526020819052604090205490565b3480156106ed57600080fd5b506104d2610daf565b34801561070257600080fd5b506104d2610711366004612dc0565b610de5565b34801561072257600080fd5b50610408610f0e565b34801561073757600080fd5b506104d2610746366004612df5565b610f4b565b34801561075757600080fd5b5060065461047b906001600160a01b031681565b34801561077757600080fd5b506104a460155481565b34801561078d57600080fd5b506104d261079c366004612e2a565b610f9f565b3480156107ad57600080fd5b506104d2611045565b3480156107c257600080fd5b506005546001600160a01b031661047b565b3480156107e057600080fd5b5060075461047b906001600160a01b031681565b34801561080057600080fd5b506104a460195481565b34801561081657600080fd5b506104d2610825366004612e56565b611086565b34801561083657600080fd5b506103d26110cc565b34801561084b57600080fd5b506104d261085a366004612df5565b6110db565b34801561086b57600080fd5b506104a460175481565b34801561088157600080fd5b506104a460105481565b34801561089757600080fd5b506104a4601e5481565b3480156108ad57600080fd5b506104a4601b5481565b3480156108c357600080fd5b506104086108d2366004612d0d565b6111bb565b3480156108e357600080fd5b506104a4600e5481565b3480156108f957600080fd5b50610408610908366004612d0d565b61124d565b34801561091957600080fd5b506104d2610928366004612d39565b61125b565b34801561093957600080fd5b50610408610948366004612d39565b60216020526000908152604090205460ff1681565b34801561096957600080fd5b5060115461040890610100900460ff1681565b34801561098857600080fd5b506104d2610997366004612df5565b6112e2565b3480156109a857600080fd5b506104d26109b7366004612e2a565b61136b565b3480156109c857600080fd5b506104d26109d7366004612d56565b61140e565b3480156109e857600080fd5b506013546104089060ff1681565b348015610a0257600080fd5b506104a460085481565b348015610a1857600080fd5b50610408610a27366004612d56565b6114df565b348015610a3857600080fd5b506104a460145481565b348015610a4e57600080fd5b506104a4610a5d366004612e71565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9457600080fd5b506104a460095481565b348015610aaa57600080fd5b50610408611636565b348015610abf57600080fd5b506104a460165481565b348015610ad557600080fd5b506104d2610ae4366004612d39565b611673565b348015610af557600080fd5b506104a4601a5481565b348015610b0b57600080fd5b506104a4600a5481565b348015610b2157600080fd5b50610408610b30366004612d56565b61170e565b606060038054610b4490612eaa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090612eaa565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b600033610bd5818585611988565b5060019392505050565b6005546001600160a01b03163314610c125760405162461bcd60e51b8152600401610c0990612ee5565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c995760405162461bcd60e51b8152600401610c0990612ee5565b670de0b6b3a76400006103e8610cae60025490565b610cb9906001612f30565b610cc39190612f4f565b610ccd9190612f4f565b811015610d345760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c09565b610d4681670de0b6b3a7640000612f30565b60085550565b600033610d5a858285611aac565b610d65858585611b3e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610bd59082908690610daa908790612f71565b611988565b6005546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610c0990612ee5565b610de36000612413565b565b6005546001600160a01b03163314610e0f5760405162461bcd60e51b8152600401610c0990612ee5565b610258831015610e7d5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c09565b6103e88211158015610e8d575060015b610ef25760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c09565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f3b5760405162461bcd60e51b8152600401610c0990612ee5565b506011805460ff19169055600190565b6005546001600160a01b03163314610f755760405162461bcd60e51b8152600401610c0990612ee5565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c0990612ee5565b60158390556016829055601781905580610fe38385612f71565b610fed9190612f71565b601481815510156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c09565b505050565b6005546001600160a01b0316331461106f5760405162461bcd60e51b8152600401610c0990612ee5565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b031633146110b05760405162461bcd60e51b8152600401610c0990612ee5565b60118054911515620100000262ff000019909216919091179055565b606060048054610b4490612eaa565b6005546001600160a01b031633146111055760405162461bcd60e51b8152600401610c0990612ee5565b7f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f6001600160a01b0316826001600160a01b031614156111ad5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c09565b6111b78282612465565b5050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156112405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c09565b610d658286868403611988565b600033610bd5818585611b3e565b6005546001600160a01b031633146112855760405162461bcd60e51b8152600401610c0990612ee5565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461130c5760405162461bcd60e51b8152600401610c0990612ee5565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113955760405162461bcd60e51b8152600401610c0990612ee5565b6019839055601a829055601b819055806113af8385612f71565b6113b99190612f71565b6018819055601910156110405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610c09565b6005546001600160a01b031633146114385760405162461bcd60e51b8152600401610c0990612ee5565b670de0b6b3a76400006103e861144d60025490565b611458906005612f30565b6114629190612f4f565b61146c9190612f4f565b8110156114c75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c09565b6114d981670de0b6b3a7640000612f30565b600a5550565b6005546000906001600160a01b0316331461150c5760405162461bcd60e51b8152600401610c0990612ee5565b620186a061151960025490565b611524906001612f30565b61152e9190612f4f565b82101561159b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c09565b6103e86115a760025490565b6115b2906005612f30565b6115bc9190612f4f565b8211156116285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c09565b50600981905560015b919050565b6005546000906001600160a01b031633146116635760405162461bcd60e51b8152600401610c0990612ee5565b506013805460ff19169055600190565b6005546001600160a01b0316331461169d5760405162461bcd60e51b8152600401610c0990612ee5565b6001600160a01b0381166117025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c09565b61170b81612413565b50565b6005546000906001600160a01b0316331461173b5760405162461bcd60e51b8152600401610c0990612ee5565b600f5460105461174b9190612f71565b42116117995760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c09565b6103e88211156117fe5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c09565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f16600482015260009030906370a0823190602401602060405180830381865afa158015611869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188d9190612f89565b905060006118a76127106118a184876124b9565b906124cc565b905080156118dc576118dc7f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f61dead836124d8565b60007f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561193c57600080fd5b505af1158015611950573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c09565b6001600160a01b038216611a4b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c09565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611b385781811015611b2b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c09565b611b388484848403611988565b50505050565b6001600160a01b038316611b645760405162461bcd60e51b8152600401610c0990612fa2565b6001600160a01b038216611b8a5760405162461bcd60e51b8152600401610c0990612fe7565b80611b9b57611040838360006124d8565b60115460ff1615612055576005546001600160a01b03848116911614801590611bd257506005546001600160a01b03838116911614155b8015611be657506001600160a01b03821615155b8015611bfd57506001600160a01b03821661dead14155b8015611c135750600554600160a01b900460ff16155b1561205557601154610100900460ff16611cab576001600160a01b0383166000908152601f602052604090205460ff1680611c6657506001600160a01b0382166000908152601f602052604090205460ff165b611cab5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c09565b60135460ff1615611df2576005546001600160a01b03838116911614801590611d0657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d4457507f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f6001600160a01b0316826001600160a01b031614155b15611df257326000908152601260205260409020544311611ddf5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c09565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611e3257506001600160a01b038216600090815260208052604090205460ff16155b15611f1657600854811115611ea75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c09565b600a546001600160a01b038316600090815260208190526040902054611ecd9083612f71565b1115611f115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c09565b612055565b6001600160a01b03821660009081526021602052604090205460ff168015611f5657506001600160a01b038316600090815260208052604090205460ff16155b15611fcc57600854811115611f115760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c09565b6001600160a01b038216600090815260208052604090205460ff1661205557600a546001600160a01b0383166000908152602081905260409020546120119083612f71565b11156120555760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c09565b3060009081526020819052604090205460095481108015908190612081575060115462010000900460ff165b80156120975750600554600160a01b900460ff16155b80156120bc57506001600160a01b03851660009081526021602052604090205460ff16155b80156120e157506001600160a01b0385166000908152601f602052604090205460ff16155b801561210657506001600160a01b0384166000908152601f602052604090205460ff16155b15612134576005805460ff60a01b1916600160a01b17905561212661262c565b6005805460ff60a01b191690555b600554600160a01b900460ff1615801561216657506001600160a01b03841660009081526021602052604090205460ff165b80156121745750600c5460ff165b801561218f5750600d54600e5461218b9190612f71565b4210155b80156121b457506001600160a01b0385166000908152601f602052604090205460ff16155b156121c3576121c1612866565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061221157506001600160a01b0385166000908152601f602052604090205460ff165b1561221a575060005b600081156123ff576001600160a01b03861660009081526021602052604090205460ff16801561224c57506000601854115b156123045761226b60646118a1601854886124b990919063ffffffff16565b9050601854601a548261227e9190612f30565b6122889190612f4f565b601d60008282546122999190612f71565b9091555050601854601b546122ae9083612f30565b6122b89190612f4f565b601e60008282546122c99190612f71565b90915550506018546019546122de9083612f30565b6122e89190612f4f565b601c60008282546122f99190612f71565b909155506123e19050565b6001600160a01b03871660009081526021602052604090205460ff16801561232e57506000601454115b156123e15761234d60646118a1601454886124b990919063ffffffff16565b9050601454601654826123609190612f30565b61236a9190612f4f565b601d600082825461237b9190612f71565b90915550506014546017546123909083612f30565b61239a9190612f4f565b601e60008282546123ab9190612f71565b90915550506014546015546123c09083612f30565b6123ca9190612f4f565b601c60008282546123db9190612f71565b90915550505b80156123f2576123f28730836124d8565b6123fc818661302a565b94505b61240a8787876124d8565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124c58284612f30565b9392505050565b60006124c58284612f4f565b6001600160a01b0383166124fe5760405162461bcd60e51b8152600401610c0990612fa2565b6001600160a01b0382166125245760405162461bcd60e51b8152600401610c0990612fe7565b6001600160a01b0383166000908152602081905260409020548181101561259c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c09565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125d3908490612f71565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161261f91815260200190565b60405180910390a3611b38565b3060009081526020819052604081205490506000601e54601c54601d546126539190612f71565b61265d9190612f71565b9050600082158061266c575081155b1561267657505050565b600954612684906014612f30565b83111561269c57600954612699906014612f30565b92505b6000600283601d54866126af9190612f30565b6126b99190612f4f565b6126c39190612f4f565b905060006126d185836129f6565b9050476126dd82612a02565b60006126e947836129f6565b90506000612706876118a1601c54856124b990919063ffffffff16565b90506000612723886118a1601e54866124b990919063ffffffff16565b9050600081612732848661302a565b61273c919061302a565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b509098505086158015906127b25750600081115b15612805576127c18782612bc2565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612852576040519150601f19603f3d011682016040523d82523d6000602084013e612857565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f166004820152600090819030906370a0823190602401602060405180830381865afa1580156128d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f79190612f89565b905060006129166127106118a1600b54856124b990919063ffffffff16565b9050801561294b5761294b7f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f61dead836124d8565b60007f000000000000000000000000a0f38f31531865ab37f1a0fe98cd4db9a79b2f1f9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129ab57600080fd5b505af11580156129bf573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124c5828461302a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a3757612a37613041565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ab5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad99190613057565b81600181518110612aec57612aec613041565b60200260200101906001600160a01b031690816001600160a01b031681525050612b37307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611988565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b8c908590600090869030904290600401613074565b600060405180830381600087803b158015612ba657600080fd5b505af1158015612bba573d6000803e3d6000fd5b505050505050565b612bed307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611988565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c77573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9c91906130e5565b5050505050565b600060208083528351808285015260005b81811015612cd057858101830151858201604001528201612cb4565b81811115612ce2576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461170b57600080fd5b60008060408385031215612d2057600080fd5b8235612d2b81612cf8565b946020939093013593505050565b600060208284031215612d4b57600080fd5b81356124c581612cf8565b600060208284031215612d6857600080fd5b5035919050565b600080600060608486031215612d8457600080fd5b8335612d8f81612cf8565b92506020840135612d9f81612cf8565b929592945050506040919091013590565b8035801515811461163157600080fd5b600080600060608486031215612dd557600080fd5b8335925060208401359150612dec60408501612db0565b90509250925092565b60008060408385031215612e0857600080fd5b8235612e1381612cf8565b9150612e2160208401612db0565b90509250929050565b600080600060608486031215612e3f57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e6857600080fd5b6124c582612db0565b60008060408385031215612e8457600080fd5b8235612e8f81612cf8565b91506020830135612e9f81612cf8565b809150509250929050565b600181811c90821680612ebe57607f821691505b60208210811415612edf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f4a57612f4a612f1a565b500290565b600082612f6c57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f8457612f84612f1a565b500190565b600060208284031215612f9b57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561303c5761303c612f1a565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561306957600080fd5b81516124c581612cf8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130c45784516001600160a01b03168352938301939183019160010161309f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130fa57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122082b94dbf9d3e02fe652ef932b9a0453a65a1c8cfb7c7cd00bf406811d4acc63664736f6c634300080a0033

Deployed Bytecode Sourcemap

36518:19357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15746:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18238:242;;;;;;;;;;-1:-1:-1;18238:242:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;18238:242:0;1072:187:1;38148:63:0;;;;;;;;;;-1:-1:-1;38148:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36597:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1706:32:1;;;1688:51;;1676:2;1661:18;36597:51:0;1516:229:1;16866:108:0;;;;;;;;;;-1:-1:-1;16954:12:0;;16866:108;;;1896:25:1;;;1884:2;1869:18;16866:108:0;1750:177:1;45203:157:0;;;;;;;;;;-1:-1:-1;45203:157:0;;;;;:::i;:::-;;:::i;:::-;;37162:47;;;;;;;;;;;;;;;;36977:36;;;;;;;;;;;;;;;;37932:33;;;;;;;;;;;;;;;;37892;;;;;;;;;;;;;;;;42517:275;;;;;;;;;;-1:-1:-1;42517:275:0;;;;;:::i;:::-;;:::i;19060:295::-;;;;;;;;;;-1:-1:-1;19060:295:0;;;;;:::i;:::-;;:::i;36700:53::-;;;;;;;;;;;;36746:6;36700:53;;37072:45;;;;;;;;;;;;;;;;37033:32;;;;;;;;;;-1:-1:-1;37033:32:0;;;;;;;;16708:93;;;;;;;;;;-1:-1:-1;16708:93:0;;16791:2;2928:36:1;;2916:2;2901:18;16708:93:0;2786:184:1;19764:272:0;;;;;;;;;;-1:-1:-1;19764:272:0;;;;;:::i;:::-;;:::i;36655:38::-;;;;;;;;;;;;;;;37260:33;;;;;;;;;;-1:-1:-1;37260:33:0;;;;;;;;45368:126;;;;;;;;;;-1:-1:-1;45368:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;45458:28:0;45434:4;45458:28;;;:19;:28;;;;;;;;;45368:126;37747:28;;;;;;;;;;;;;;;;37340:31;;;;;;;;;;-1:-1:-1;37340:31:0;;;;;;;;;;;17037:177;;;;;;;;;;-1:-1:-1;17037:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;17188:18:0;17156:7;17188:18;;;;;;;;;;;;17037:177;28566:103;;;;;;;;;;;;;:::i;53457:555::-;;;;;;;;;;-1:-1:-1;53457:555:0;;;;;:::i;:::-;;:::i;41625:121::-;;;;;;;;;;;;;:::i;43064:167::-;;;;;;;;;;-1:-1:-1;43064:167:0;;;;;:::i;:::-;;:::i;36792:30::-;;;;;;;;;;-1:-1:-1;36792:30:0;;;;-1:-1:-1;;;;;36792:30:0;;;37640;;;;;;;;;;;;;;;;43435:403;;;;;;;;;;-1:-1:-1;43435:403:0;;;;;:::i;:::-;;:::i;41418:155::-;;;;;;;;;;;;;:::i;27915:87::-;;;;;;;;;;-1:-1:-1;27988:6:0;;-1:-1:-1;;;;;27988:6:0;27915:87;;36829:24;;;;;;;;;;-1:-1:-1;36829:24:0;;;;-1:-1:-1;;;;;36829:24:0;;;37782:31;;;;;;;;;;;;;;;;43327:100;;;;;;;;;;-1:-1:-1;43327:100:0;;;;;:::i;:::-;;:::i;15965:104::-;;;;;;;;;;;;;:::i;44456:304::-;;;;;;;;;;-1:-1:-1;44456:304:0;;;;;:::i;:::-;;:::i;37714:24::-;;;;;;;;;;;;;;;;37216:35;;;;;;;;;;;;;;;;37972:27;;;;;;;;;;;;;;;;37858:25;;;;;;;;;;;;;;;;20539:507;;;;;;;;;;-1:-1:-1;20539:507:0;;;;;:::i;:::-;;:::i;37124:29::-;;;;;;;;;;;;;;;;17420:234;;;;;;;;;;-1:-1:-1;17420:234:0;;;;;:::i;:::-;;:::i;44964:231::-;;;;;;;;;;-1:-1:-1;44964:231:0;;;;;:::i;:::-;;:::i;38369:57::-;;;;;;;;;;-1:-1:-1;38369:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37300:33;;;;;;;;;;-1:-1:-1;37300:33:0;;;;;;;;;;;44266:182;;;;;;;;;;-1:-1:-1;44266:182:0;;;;;:::i;:::-;;:::i;43846:412::-;;;;;;;;;;-1:-1:-1;43846:412:0;;;;;:::i;:::-;;:::i;42800:256::-;;;;;;;;;;-1:-1:-1;42800:256:0;;;;;:::i;:::-;;:::i;37558:39::-;;;;;;;;;;-1:-1:-1;37558:39:0;;;;;;;;36862:35;;;;;;;;;;;;;;;;42012:497;;;;;;;;;;-1:-1:-1;42012:497:0;;;;;:::i;:::-;;:::i;37606:27::-;;;;;;;;;;;;;;;;17717:201;;;;;;;;;;-1:-1:-1;17717:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;17883:18:0;;;17851:7;17883:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17717:201;36904:33;;;;;;;;;;;;;;;;41807:135;;;;;;;;;;;;;:::i;37677:30::-;;;;;;;;;;;;;;;;28824:238;;;;;;;;;;-1:-1:-1;28824:238:0;;;;;:::i;:::-;;:::i;37820:31::-;;;;;;;;;;;;;;;;36944:24;;;;;;;;;;;;;;;;54816:1056;;;;;;;;;;-1:-1:-1;54816:1056:0;;;;;:::i;:::-;;:::i;15746:100::-;15800:13;15833:5;15826:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15746:100;:::o;18238:242::-;18357:4;13634:10;18418:32;13634:10;18434:7;18443:6;18418:8;:32::i;:::-;-1:-1:-1;18468:4:0;;18238:242;-1:-1:-1;;;18238:242:0:o;45203:157::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;;;;;;;;;45310:9:::1;::::0;45282:38:::1;::::0;-1:-1:-1;;;;;45310:9:0;;::::1;::::0;45282:38;::::1;::::0;::::1;::::0;45310:9:::1;::::0;45282:38:::1;45331:9;:21:::0;;-1:-1:-1;;;;;;45331:21:0::1;-1:-1:-1::0;;;;;45331:21:0;;;::::1;::::0;;;::::1;::::0;;45203:157::o;42517:275::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;42654:4:::1;42646;42625:13;16954:12:::0;;;16866:108;42625:13:::1;:17;::::0;42641:1:::1;42625:17;:::i;:::-;42624:26;;;;:::i;:::-;42623:35;;;;:::i;:::-;42613:6;:45;;42591:142;;;::::0;-1:-1:-1;;;42591:142:0;;6155:2:1;42591:142:0::1;::::0;::::1;6137:21:1::0;6194:2;6174:18;;;6167:30;6233:34;6213:18;;;6206:62;-1:-1:-1;;;6284:18:1;;;6277:45;6339:19;;42591:142:0::1;5953:411:1::0;42591:142:0::1;42767:17;:6:::0;42777::::1;42767:17;:::i;:::-;42744:20;:40:::0;-1:-1:-1;42517:275:0:o;19060:295::-;19191:4;13634:10;19249:38;19265:4;13634:10;19280:6;19249:15;:38::i;:::-;19298:27;19308:4;19314:2;19318:6;19298:9;:27::i;:::-;-1:-1:-1;19343:4:0;;19060:295;-1:-1:-1;;;;19060:295:0:o;19764:272::-;13634:10;19879:4;19965:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;19965:27:0;;;;;;;;;;19879:4;;13634:10;19940:66;;13634:10;;19965:27;;:40;;19995:10;;19965:40;:::i;:::-;19940:8;:66::i;28566:103::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;28631:30:::1;28658:1;28631:18;:30::i;:::-;28566:103::o:0;53457:555::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;53659:3:::1;53636:19;:26;;53614:127;;;::::0;-1:-1:-1;;;53614:127:0;;6704:2:1;53614:127:0::1;::::0;::::1;6686:21:1::0;6743:2;6723:18;;;6716:30;6782:34;6762:18;;;6755:62;-1:-1:-1;;;6833:18:1;;;6826:49;6892:19;;53614:127:0::1;6502:415:1::0;53614:127:0::1;53786:4;53774:8;:16;;:33;;;;-1:-1:-1::0;53794:13:0;53774:33:::1;53752:131;;;::::0;-1:-1:-1;;;53752:131:0;;7124:2:1;53752:131:0::1;::::0;::::1;7106:21:1::0;7163:2;7143:18;;;7136:30;7202:34;7182:18;;;7175:62;-1:-1:-1;;;7253:18:1;;;7246:46;7309:19;;53752:131:0::1;6922:412:1::0;53752:131:0::1;53894:15;:37:::0;;;;53942:16:::1;:27:::0;53980:13:::1;:24:::0;;-1:-1:-1;;53980:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53457:555::o;41625:121::-;27988:6;;41677:4;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;-1:-1:-1;41694:14:0::1;:22:::0;;-1:-1:-1;;41694:22:0::1;::::0;;;41625:121;:::o;43064:167::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43177:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;43177:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43064:167::o;43435:403::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;43585:15:::1;:31:::0;;;43627:15:::1;:31:::0;;;43669:9:::1;:19:::0;;;43681:7;43714:33:::1;43645:13:::0;43603;43714:33:::1;:::i;:::-;:45;;;;:::i;:::-;43699:12;:60:::0;;;-1:-1:-1;43778:18:0::1;43770:60;;;::::0;-1:-1:-1;;;43770:60:0;;7541:2:1;43770:60:0::1;::::0;::::1;7523:21:1::0;7580:2;7560:18;;;7553:30;7619:31;7599:18;;;7592:59;7668:18;;43770:60:0::1;7339:353:1::0;43770:60:0::1;43435:403:::0;;;:::o;41418:155::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;41473:13:::1;:20:::0;;-1:-1:-1;;41504:18:0;;;;;41550:15:::1;41533:14;:32:::0;41418:155::o;43327:100::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;43398:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43398:21:0;;::::1;::::0;;;::::1;::::0;;43327:100::o;15965:104::-;16021:13;16054:7;16047:14;;;;;:::i;44456:304::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;44600:13:::1;-1:-1:-1::0;;;;;44592:21:0::1;:4;-1:-1:-1::0;;;;;44592:21:0::1;;;44570:128;;;::::0;-1:-1:-1;;;44570:128:0;;7899:2:1;44570:128:0::1;::::0;::::1;7881:21:1::0;7938:2;7918:18;;;7911:30;7977:34;7957:18;;;7950:62;8048:27;8028:18;;;8021:55;8093:19;;44570:128:0::1;7697:421:1::0;44570:128:0::1;44711:41;44740:4;44746:5;44711:28;:41::i;:::-;44456:304:::0;;:::o;20539:507::-;13634:10;20659:4;20747:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;20747:27:0;;;;;;;;;;20659:4;;13634:10;20807:35;;;;20785:122;;;;-1:-1:-1;;;20785:122:0;;8325:2:1;20785:122:0;;;8307:21:1;8364:2;8344:18;;;8337:30;8403:34;8383:18;;;8376:62;-1:-1:-1;;;8454:18:1;;;8447:35;8499:19;;20785:122:0;8123:401:1;20785:122:0;20943:60;20952:5;20959:7;20987:15;20968:16;:34;20943:8;:60::i;17420:234::-;17535:4;13634:10;17596:28;13634:10;17613:2;17617:6;17596:9;:28::i;44964:231::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;45124:15:::1;::::0;45081:59:::1;::::0;-1:-1:-1;;;;;45124:15:0;;::::1;::::0;45081:59;::::1;::::0;::::1;::::0;45124:15:::1;::::0;45081:59:::1;45151:15;:36:::0;;-1:-1:-1;;;;;;45151:36:0::1;-1:-1:-1::0;;;;;45151:36:0;;;::::1;::::0;;;::::1;::::0;;44964:231::o;44266:182::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44351:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;44351:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44406:34;;1212:41:1;;;44406:34:0::1;::::0;1185:18:1;44406:34:0::1;;;;;;;44266:182:::0;;:::o;43846:412::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;43997:16:::1;:32:::0;;;44040:16:::1;:32:::0;;;44083:10:::1;:20:::0;;;44096:7;44130:35:::1;44059:13:::0;44016;44130:35:::1;:::i;:::-;:48;;;;:::i;:::-;44114:13;:64:::0;;;44214:2:::1;-1:-1:-1::0;44197:19:0::1;44189:61;;;::::0;-1:-1:-1;;;44189:61:0;;8731:2:1;44189:61:0::1;::::0;::::1;8713:21:1::0;8770:2;8750:18;;;8743:30;8809:31;8789:18;;;8782:59;8858:18;;44189:61:0::1;8529:353:1::0;42800:256:0;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;42940:4:::1;42932;42911:13;16954:12:::0;;;16866:108;42911:13:::1;:17;::::0;42927:1:::1;42911:17;:::i;:::-;42910:26;;;;:::i;:::-;42909:35;;;;:::i;:::-;42899:6;:45;;42877:131;;;::::0;-1:-1:-1;;;42877:131:0;;9089:2:1;42877:131:0::1;::::0;::::1;9071:21:1::0;9128:2;9108:18;;;9101:30;9167:34;9147:18;;;9140:62;-1:-1:-1;;;9218:18:1;;;9211:34;9262:19;;42877:131:0::1;8887:400:1::0;42877:131:0::1;43031:17;:6:::0;43041::::1;43031:17;:::i;:::-;43019:9;:29:::0;-1:-1:-1;42800:256:0:o;42012:497::-;27988:6;;42120:4;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;42199:6:::1;42178:13;16954:12:::0;;;16866:108;42178:13:::1;:17;::::0;42194:1:::1;42178:17;:::i;:::-;42177:28;;;;:::i;:::-;42164:9;:41;;42142:144;;;::::0;-1:-1:-1;;;42142:144:0;;9494:2:1;42142:144:0::1;::::0;::::1;9476:21:1::0;9533:2;9513:18;;;9506:30;9572:34;9552:18;;;9545:62;-1:-1:-1;;;9623:18:1;;;9616:51;9684:19;;42142:144:0::1;9292:417:1::0;42142:144:0::1;42354:4;42333:13;16954:12:::0;;;16866:108;42333:13:::1;:17;::::0;42349:1:::1;42333:17;:::i;:::-;42332:26;;;;:::i;:::-;42319:9;:39;;42297:141;;;::::0;-1:-1:-1;;;42297:141:0;;9916:2:1;42297:141:0::1;::::0;::::1;9898:21:1::0;9955:2;9935:18;;;9928:30;9994:34;9974:18;;;9967:62;-1:-1:-1;;;10045:18:1;;;10038:50;10105:19;;42297:141:0::1;9714:416:1::0;42297:141:0::1;-1:-1:-1::0;42449:18:0::1;:30:::0;;;42497:4:::1;28206:1;42012:497:::0;;;:::o;41807:135::-;27988:6;;41867:4;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;-1:-1:-1;41884:20:0::1;:28:::0;;-1:-1:-1;;41884:28:0::1;::::0;;;41807:135;:::o;28824:238::-;27988:6;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28927:22:0;::::1;28905:110;;;::::0;-1:-1:-1;;;28905:110:0;;10337:2:1;28905:110:0::1;::::0;::::1;10319:21:1::0;10376:2;10356:18;;;10349:30;10415:34;10395:18;;;10388:62;-1:-1:-1;;;10466:18:1;;;10459:36;10512:19;;28905:110:0::1;10135:402:1::0;28905:110:0::1;29026:28;29045:8;29026:18;:28::i;:::-;28824:238:::0;:::o;54816:1056::-;27988:6;;54927:4;;-1:-1:-1;;;;;27988:6:0;13634:10;28135:23;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;55012:19:::1;;54989:20;;:42;;;;:::i;:::-;54971:15;:60;54949:142;;;::::0;-1:-1:-1;;;54949:142:0;;10744:2:1;54949:142:0::1;::::0;::::1;10726:21:1::0;;;10763:18;;;10756:30;10822:34;10802:18;;;10795:62;10874:18;;54949:142:0::1;10542:356:1::0;54949:142:0::1;55121:4;55110:7;:15;;55102:70;;;::::0;-1:-1:-1;;;55102:70:0;;11105:2:1;55102:70:0::1;::::0;::::1;11087:21:1::0;11144:2;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;-1:-1:-1;;;11234:18:1;;;11227:40;11284:19;;55102:70:0::1;10903:406:1::0;55102:70:0::1;55206:15;55183:20;:38:::0;55307:29:::1;::::0;-1:-1:-1;;;55307:29:0;;-1:-1:-1;;;;;55322:13:0::1;1706:32:1::0;55307:29:0::1;::::0;::::1;1688:51:1::0;55276:28:0::1;::::0;55307:4:::1;::::0;:14:::1;::::0;1661:18:1;;55307:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55276:60:::0;-1:-1:-1;55386:20:0::1;55409:44;55447:5;55409:33;55276:60:::0;55434:7;55409:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;55386:67:::0;-1:-1:-1;55558:16:0;;55554:110:::1;;55591:61;55607:13;55630:6;55639:12;55591:15;:61::i;:::-;55739:19;55776:13;55739:51;;55801:4;-1:-1:-1::0;;;;;55801:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55828:14:0::1;::::0;::::1;::::0;-1:-1:-1;55828:14:0;;-1:-1:-1;55828:14:0::1;-1:-1:-1::0;55860:4:0::1;::::0;54816:1056;-1:-1:-1;;;;54816:1056:0:o;24281:380::-;-1:-1:-1;;;;;24417:19:0;;24409:68;;;;-1:-1:-1;;;24409:68:0;;11705:2:1;24409:68:0;;;11687:21:1;11744:2;11724:18;;;11717:30;11783:34;11763:18;;;11756:62;-1:-1:-1;;;11834:18:1;;;11827:34;11878:19;;24409:68:0;11503:400:1;24409:68:0;-1:-1:-1;;;;;24496:21:0;;24488:68;;;;-1:-1:-1;;;24488:68:0;;12110:2:1;24488:68:0;;;12092:21:1;12149:2;12129:18;;;12122:30;12188:34;12168:18;;;12161:62;-1:-1:-1;;;12239:18:1;;;12232:32;12281:19;;24488:68:0;11908:398:1;24488:68:0;-1:-1:-1;;;;;24569:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24621:32;;1896:25:1;;;24621:32:0;;1869:18:1;24621:32:0;;;;;;;24281:380;;;:::o;24952:502::-;-1:-1:-1;;;;;17883:18:0;;;25087:24;17883:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25154:37:0;;25150:297;;25254:6;25234:16;:26;;25208:117;;;;-1:-1:-1;;;25208:117:0;;12513:2:1;25208:117:0;;;12495:21:1;12552:2;12532:18;;;12525:30;12591:31;12571:18;;;12564:59;12640:18;;25208:117:0;12311:353:1;25208:117:0;25369:51;25378:5;25385:7;25413:6;25394:16;:25;25369:8;:51::i;:::-;25076:378;24952:502;;;:::o;45552:5011::-;-1:-1:-1;;;;;45684:18:0;;45676:68;;;;-1:-1:-1;;;45676:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45763:16:0;;45755:64;;;;-1:-1:-1;;;45755:64:0;;;;;;;:::i;:::-;45836:11;45832:93;;45864:28;45880:4;45886:2;45890:1;45864:15;:28::i;45832:93::-;45941:14;;;;45937:2487;;;27988:6;;-1:-1:-1;;;;;45994:15:0;;;27988:6;;45994:15;;;;:49;;-1:-1:-1;27988:6:0;;-1:-1:-1;;;;;46030:13:0;;;27988:6;;46030:13;;45994:49;:86;;;;-1:-1:-1;;;;;;46064:16:0;;;;45994:86;:128;;;;-1:-1:-1;;;;;;46101:21:0;;46115:6;46101:21;;45994:128;:158;;;;-1:-1:-1;46144:8:0;;-1:-1:-1;;;46144:8:0;;;;46143:9;45994:158;45972:2441;;;46192:13;;;;;;;46187:223;;-1:-1:-1;;;;;46264:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;46293:23:0;;;;;;:19;:23;;;;;;;;46264:52;46230:160;;;;-1:-1:-1;;;46230:160:0;;13681:2:1;46230:160:0;;;13663:21:1;13720:2;13700:18;;;13693:30;-1:-1:-1;;;13739:18:1;;;13732:52;13801:18;;46230:160:0;13479:346:1;46230:160:0;46566:20;;;;46562:641;;;27988:6;;-1:-1:-1;;;;;46641:13:0;;;27988:6;;46641:13;;;;:72;;;46697:15;-1:-1:-1;;;;;46683:30:0;:2;-1:-1:-1;;;;;46683:30:0;;;46641:72;:129;;;;;46756:13;-1:-1:-1;;;;;46742:28:0;:2;-1:-1:-1;;;;;46742:28:0;;;46641:129;46611:573;;;46888:9;46859:39;;;;:28;:39;;;;;;46934:12;-1:-1:-1;46821:258:0;;;;-1:-1:-1;;;46821:258:0;;14032:2:1;46821:258:0;;;14014:21:1;14071:2;14051:18;;;14044:30;14110:34;14090:18;;;14083:62;14181:34;14161:18;;;14154:62;-1:-1:-1;;;14232:19:1;;;14225:40;14282:19;;46821:258:0;13830:477:1;46821:258:0;47135:9;47106:39;;;;:28;:39;;;;;47148:12;47106:54;;46611:573;-1:-1:-1;;;;;47277:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;47334:35:0;;;;;;:31;:35;;;;;;;;47333:36;47277:92;47251:1147;;;47456:20;;47446:6;:30;;47412:169;;;;-1:-1:-1;;;47412:169:0;;14514:2:1;47412:169:0;;;14496:21:1;14553:2;14533:18;;;14526:30;14592:34;14572:18;;;14565:62;-1:-1:-1;;;14643:18:1;;;14636:51;14704:19;;47412:169:0;14312:417:1;47412:169:0;47664:9;;-1:-1:-1;;;;;17188:18:0;;17156:7;17188:18;;;;;;;;;;;47638:22;;:6;:22;:::i;:::-;:35;;47604:140;;;;-1:-1:-1;;;47604:140:0;;14936:2:1;47604:140:0;;;14918:21:1;14975:2;14955:18;;;14948:30;-1:-1:-1;;;14994:18:1;;;14987:49;15053:18;;47604:140:0;14734:343:1;47604:140:0;47251:1147;;;-1:-1:-1;;;;;47842:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;47897:37:0;;;;;;:31;:37;;;;;;;;47896:38;47842:92;47816:582;;;48021:20;;48011:6;:30;;47977:170;;;;-1:-1:-1;;;47977:170:0;;15284:2:1;47977:170:0;;;15266:21:1;15323:2;15303:18;;;15296:30;15362:34;15342:18;;;15335:62;-1:-1:-1;;;15413:18:1;;;15406:52;15475:19;;47977:170:0;15082:418:1;47816:582:0;-1:-1:-1;;;;;48178:35:0;;;;;;:31;:35;;;;;;;;48173:225;;48298:9;;-1:-1:-1;;;;;17188:18:0;;17156:7;17188:18;;;;;;;;;;;48272:22;;:6;:22;:::i;:::-;:35;;48238:140;;;;-1:-1:-1;;;48238:140:0;;14936:2:1;48238:140:0;;;14918:21:1;14975:2;14955:18;;;14948:30;-1:-1:-1;;;14994:18:1;;;14987:49;15053:18;;48238:140:0;14734:343:1;48238:140:0;48485:4;48436:28;17188:18;;;;;;;;;;;48543;;48519:42;;;;;;;48592:35;;-1:-1:-1;48616:11:0;;;;;;;48592:35;:61;;;;-1:-1:-1;48645:8:0;;-1:-1:-1;;;48645:8:0;;;;48644:9;48592:61;:110;;;;-1:-1:-1;;;;;;48671:31:0;;;;;;:25;:31;;;;;;;;48670:32;48592:110;:153;;;;-1:-1:-1;;;;;;48720:25:0;;;;;;:19;:25;;;;;;;;48719:26;48592:153;:194;;;;-1:-1:-1;;;;;;48763:23:0;;;;;;:19;:23;;;;;;;;48762:24;48592:194;48574:326;;;48813:8;:15;;-1:-1:-1;;;;48813:15:0;-1:-1:-1;;;48813:15:0;;;48845:10;:8;:10::i;:::-;48872:8;:16;;-1:-1:-1;;;;48872:16:0;;;48574:326;48931:8;;-1:-1:-1;;;48931:8:0;;;;48930:9;:55;;;;-1:-1:-1;;;;;;48956:29:0;;;;;;:25;:29;;;;;;;;48930:55;:85;;;;-1:-1:-1;49002:13:0;;;;48930:85;:153;;;;;49068:15;;49051:14;;:32;;;;:::i;:::-;49032:15;:51;;48930:153;:196;;;;-1:-1:-1;;;;;;49101:25:0;;;;;;:19;:25;;;;;;;;49100:26;48930:196;48912:282;;;49153:29;:27;:29::i;:::-;;48912:282;49222:8;;-1:-1:-1;;;;;49332:25:0;;49206:12;49332:25;;;:19;:25;;;;;;49222:8;-1:-1:-1;;;49222:8:0;;;;;49221:9;;49332:25;;:52;;-1:-1:-1;;;;;;49361:23:0;;;;;;:19;:23;;;;;;;;49332:52;49328:100;;;-1:-1:-1;49411:5:0;49328:100;49440:12;49545:7;49541:969;;;-1:-1:-1;;;;;49597:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;49646:1;49630:13;;:17;49597:50;49593:768;;;49675:34;49705:3;49675:25;49686:13;;49675:6;:10;;:25;;;;:::i;:34::-;49668:41;;49778:13;;49758:16;;49751:4;:23;;;;:::i;:::-;49750:41;;;;:::i;:::-;49728:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49848:13:0;;49834:10;;49827:17;;:4;:17;:::i;:::-;49826:35;;;;:::i;:::-;49810:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;49930:13:0;;49910:16;;49903:23;;:4;:23;:::i;:::-;49902:41;;;;:::i;:::-;49880:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;49593:768:0;;-1:-1:-1;49593:768:0;;-1:-1:-1;;;;;50005:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;50055:1;50040:12;;:16;50005:51;50001:360;;;50084:33;50113:3;50084:24;50095:12;;50084:6;:10;;:24;;;;:::i;:33::-;50077:40;;50185:12;;50166:15;;50159:4;:22;;;;:::i;:::-;50158:39;;;;:::i;:::-;50136:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;50253:12:0;;50240:9;;50233:16;;:4;:16;:::i;:::-;50232:33;;;;:::i;:::-;50216:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;50333:12:0;;50314:15;;50307:22;;:4;:22;:::i;:::-;50306:39;;;;:::i;:::-;50284:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;50001:360:0;50381:8;;50377:91;;50410:42;50426:4;50440;50447;50410:15;:42::i;:::-;50484:14;50494:4;50484:14;;:::i;:::-;;;49541:969;50522:33;50538:4;50544:2;50548:6;50522:15;:33::i;:::-;45665:4898;;;;45552:5011;;;:::o;29222:191::-;29315:6;;;-1:-1:-1;;;;;29332:17:0;;;-1:-1:-1;;;;;;29332:17:0;;;;;;;29365:40;;29315:6;;;29332:17;29315:6;;29365:40;;29296:16;;29365:40;29285:128;29222:191;:::o;44768:188::-;-1:-1:-1;;;;;44851:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44851:39:0;;;;;;;;;;44908:40;;44851:39;;:31;44908:40;;;44768:188;;:::o;33091:98::-;33149:7;33176:5;33180:1;33176;:5;:::i;:::-;33169:12;33091:98;-1:-1:-1;;;33091:98:0:o;33490:::-;33548:7;33575:5;33579:1;33575;:5;:::i;21525:708::-;-1:-1:-1;;;;;21656:18:0;;21648:68;;;;-1:-1:-1;;;21648:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21735:16:0;;21727:64;;;;-1:-1:-1;;;21727:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21877:15:0;;21855:19;21877:15;;;;;;;;;;;21925:21;;;;21903:109;;;;-1:-1:-1;;;21903:109:0;;15837:2:1;21903:109:0;;;15819:21:1;15876:2;15856:18;;;15849:30;15915:34;15895:18;;;15888:62;-1:-1:-1;;;15966:18:1;;;15959:36;16012:19;;21903:109:0;15635:402:1;21903:109:0;-1:-1:-1;;;;;22048:15:0;;;:9;:15;;;;;;;;;;;22066:20;;;22048:38;;22108:13;;;;;;;;:23;;22080:6;;22048:9;22108:23;;22080:6;;22108:23;:::i;:::-;;;;;;;;22164:2;-1:-1:-1;;;;;22149:26:0;22158:4;-1:-1:-1;;;;;22149:26:0;;22168:6;22149:26;;;;1896:25:1;;1884:2;1869:18;;1750:177;22149:26:0;;;;;;;;22188:37;43435:403;51693:1756;51776:4;51732:23;17188:18;;;;;;;;;;;51732:50;;51793:25;51889:12;;51855:18;;51821;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;51793:108;-1:-1:-1;51912:12:0;51941:20;;;:46;;-1:-1:-1;51965:22:0;;51941:46;51937:85;;;52004:7;;;51693:1756::o;51937:85::-;52056:18;;:23;;52077:2;52056:23;:::i;:::-;52038:15;:41;52034:115;;;52114:18;;:23;;52135:2;52114:23;:::i;:::-;52096:41;;52034:115;52210:23;52323:1;52290:17;52255:18;;52237:15;:36;;;;:::i;:::-;52236:71;;;;:::i;:::-;:88;;;;:::i;:::-;52210:114;-1:-1:-1;52335:26:0;52364:36;:15;52210:114;52364:19;:36::i;:::-;52335:65;-1:-1:-1;52441:21:0;52475:36;52335:65;52475:16;:36::i;:::-;52524:18;52545:44;:21;52571:17;52545:25;:44::i;:::-;52524:65;;52602:23;52628:81;52681:17;52628:34;52643:18;;52628:10;:14;;:34;;;;:::i;:81::-;52602:107;;52720:17;52740:51;52773:17;52740:28;52755:12;;52740:10;:14;;:28;;;;:::i;:51::-;52720:71;-1:-1:-1;52804:23:0;52720:71;52830:28;52843:15;52830:10;:28;:::i;:::-;:40;;;;:::i;:::-;52904:1;52883:18;:22;;;52916:18;:22;;;52949:12;:16;;;53000:9;;52992:45;;52804:66;;-1:-1:-1;;;;;;53000:9:0;;53023;;52992:45;52904:1;52992:45;53023:9;53000;52992:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52978:59:0;;-1:-1:-1;;53054:19:0;;;;;:42;;;53095:1;53077:15;:19;53054:42;53050:278;;;53113:46;53126:15;53143;53113:12;:46::i;:::-;53283:18;;53179:137;;;16454:25:1;;;16510:2;16495:18;;16488:34;;;16538:18;;;16531:34;;;;53179:137:0;;;;;;16442:2:1;53179:137:0;;;53050:278;53362:15;;53354:87;;-1:-1:-1;;;;;53362:15:0;;;;53405:21;;53354:87;;;;53405:21;53362:15;53354:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;51693:1756:0:o;54020:788::-;54111:15;54094:14;:32;54212:29;;-1:-1:-1;;;54212:29:0;;-1:-1:-1;;;;;54227:13:0;1706:32:1;54212:29:0;;;1688:51:1;54077:4:0;;;;54212;;:14;;1661:18:1;;54212:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54181:60;;54291:20;54314:77;54375:5;54314:42;54339:16;;54314:20;:24;;:42;;;;:::i;:77::-;54291:100;-1:-1:-1;54496:16:0;;54492:110;;54529:61;54545:13;54568:6;54577:12;54529:15;:61::i;:::-;54677:19;54714:13;54677:51;;54739:4;-1:-1:-1;;;;;54739:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54766:12:0;;;;-1:-1:-1;54766:12:0;;-1:-1:-1;54766:12:0;54796:4;54789:11;;;;;54020:788;:::o;32734:98::-;32792:7;32819:5;32823:1;32819;:5;:::i;50571:589::-;50721:16;;;50735:1;50721:16;;;;;;;;50697:21;;50721:16;;;;;;;;;;-1:-1:-1;50721:16:0;50697:40;;50766:4;50748;50753:1;50748:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;50748:23:0;;;-1:-1:-1;;;;;50748:23:0;;;;;50792:15;-1:-1:-1;;;;;50792:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50782:4;50787:1;50782:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50782:32:0;;;-1:-1:-1;;;;;50782:32:0;;;;;50827:62;50844:4;50859:15;50877:11;50827:8;:62::i;:::-;50928:224;;-1:-1:-1;;;50928:224:0;;-1:-1:-1;;;;;50928:15:0;:66;;;;:224;;51009:11;;51035:1;;51079:4;;51106;;51126:15;;50928:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50626:534;50571:589;:::o;51168:517::-;51316:62;51333:4;51348:15;51366:11;51316:8;:62::i;:::-;51421:256;;-1:-1:-1;;;51421:256:0;;51493:4;51421:256;;;18422:34:1;18472:18;;;18465:34;;;51539:1:0;18515:18:1;;;18508:34;;;18558:18;;;18551:34;36746:6:0;18601:19:1;;;18594:44;51651:15:0;18654:19:1;;;18647:35;51421:15:0;-1:-1:-1;;;;;51421:31:0;;;;51460:9;;18356:19:1;;51421:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;51168:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1932:180::-;1991:6;2044:2;2032:9;2023:7;2019:23;2015:32;2012:52;;;2060:1;2057;2050:12;2012:52;-1:-1:-1;2083:23:1;;1932:180;-1:-1:-1;1932:180:1:o;2117:456::-;2194:6;2202;2210;2263:2;2251:9;2242:7;2238:23;2234:32;2231:52;;;2279:1;2276;2269:12;2231:52;2318:9;2305:23;2337:31;2362:5;2337:31;:::i;:::-;2387:5;-1:-1:-1;2444:2:1;2429:18;;2416:32;2457:33;2416:32;2457:33;:::i;:::-;2117:456;;2509:7;;-1:-1:-1;;;2563:2:1;2548:18;;;;2535:32;;2117:456::o;2975:160::-;3040:20;;3096:13;;3089:21;3079:32;;3069:60;;3125:1;3122;3115:12;3140:316;3214:6;3222;3230;3283:2;3271:9;3262:7;3258:23;3254:32;3251:52;;;3299:1;3296;3289:12;3251:52;3335:9;3322:23;3312:33;;3392:2;3381:9;3377:18;3364:32;3354:42;;3415:35;3446:2;3435:9;3431:18;3415:35;:::i;:::-;3405:45;;3140:316;;;;;:::o;3461:315::-;3526:6;3534;3587:2;3575:9;3566:7;3562:23;3558:32;3555:52;;;3603:1;3600;3593:12;3555:52;3642:9;3629:23;3661:31;3686:5;3661:31;:::i;:::-;3711:5;-1:-1:-1;3735:35:1;3766:2;3751:18;;3735:35;:::i;:::-;3725:45;;3461:315;;;;;:::o;3781:316::-;3858:6;3866;3874;3927:2;3915:9;3906:7;3902:23;3898:32;3895:52;;;3943:1;3940;3933:12;3895:52;-1:-1:-1;;3966:23:1;;;4036:2;4021:18;;4008:32;;-1:-1:-1;4087:2:1;4072:18;;;4059:32;;3781:316;-1:-1:-1;3781:316:1:o;4102:180::-;4158:6;4211:2;4199:9;4190:7;4186:23;4182:32;4179:52;;;4227:1;4224;4217:12;4179:52;4250:26;4266:9;4250:26;:::i;4287:388::-;4355:6;4363;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4471:9;4458:23;4490:31;4515:5;4490:31;:::i;:::-;4540:5;-1:-1:-1;4597:2:1;4582:18;;4569:32;4610:33;4569:32;4610:33;:::i;:::-;4662:7;4652:17;;;4287:388;;;;;:::o;4680:380::-;4759:1;4755:12;;;;4802;;;4823:61;;4877:4;4869:6;4865:17;4855:27;;4823:61;4930:2;4922:6;4919:14;4899:18;4896:38;4893:161;;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4893:161;;4680:380;;;:::o;5065:356::-;5267:2;5249:21;;;5286:18;;;5279:30;5345:34;5340:2;5325:18;;5318:62;5412:2;5397:18;;5065:356::o;5426:127::-;5487:10;5482:3;5478:20;5475:1;5468:31;5518:4;5515:1;5508:15;5542:4;5539:1;5532:15;5558:168;5598:7;5664:1;5660;5656:6;5652:14;5649:1;5646:21;5641:1;5634:9;5627:17;5623:45;5620:71;;;5671:18;;:::i;:::-;-1:-1:-1;5711:9:1;;5558:168::o;5731:217::-;5771:1;5797;5787:132;;5841:10;5836:3;5832:20;5829:1;5822:31;5876:4;5873:1;5866:15;5904:4;5901:1;5894:15;5787:132;-1:-1:-1;5933:9:1;;5731:217::o;6369:128::-;6409:3;6440:1;6436:6;6433:1;6430:13;6427:39;;;6446:18;;:::i;:::-;-1:-1:-1;6482:9:1;;6369:128::o;11314:184::-;11384:6;11437:2;11425:9;11416:7;11412:23;11408:32;11405:52;;;11453:1;11450;11443:12;11405:52;-1:-1:-1;11476:16:1;;11314:184;-1:-1:-1;11314:184:1:o;12669:401::-;12871:2;12853:21;;;12910:2;12890:18;;;12883:30;12949:34;12944:2;12929:18;;12922:62;-1:-1:-1;;;13015:2:1;13000:18;;12993:35;13060:3;13045:19;;12669:401::o;13075:399::-;13277:2;13259:21;;;13316:2;13296:18;;;13289:30;13355:34;13350:2;13335:18;;13328:62;-1:-1:-1;;;13421:2:1;13406:18;;13399:33;13464:3;13449:19;;13075:399::o;15505:125::-;15545:4;15573:1;15570;15567:8;15564:34;;;15578:18;;:::i;:::-;-1:-1:-1;15615:9:1;;15505:125::o;16708:127::-;16769:10;16764:3;16760:20;16757:1;16750:31;16800:4;16797:1;16790:15;16824:4;16821:1;16814:15;16840:251;16910:6;16963:2;16951:9;16942:7;16938:23;16934:32;16931:52;;;16979:1;16976;16969:12;16931:52;17011:9;17005:16;17030:31;17055:5;17030:31;:::i;17096:980::-;17358:4;17406:3;17395:9;17391:19;17437:6;17426:9;17419:25;17463:2;17501:6;17496:2;17485:9;17481:18;17474:34;17544:3;17539:2;17528:9;17524:18;17517:31;17568:6;17603;17597:13;17634:6;17626;17619:22;17672:3;17661:9;17657:19;17650:26;;17711:2;17703:6;17699:15;17685:29;;17732:1;17742:195;17756:6;17753:1;17750:13;17742:195;;;17821:13;;-1:-1:-1;;;;;17817:39:1;17805:52;;17912:15;;;;17877:12;;;;17853:1;17771:9;17742:195;;;-1:-1:-1;;;;;;;17993:32:1;;;;17988:2;17973:18;;17966:60;-1:-1:-1;;;18057:3:1;18042:19;18035:35;17954:3;17096:980;-1:-1:-1;;;17096:980:1:o;18693:306::-;18781:6;18789;18797;18850:2;18838:9;18829:7;18825:23;18821:32;18818:52;;;18866:1;18863;18856:12;18818:52;18895:9;18889:16;18879:26;;18945:2;18934:9;18930:18;18924:25;18914:35;;18989:2;18978:9;18974:18;18968:25;18958:35;;18693:306;;;;;:::o

Swarm Source

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