ETH Price: $1,893.44 (-8.76%)
 

Overview

Max Total Supply

10,000,000 $KURAIBUSHI

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
26.614776355 $KURAIBUSHI

Value
$0.00
0x51cc8d6dbd8877589a1c0bcba5a2e5c05da4a707
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:
KURAIBUSHI

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-03
*/

/*
Website - https://www.KuraiBushi.com
Telegram - https://t.me/KuraiBushi
Twitter - https://twitter.com/KuraiBushiERC

*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.10;

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;


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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}

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

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

contract KURAIBUSHI is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    mapping(address => bool) private _isExcludedFromLimit;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 10000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address payable public _marketingAddress = payable(address(0xC6350c96D56366a052AB1FBEd3b2Bc32F4Ac48a7));
    address private _burnAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "KURAIBUSHI";
    string private _symbol = "$KURAIBUSHI";
    uint8 private _decimals = 9;

    struct BuyFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
        uint8 burn;
    }

    struct SellFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
        uint8 burn;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _reflectionFee;
    uint8 private _liquidityFee;
    uint8 private _marketingFee;
    uint8 private _burnFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(20); //2%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(2); //0.2%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    uint256 public deadBlocks = 2;
    uint256 public launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) public _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.reflection = 1;
        buyFee.liquidity = 1;
        buyFee.marketing = 1;
        buyFee.burn = 2;

        sellFee.reflection = 1;
        sellFee.liquidity = 1;
        sellFee.marketing = 1;
        sellFee.burn = 2;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D  );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function burnAddress() public view returns (address) {
        return _burnAddress;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );

        (
            ,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet,
            uint256 tBurn
        ) = _getTValues(tAmount);
        (uint256 rAmount, , ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            tBurn,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");

        (
            ,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet,
            uint256 tBurn
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            tBurn,
            _getRate()
        );

        if (!deductTransferFee) {
            return rAmount;
        } else {
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }


    function updateMarketingWallet(address payable newAddress) external onlyOwner {
        _marketingAddress = newAddress;
    }

    function excludeFromReward(address account) public onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner {
        require(_isExcluded[account], "Account is not excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setSellFee(
        uint8 reflection,
        uint8 liquidity,
        uint8 marketing,
        uint8 burn
    ) external onlyOwner {
        sellFee.reflection = reflection;
        sellFee.marketing = marketing;
        sellFee.liquidity = liquidity;
        sellFee.burn = burn;
    }

    function setBuyFee(
        uint8 reflection,
        uint8 liquidity,
        uint8 marketing,
        uint8 burn
    ) external onlyOwner {
        buyFee.reflection = reflection;
        buyFee.marketing = marketing;
        buyFee.liquidity = liquidity;
        buyFee.burn = burn;
    }

    function setBothFees(
        uint8 buy_reflection,
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 buy_burn,
        uint8 sell_reflection,
        uint8 sell_liquidity,
        uint8 sell_marketing,
        uint8 sell_burn

    ) external onlyOwner {
        buyFee.reflection = buy_reflection;
        buyFee.marketing = buy_marketing;
        buyFee.liquidity = buy_liquidity;
        
        buyFee.burn = buy_burn;

        sellFee.reflection = sell_reflection;
        sellFee.marketing = sell_marketing;
        sellFee.liquidity = sell_liquidity;
  
        sellFee.burn = sell_burn;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3);
    }

    function _setMaxWalletSizePercent(uint256 maxWalletSize)
        external
        onlyOwner
    {
        _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**3);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tBurn = calculateBurnFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        tTransferAmount = tTransferAmount.sub(tWallet);
        tTransferAmount = tTransferAmount.sub(tBurn);

        return (tTransferAmount, tFee, tLiquidity, tWallet, tBurn);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tWallet,
        uint256 tBurn,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rWallet = tWallet.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rTransferAmount = rAmount
            .sub(rFee)
            .sub(rLiquidity)
            .sub(rWallet)
            .sub(rBurn);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function _takeWalletFee(uint256 tWallet) private {
        uint256 currentRate = _getRate();
        uint256 rWallet = tWallet.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rWallet);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tWallet);
    }

    function _takeBurnFee(uint256 tBurn) private {
        uint256 currentRate = _getRate();
        uint256 rBurn = tBurn.mul(currentRate);
        _rOwned[_burnAddress] = _rOwned[_burnAddress].add(rBurn);
        if (_isExcluded[_burnAddress])
            _tOwned[_burnAddress] = _tOwned[_burnAddress].add(
                tBurn
            );
    }

    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_reflectionFee).div(10**2);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

    function calculateBurnFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_burnFee).div(10**2);
    }

   
    function removeAllFee() private {
        _reflectionFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _burnFee = 0;
     
    }

    function setBuy() private {
        _reflectionFee = buyFee.reflection;
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
        _burnFee = buyFee.burn;
      
    }

    function setSell() private {
        _reflectionFee = sellFee.reflection;
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
        _burnFee = sellFee.burn;
      
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

        //transfer amount, it will take reflection, burn, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

    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
            address(this),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        removeAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet,
            uint256 tBurn
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            tBurn,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }


    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet,
            uint256 tBurn
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            tBurn,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet,
            uint256 tBurn
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            tBurn,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet,
            uint256 tBurn
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            tBurn,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() {
        tradingOpen = _status;
        excludeFromReward(address(this));
        excludeFromReward(uniswapV2Pair);
        if(tradingOpen && launchedAt == 0){
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_reflection","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"buy_burn","type":"uint8"},{"internalType":"uint8","name":"sell_reflection","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_burn","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"address payable","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052662386f26fc1000060098190556200001f90600019620005f6565b6200002d9060001962000623565b600a908155600c80546001600160a01b031990811673c6350c96d56366a052ab1fbed3b2bc32f4ac48a717909155600d805490911661dead17905560408051808201909152908152694b55524149425553484960b01b6020820152600e90620000979082620006e2565b5060408051808201909152600b81526a244b55524149425553484960a81b6020820152600f90620000c99082620006e2565b506010805460ff191660099081179091556013805460ff60281b19166501000000000017905554620001299060149062000115906103e862001738620004c3602090811b91909117901c565b6200051660201b6200177a1790919060201c565b601455620001506002620001156103e8600954620004c360201b620017381790919060201c565b601555620001776014620001156103e8600954620004c360201b620017381790919060201c565b601655600260175560006018556019805460ff191690553480156200019b57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a54336000908152600260209081526040918290209290925560118054630201010163ffffffff199182168117909255601280549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000267573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028d9190620007ae565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002db573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003019190620007ae565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200034f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003759190620007ae565b6001600160a01b0390811660a0528116608052600160056000620003a16000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c805484168352848320805488168317905554909216815260089384905291822080549094168117909355620004246000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260089092529020805490911660011790556200046c3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600954604051620004b491815260200190565b60405180910390a3506200086a565b60006200050d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005a460201b60201c565b90505b92915050565b6000826000036200052a5750600062000510565b6000620005388385620007d9565b905082620005478583620007fb565b146200050d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005c85760405162461bcd60e51b81526004016200059b919062000812565b506000620005d78486620007fb565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620006085762000608620005e0565b500690565b634e487b7160e01b600052601160045260246000fd5b6000828210156200063857620006386200060d565b500390565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200066857607f821691505b6020821081036200068957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006dd57600081815260208120601f850160051c81016020861015620006b85750805b601f850160051c820191505b81811015620006d957828155600101620006c4565b5050505b505050565b81516001600160401b03811115620006fe57620006fe6200063d565b62000716816200070f845462000653565b846200068f565b602080601f8311600181146200074e5760008415620007355750858301515b600019600386901b1c1916600185901b178555620006d9565b600085815260208120601f198616915b828110156200077f578886015182559484019460019091019084016200075e565b50858210156200079e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007c157600080fd5b81516001600160a01b03811681146200050d57600080fd5b6000816000190483118215151615620007f657620007f66200060d565b500290565b6000826200080d576200080d620005e0565b500490565b600060208083528351808285015260005b81811015620008415785810183015185820160400152820162000823565b8181111562000854576000604083870101525b50601f01601f1916929092016040019392505050565b60805160a05161323d620008d66000396000818161058d01528181610bb601528181611b0e01528181611c6a0152818161214101526121cb01526000818161035101528181612616015281816126cf0152818161270b0152818161277d01526127d9015261323d6000f3fe6080604052600436106102975760003560e01c806370d5ae051161015a578063af2ce614116100c1578063dd62ed3e1161007a578063dd62ed3e146108b2578063ea2f0b37146108f8578063f0f165af14610918578063f2fde38b14610938578063fabb0b4f14610958578063fe63178f1461096e57600080fd5b8063af2ce614146107e3578063bf56b37114610803578063c49b9a8014610819578063caac793414610839578063d543dbeb14610859578063d94160e01461087957600080fd5b806391d919a91161011357806391d919a91461072157806395d89b4114610741578063a457c2d714610756578063a87859f614610776578063a9059cbb146107a3578063aacebbe3146107c357600080fd5b806370d5ae051461066b578063715018a6146106895780637d1db4a51461069e57806388f82020146106b45780638da5cb5b146106ed5780638f9a55c01461070b57600080fd5b80633685d419116101fe57806349bd5a5e116101b757806349bd5a5e1461057b5780634a74bb02146105af57806350d4e15f146105d257806352390c02146105f25780635342acb41461061257806370a082311461064b57600080fd5b80633685d419146104a557806339509351146104c55780633bd5d173146104e5578063437823ec146105055780634549b03914610525578063470624021461054557600080fd5b80631f8d2779116102505780631f8d2779146103a057806323b872dd146103c05780632b14ca56146103e05780632d4103d6146104435780632d83811914610463578063313ce5671461048357600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630bd3a7f9146102fe57806313114a9d146103205780631694505e1461033f57806318160ddd1461038b57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b861098e565b6040516102c59190612cb9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612d26565b610a20565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031e610319366004612d52565b610a37565b005b34801561032c57600080fd5b50600b545b6040519081526020016102c5565b34801561034b57600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c5565b34801561039757600080fd5b50600954610331565b3480156103ac57600080fd5b5061031e6103bb366004612d85565b610a8e565b3480156103cc57600080fd5b506102ee6103db366004612dd9565b610b07565b3480156103ec57600080fd5b506012546104169060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102c5565b34801561044f57600080fd5b5061031e61045e366004612e2a565b610b70565b34801561046f57600080fd5b5061033161047e366004612e46565b610bff565b34801561048f57600080fd5b5060105460405160ff90911681526020016102c5565b3480156104b157600080fd5b5061031e6104c0366004612d52565b610c83565b3480156104d157600080fd5b506102ee6104e0366004612d26565b610e35565b3480156104f157600080fd5b5061031e610500366004612e46565b610e6b565b34801561051157600080fd5b5061031e610520366004612d52565b610f79565b34801561053157600080fd5b50610331610540366004612e5f565b610fc7565b34801561055157600080fd5b506011546104169060ff808216916101008104821691620100008204811691630100000090041684565b34801561058757600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000000081565b3480156105bb57600080fd5b506013546102ee9065010000000000900460ff1681565b3480156105de57600080fd5b5061031e6105ed366004612e8b565b61106a565b3480156105fe57600080fd5b5061031e61060d366004612d52565b611111565b34801561061e57600080fd5b506102ee61062d366004612d52565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561065757600080fd5b50610331610666366004612d52565b611264565b34801561067757600080fd5b50600d546001600160a01b0316610373565b34801561069557600080fd5b5061031e6112c3565b3480156106aa57600080fd5b5061033160145481565b3480156106c057600080fd5b506102ee6106cf366004612d52565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106f957600080fd5b506000546001600160a01b0316610373565b34801561071757600080fd5b5061033160165481565b34801561072d57600080fd5b5061031e61073c366004612d52565b611337565b34801561074d57600080fd5b506102b8611382565b34801561076257600080fd5b506102ee610771366004612d26565b611391565b34801561078257600080fd5b50610331610791366004612d52565b601a6020526000908152604090205481565b3480156107af57600080fd5b506102ee6107be366004612d26565b6113e0565b3480156107cf57600080fd5b5061031e6107de366004612d52565b6113ed565b3480156107ef57600080fd5b5061031e6107fe366004612e46565b611439565b34801561080f57600080fd5b5061033160185481565b34801561082557600080fd5b5061031e610834366004612f22565b61148a565b34801561084557600080fd5b50600c54610373906001600160a01b031681565b34801561086557600080fd5b5061031e610874366004612e46565b611510565b34801561088557600080fd5b506102ee610894366004612d52565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108be57600080fd5b506103316108cd366004612f3d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061031e610913366004612d52565b61155b565b34801561092457600080fd5b5061031e610933366004612e46565b6115a6565b34801561094457600080fd5b5061031e610953366004612d52565b6115d5565b34801561096457600080fd5b5061033160175481565b34801561097a57600080fd5b5061031e610989366004612d85565b6116bf565b6060600e805461099d90612f76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612f76565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2d3384846117fc565b5060015b92915050565b6000546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610a6190612fb0565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610a6190612fb0565b6012805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610b14848484611920565b610b668433610b61856040518060600160405280602881526020016131bb602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611d24565b6117fc565b5060019392505050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610a6190612fb0565b6019805460ff1916831515179055610bb130611111565b610bda7f0000000000000000000000000000000000000000000000000000000000000000611111565b60195460ff168015610bec5750601854155b15610bfb574360185560178190555b5050565b6000600a54821115610c665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a61565b6000610c70611d5e565b9050610c7c8382611738565b9392505050565b6000546001600160a01b03163314610cad5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a61565b60005b600754811015610bfb57816001600160a01b031660078281548110610d3f57610d3f612fe5565b6000918252602090912001546001600160a01b031603610e235760078054610d6990600190613011565b81548110610d7957610d79612fe5565b600091825260209091200154600780546001600160a01b039092169183908110610da557610da5612fe5565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610dfd57610dfd613028565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e2d8161303e565b915050610d18565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a2d918590610b619086611d81565b3360008181526006602052604090205460ff1615610ee05760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a61565b600080600080610eef86611de0565b9450945094509450506000610f0f8786868686610f0a611d5e565b611e5c565b50506001600160a01b038716600090815260026020526040902054909150610f379082611ed0565b6001600160a01b038716600090815260026020526040902055600a54610f5d9082611ed0565b600a55600b54610f6d9088611d81565b600b5550505050505050565b6000546001600160a01b03163314610fa35760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600060095483111561101b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a61565b60008060008061102a87611de0565b9450945094509450506000806110468987878787610f0a611d5e565b50915091508761105d57509450610a319350505050565b9550610a31945050505050565b6000546001600160a01b031633146110945760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560128054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16156111a45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a61565b6001600160a01b038116600090815260026020526040902054156111fe576001600160a01b0381166000908152600260205260409020546111e490610bff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156112a157506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610a3190610bff565b6000546001600160a01b031633146112ed5760405162461bcd60e51b8152600401610a6190612fb0565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113615760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600f805461099d90612f76565b6000610a2d3384610b61856040518060600160405280602581526020016131e3602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611d24565b6000610a2d338484611920565b6000546001600160a01b031633146114175760405162461bcd60e51b8152600401610a6190612fb0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114635760405162461bcd60e51b8152600401610a6190612fb0565b6114846103e861147e8360095461177a90919063ffffffff16565b90611738565b60165550565b6000546001600160a01b031633146114b45760405162461bcd60e51b8152600401610a6190612fb0565b60138054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061150590831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461153a5760405162461bcd60e51b8152600401610a6190612fb0565b6115556103e861147e8360095461177a90919063ffffffff16565b60145550565b6000546001600160a01b031633146115855760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146115d05760405162461bcd60e51b8152600401610a6190612fb0565b601555565b6000546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b0381166116645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a61565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116e95760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610c7c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f12565b60008260000361178c57506000610a31565b60006117988385613057565b9050826117a58583613076565b14610c7c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a61565b6001600160a01b03831661185e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a61565b6001600160a01b0382166118bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a61565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a61565b6001600160a01b0382166119e65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a61565b60008111611a485760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a61565b6000546001600160a01b03848116911614801590611a7457506000546001600160a01b03838116911614155b15611acb5760195460ff16611acb5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a61565b6000611ad630611264565b90506014548110611ae657506014545b60155481108015908190611b055750601354640100000000900460ff16155b8015611b4357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611b5a575060135465010000000000900460ff165b15611b6d576015549150611b6d82611f40565b6001600160a01b03851660009081526005602052604090205460019060ff1680611baf57506001600160a01b03851660009081526005602052604090205460ff165b15611bb8575060005b8015611d10576001600160a01b03861660009081526008602052604090205460ff16158015611c0057506001600160a01b03851660009081526008602052604090205460ff16155b15611d1057601454841115611c685760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a61565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611d1057601654611cad86611264565b611cb79086613098565b1115611d105760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a61565b611d1c86868684612127565b505050505050565b60008184841115611d485760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613011565b95945050505050565b6000806000611d6b6123bf565b9092509050611d7a8282611738565b9250505090565b600080611d8e8385613098565b905083811015610c7c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a61565b600080600080600080611df287612541565b90506000611dff8861255c565b90506000611e0c8961257c565b90506000611e198a61259d565b90506000611e3184611e2b8d88611ed0565b90611ed0565b9050611e3d8184611ed0565b9050611e498183611ed0565b9b949a5092985090965094509092505050565b6000808080611e6b8a8661177a565b90506000611e798a8761177a565b90506000611e878a8861177a565b90506000611e958a8961177a565b90506000611ea38a8a61177a565b90506000611eb982611e2b858188818c8c611ed0565b959f959e50939c50939a5050505050505050505050565b6000610c7c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d24565b60008183611f335760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613076565b6013805464ff0000000019166401000000001790556012546011546000916201000080820460ff90811693918204811692611f889261010091829004831692919004166130b0565b611f9291906130b0565b611f9c91906130b0565b611fa79060026130d5565b60125460115460ff92831693506000928492611fd09261010091829004831692919004166130b0565b611fdd9060ff1685613057565b611fe79190613076565b90506000611ff58285613011565b905047612001826125bf565b600061200d8247613011565b6012546011549192506000916120339160ff6101009182900481169291909104166130b0565b6120409060ff1687613011565b61204a9083613076565b6012546011549192506000916120709160ff6101009182900481169291909104166130b0565b61207d9060ff1683613057565b9050801561208f5761208f8682612777565b6012546011546000916120b29160ff6201000092839004811692909104166130b0565b60ff166120c0846002613057565b6120ca9190613057565b9050801561210e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561210c573d6000803e3d6000fd5b505b50506013805464ff000000001916905550505050505050565b80156122535761213f6013805463ffffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036121c9576011546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603612253576012546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561229457506001600160a01b03831660009081526006602052604090205460ff16155b156122a9576122a4848484612857565b6123a7565b6001600160a01b03841660009081526006602052604090205460ff161580156122ea57506001600160a01b03831660009081526006602052604090205460ff165b156122fa576122a48484846129a8565b6001600160a01b03841660009081526006602052604090205460ff1615801561233c57506001600160a01b03831660009081526006602052604090205460ff16155b1561234c576122a4848484612a68565b6001600160a01b03841660009081526006602052604090205460ff16801561238c57506001600160a01b03831660009081526006602052604090205460ff165b1561239c576122a4848484612ac3565b6123a7848484612a68565b6123b96013805463ffffffff19169055565b50505050565b600a546009546000918291825b600754811015612511578260026000600784815481106123ee576123ee612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612459575081600360006007848154811061243257612432612fe5565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561246f57600a54600954945094505050509091565b6124b5600260006007848154811061248957612489612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ed0565b92506124fd60036000600784815481106124d1576124d1612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ed0565b9150806125098161303e565b9150506123cc565b50600954600a5461252191611738565b82101561253857600a546009549350935050509091565b90939092509050565b601354600090610a319060649061147e90859060ff1661177a565b601354600090610a319060649061147e908590610100900460ff1661177a565b601354600090610a319060649061147e90859062010000900460ff1661177a565b601354600090610a319060649061147e9085906301000000900460ff1661177a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125f4576125f4612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269691906130fe565b816001815181106126a9576126a9612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250506126f4307f0000000000000000000000000000000000000000000000000000000000000000846117fc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061274990859060009086903090429060040161311b565b600060405180830381600087803b15801561276357600080fd5b505af1158015611d1c573d6000803e3d6000fd5b6127a2307f0000000000000000000000000000000000000000000000000000000000000000846117fc565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561282b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612850919061318c565b5050505050565b600080600080600061286886611de0565b9450945094509450945060008060006128878988888888610f0a611d5e565b6001600160a01b038e1660009081526003602052604090205492955090935091506128b2908a611ed0565b6001600160a01b038c166000908152600360209081526040808320939093556002905220546128e19084611ed0565b6001600160a01b03808d1660009081526002602052604080822093909355908c16815220546129109083611d81565b6001600160a01b038b1660009081526002602052604090205561293286612b4d565b61293b85612b4d565b61294484612bd6565b61294e8188612c95565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161299391815260200190565b60405180910390a35050505050505050505050565b60008060008060006129b986611de0565b9450945094509450945060008060006129d88988888888610f0a611d5e565b6001600160a01b038e166000908152600260205260409020549295509093509150612a039084611ed0565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612a399089611d81565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546129109083611d81565b6000806000806000612a7986611de0565b945094509450945094506000806000612a988988888888610f0a611d5e565b6001600160a01b038e1660009081526002602052604090205492955090935091506128e19084611ed0565b6000806000806000612ad486611de0565b945094509450945094506000806000612af38988888888610f0a611d5e565b6001600160a01b038e166000908152600360205260409020549295509093509150612b1e908a611ed0565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612a039084611ed0565b6000612b57611d5e565b90506000612b65838361177a565b30600090815260026020526040902054909150612b829082611d81565b3060009081526002602090815260408083209390935560069052205460ff1615612bd15730600090815260036020526040902054612bc09084611d81565b306000908152600360205260409020555b505050565b6000612be0611d5e565b90506000612bee838361177a565b600d546001600160a01b0316600090815260026020526040902054909150612c169082611d81565b600d80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612bd157600d546001600160a01b0316600090815260036020526040902054612c759084611d81565b600d546001600160a01b0316600090815260036020526040902055505050565b600a54612ca29083611ed0565b600a55600b54612cb29082611d81565b600b555050565b600060208083528351808285015260005b81811015612ce657858101830151858201604001528201612cca565b81811115612cf8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612d2357600080fd5b50565b60008060408385031215612d3957600080fd5b8235612d4481612d0e565b946020939093013593505050565b600060208284031215612d6457600080fd5b8135610c7c81612d0e565b803560ff81168114612d8057600080fd5b919050565b60008060008060808587031215612d9b57600080fd5b612da485612d6f565b9350612db260208601612d6f565b9250612dc060408601612d6f565b9150612dce60608601612d6f565b905092959194509250565b600080600060608486031215612dee57600080fd5b8335612df981612d0e565b92506020840135612e0981612d0e565b929592945050506040919091013590565b80358015158114612d8057600080fd5b60008060408385031215612e3d57600080fd5b612d4483612e1a565b600060208284031215612e5857600080fd5b5035919050565b60008060408385031215612e7257600080fd5b82359150612e8260208401612e1a565b90509250929050565b600080600080600080600080610100898b031215612ea857600080fd5b612eb189612d6f565b9750612ebf60208a01612d6f565b9650612ecd60408a01612d6f565b9550612edb60608a01612d6f565b9450612ee960808a01612d6f565b9350612ef760a08a01612d6f565b9250612f0560c08a01612d6f565b9150612f1360e08a01612d6f565b90509295985092959890939650565b600060208284031215612f3457600080fd5b610c7c82612e1a565b60008060408385031215612f5057600080fd5b8235612f5b81612d0e565b91506020830135612f6b81612d0e565b809150509250929050565b600181811c90821680612f8a57607f821691505b602082108103612faa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561302357613023612ffb565b500390565b634e487b7160e01b600052603160045260246000fd5b60006001820161305057613050612ffb565b5060010190565b600081600019048311821515161561307157613071612ffb565b500290565b60008261309357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130ab576130ab612ffb565b500190565b600060ff821660ff84168060ff038211156130cd576130cd612ffb565b019392505050565b600060ff821660ff84168160ff04811182151516156130f6576130f6612ffb565b029392505050565b60006020828403121561311057600080fd5b8151610c7c81612d0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561316b5784516001600160a01b031683529383019391830191600101613146565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131a157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220960876c1822e0f0bca3e7de087f34aa2fe444e6a493cfcabf282f8422870ee1664736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102975760003560e01c806370d5ae051161015a578063af2ce614116100c1578063dd62ed3e1161007a578063dd62ed3e146108b2578063ea2f0b37146108f8578063f0f165af14610918578063f2fde38b14610938578063fabb0b4f14610958578063fe63178f1461096e57600080fd5b8063af2ce614146107e3578063bf56b37114610803578063c49b9a8014610819578063caac793414610839578063d543dbeb14610859578063d94160e01461087957600080fd5b806391d919a91161011357806391d919a91461072157806395d89b4114610741578063a457c2d714610756578063a87859f614610776578063a9059cbb146107a3578063aacebbe3146107c357600080fd5b806370d5ae051461066b578063715018a6146106895780637d1db4a51461069e57806388f82020146106b45780638da5cb5b146106ed5780638f9a55c01461070b57600080fd5b80633685d419116101fe57806349bd5a5e116101b757806349bd5a5e1461057b5780634a74bb02146105af57806350d4e15f146105d257806352390c02146105f25780635342acb41461061257806370a082311461064b57600080fd5b80633685d419146104a557806339509351146104c55780633bd5d173146104e5578063437823ec146105055780634549b03914610525578063470624021461054557600080fd5b80631f8d2779116102505780631f8d2779146103a057806323b872dd146103c05780632b14ca56146103e05780632d4103d6146104435780632d83811914610463578063313ce5671461048357600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630bd3a7f9146102fe57806313114a9d146103205780631694505e1461033f57806318160ddd1461038b57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b861098e565b6040516102c59190612cb9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612d26565b610a20565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031e610319366004612d52565b610a37565b005b34801561032c57600080fd5b50600b545b6040519081526020016102c5565b34801561034b57600080fd5b506103737f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c5565b34801561039757600080fd5b50600954610331565b3480156103ac57600080fd5b5061031e6103bb366004612d85565b610a8e565b3480156103cc57600080fd5b506102ee6103db366004612dd9565b610b07565b3480156103ec57600080fd5b506012546104169060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102c5565b34801561044f57600080fd5b5061031e61045e366004612e2a565b610b70565b34801561046f57600080fd5b5061033161047e366004612e46565b610bff565b34801561048f57600080fd5b5060105460405160ff90911681526020016102c5565b3480156104b157600080fd5b5061031e6104c0366004612d52565b610c83565b3480156104d157600080fd5b506102ee6104e0366004612d26565b610e35565b3480156104f157600080fd5b5061031e610500366004612e46565b610e6b565b34801561051157600080fd5b5061031e610520366004612d52565b610f79565b34801561053157600080fd5b50610331610540366004612e5f565b610fc7565b34801561055157600080fd5b506011546104169060ff808216916101008104821691620100008204811691630100000090041684565b34801561058757600080fd5b506103737f000000000000000000000000b078f55a476b14a4bddcbca1ded9295602e7bfa381565b3480156105bb57600080fd5b506013546102ee9065010000000000900460ff1681565b3480156105de57600080fd5b5061031e6105ed366004612e8b565b61106a565b3480156105fe57600080fd5b5061031e61060d366004612d52565b611111565b34801561061e57600080fd5b506102ee61062d366004612d52565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561065757600080fd5b50610331610666366004612d52565b611264565b34801561067757600080fd5b50600d546001600160a01b0316610373565b34801561069557600080fd5b5061031e6112c3565b3480156106aa57600080fd5b5061033160145481565b3480156106c057600080fd5b506102ee6106cf366004612d52565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106f957600080fd5b506000546001600160a01b0316610373565b34801561071757600080fd5b5061033160165481565b34801561072d57600080fd5b5061031e61073c366004612d52565b611337565b34801561074d57600080fd5b506102b8611382565b34801561076257600080fd5b506102ee610771366004612d26565b611391565b34801561078257600080fd5b50610331610791366004612d52565b601a6020526000908152604090205481565b3480156107af57600080fd5b506102ee6107be366004612d26565b6113e0565b3480156107cf57600080fd5b5061031e6107de366004612d52565b6113ed565b3480156107ef57600080fd5b5061031e6107fe366004612e46565b611439565b34801561080f57600080fd5b5061033160185481565b34801561082557600080fd5b5061031e610834366004612f22565b61148a565b34801561084557600080fd5b50600c54610373906001600160a01b031681565b34801561086557600080fd5b5061031e610874366004612e46565b611510565b34801561088557600080fd5b506102ee610894366004612d52565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108be57600080fd5b506103316108cd366004612f3d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061031e610913366004612d52565b61155b565b34801561092457600080fd5b5061031e610933366004612e46565b6115a6565b34801561094457600080fd5b5061031e610953366004612d52565b6115d5565b34801561096457600080fd5b5061033160175481565b34801561097a57600080fd5b5061031e610989366004612d85565b6116bf565b6060600e805461099d90612f76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612f76565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2d3384846117fc565b5060015b92915050565b6000546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610a6190612fb0565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610a6190612fb0565b6012805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610b14848484611920565b610b668433610b61856040518060600160405280602881526020016131bb602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611d24565b6117fc565b5060019392505050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610a6190612fb0565b6019805460ff1916831515179055610bb130611111565b610bda7f000000000000000000000000b078f55a476b14a4bddcbca1ded9295602e7bfa3611111565b60195460ff168015610bec5750601854155b15610bfb574360185560178190555b5050565b6000600a54821115610c665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a61565b6000610c70611d5e565b9050610c7c8382611738565b9392505050565b6000546001600160a01b03163314610cad5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a61565b60005b600754811015610bfb57816001600160a01b031660078281548110610d3f57610d3f612fe5565b6000918252602090912001546001600160a01b031603610e235760078054610d6990600190613011565b81548110610d7957610d79612fe5565b600091825260209091200154600780546001600160a01b039092169183908110610da557610da5612fe5565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610dfd57610dfd613028565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e2d8161303e565b915050610d18565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a2d918590610b619086611d81565b3360008181526006602052604090205460ff1615610ee05760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a61565b600080600080610eef86611de0565b9450945094509450506000610f0f8786868686610f0a611d5e565b611e5c565b50506001600160a01b038716600090815260026020526040902054909150610f379082611ed0565b6001600160a01b038716600090815260026020526040902055600a54610f5d9082611ed0565b600a55600b54610f6d9088611d81565b600b5550505050505050565b6000546001600160a01b03163314610fa35760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600060095483111561101b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a61565b60008060008061102a87611de0565b9450945094509450506000806110468987878787610f0a611d5e565b50915091508761105d57509450610a319350505050565b9550610a31945050505050565b6000546001600160a01b031633146110945760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560128054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16156111a45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a61565b6001600160a01b038116600090815260026020526040902054156111fe576001600160a01b0381166000908152600260205260409020546111e490610bff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156112a157506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610a3190610bff565b6000546001600160a01b031633146112ed5760405162461bcd60e51b8152600401610a6190612fb0565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113615760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600f805461099d90612f76565b6000610a2d3384610b61856040518060600160405280602581526020016131e3602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611d24565b6000610a2d338484611920565b6000546001600160a01b031633146114175760405162461bcd60e51b8152600401610a6190612fb0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114635760405162461bcd60e51b8152600401610a6190612fb0565b6114846103e861147e8360095461177a90919063ffffffff16565b90611738565b60165550565b6000546001600160a01b031633146114b45760405162461bcd60e51b8152600401610a6190612fb0565b60138054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061150590831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461153a5760405162461bcd60e51b8152600401610a6190612fb0565b6115556103e861147e8360095461177a90919063ffffffff16565b60145550565b6000546001600160a01b031633146115855760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146115d05760405162461bcd60e51b8152600401610a6190612fb0565b601555565b6000546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b0381166116645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a61565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116e95760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610c7c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f12565b60008260000361178c57506000610a31565b60006117988385613057565b9050826117a58583613076565b14610c7c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a61565b6001600160a01b03831661185e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a61565b6001600160a01b0382166118bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a61565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a61565b6001600160a01b0382166119e65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a61565b60008111611a485760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a61565b6000546001600160a01b03848116911614801590611a7457506000546001600160a01b03838116911614155b15611acb5760195460ff16611acb5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a61565b6000611ad630611264565b90506014548110611ae657506014545b60155481108015908190611b055750601354640100000000900460ff16155b8015611b4357507f000000000000000000000000b078f55a476b14a4bddcbca1ded9295602e7bfa36001600160a01b0316856001600160a01b031614155b8015611b5a575060135465010000000000900460ff165b15611b6d576015549150611b6d82611f40565b6001600160a01b03851660009081526005602052604090205460019060ff1680611baf57506001600160a01b03851660009081526005602052604090205460ff165b15611bb8575060005b8015611d10576001600160a01b03861660009081526008602052604090205460ff16158015611c0057506001600160a01b03851660009081526008602052604090205460ff16155b15611d1057601454841115611c685760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a61565b7f000000000000000000000000b078f55a476b14a4bddcbca1ded9295602e7bfa36001600160a01b0316856001600160a01b031614611d1057601654611cad86611264565b611cb79086613098565b1115611d105760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a61565b611d1c86868684612127565b505050505050565b60008184841115611d485760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613011565b95945050505050565b6000806000611d6b6123bf565b9092509050611d7a8282611738565b9250505090565b600080611d8e8385613098565b905083811015610c7c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a61565b600080600080600080611df287612541565b90506000611dff8861255c565b90506000611e0c8961257c565b90506000611e198a61259d565b90506000611e3184611e2b8d88611ed0565b90611ed0565b9050611e3d8184611ed0565b9050611e498183611ed0565b9b949a5092985090965094509092505050565b6000808080611e6b8a8661177a565b90506000611e798a8761177a565b90506000611e878a8861177a565b90506000611e958a8961177a565b90506000611ea38a8a61177a565b90506000611eb982611e2b858188818c8c611ed0565b959f959e50939c50939a5050505050505050505050565b6000610c7c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d24565b60008183611f335760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613076565b6013805464ff0000000019166401000000001790556012546011546000916201000080820460ff90811693918204811692611f889261010091829004831692919004166130b0565b611f9291906130b0565b611f9c91906130b0565b611fa79060026130d5565b60125460115460ff92831693506000928492611fd09261010091829004831692919004166130b0565b611fdd9060ff1685613057565b611fe79190613076565b90506000611ff58285613011565b905047612001826125bf565b600061200d8247613011565b6012546011549192506000916120339160ff6101009182900481169291909104166130b0565b6120409060ff1687613011565b61204a9083613076565b6012546011549192506000916120709160ff6101009182900481169291909104166130b0565b61207d9060ff1683613057565b9050801561208f5761208f8682612777565b6012546011546000916120b29160ff6201000092839004811692909104166130b0565b60ff166120c0846002613057565b6120ca9190613057565b9050801561210e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561210c573d6000803e3d6000fd5b505b50506013805464ff000000001916905550505050505050565b80156122535761213f6013805463ffffffff19169055565b7f000000000000000000000000b078f55a476b14a4bddcbca1ded9295602e7bfa36001600160a01b0316846001600160a01b0316036121c9576011546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f000000000000000000000000b078f55a476b14a4bddcbca1ded9295602e7bfa36001600160a01b0316836001600160a01b031603612253576012546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561229457506001600160a01b03831660009081526006602052604090205460ff16155b156122a9576122a4848484612857565b6123a7565b6001600160a01b03841660009081526006602052604090205460ff161580156122ea57506001600160a01b03831660009081526006602052604090205460ff165b156122fa576122a48484846129a8565b6001600160a01b03841660009081526006602052604090205460ff1615801561233c57506001600160a01b03831660009081526006602052604090205460ff16155b1561234c576122a4848484612a68565b6001600160a01b03841660009081526006602052604090205460ff16801561238c57506001600160a01b03831660009081526006602052604090205460ff165b1561239c576122a4848484612ac3565b6123a7848484612a68565b6123b96013805463ffffffff19169055565b50505050565b600a546009546000918291825b600754811015612511578260026000600784815481106123ee576123ee612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612459575081600360006007848154811061243257612432612fe5565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561246f57600a54600954945094505050509091565b6124b5600260006007848154811061248957612489612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ed0565b92506124fd60036000600784815481106124d1576124d1612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ed0565b9150806125098161303e565b9150506123cc565b50600954600a5461252191611738565b82101561253857600a546009549350935050509091565b90939092509050565b601354600090610a319060649061147e90859060ff1661177a565b601354600090610a319060649061147e908590610100900460ff1661177a565b601354600090610a319060649061147e90859062010000900460ff1661177a565b601354600090610a319060649061147e9085906301000000900460ff1661177a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125f4576125f4612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269691906130fe565b816001815181106126a9576126a9612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250506126f4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117fc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061274990859060009086903090429060040161311b565b600060405180830381600087803b15801561276357600080fd5b505af1158015611d1c573d6000803e3d6000fd5b6127a2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117fc565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561282b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612850919061318c565b5050505050565b600080600080600061286886611de0565b9450945094509450945060008060006128878988888888610f0a611d5e565b6001600160a01b038e1660009081526003602052604090205492955090935091506128b2908a611ed0565b6001600160a01b038c166000908152600360209081526040808320939093556002905220546128e19084611ed0565b6001600160a01b03808d1660009081526002602052604080822093909355908c16815220546129109083611d81565b6001600160a01b038b1660009081526002602052604090205561293286612b4d565b61293b85612b4d565b61294484612bd6565b61294e8188612c95565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161299391815260200190565b60405180910390a35050505050505050505050565b60008060008060006129b986611de0565b9450945094509450945060008060006129d88988888888610f0a611d5e565b6001600160a01b038e166000908152600260205260409020549295509093509150612a039084611ed0565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612a399089611d81565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546129109083611d81565b6000806000806000612a7986611de0565b945094509450945094506000806000612a988988888888610f0a611d5e565b6001600160a01b038e1660009081526002602052604090205492955090935091506128e19084611ed0565b6000806000806000612ad486611de0565b945094509450945094506000806000612af38988888888610f0a611d5e565b6001600160a01b038e166000908152600360205260409020549295509093509150612b1e908a611ed0565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612a039084611ed0565b6000612b57611d5e565b90506000612b65838361177a565b30600090815260026020526040902054909150612b829082611d81565b3060009081526002602090815260408083209390935560069052205460ff1615612bd15730600090815260036020526040902054612bc09084611d81565b306000908152600360205260409020555b505050565b6000612be0611d5e565b90506000612bee838361177a565b600d546001600160a01b0316600090815260026020526040902054909150612c169082611d81565b600d80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612bd157600d546001600160a01b0316600090815260036020526040902054612c759084611d81565b600d546001600160a01b0316600090815260036020526040902055505050565b600a54612ca29083611ed0565b600a55600b54612cb29082611d81565b600b555050565b600060208083528351808285015260005b81811015612ce657858101830151858201604001528201612cca565b81811115612cf8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612d2357600080fd5b50565b60008060408385031215612d3957600080fd5b8235612d4481612d0e565b946020939093013593505050565b600060208284031215612d6457600080fd5b8135610c7c81612d0e565b803560ff81168114612d8057600080fd5b919050565b60008060008060808587031215612d9b57600080fd5b612da485612d6f565b9350612db260208601612d6f565b9250612dc060408601612d6f565b9150612dce60608601612d6f565b905092959194509250565b600080600060608486031215612dee57600080fd5b8335612df981612d0e565b92506020840135612e0981612d0e565b929592945050506040919091013590565b80358015158114612d8057600080fd5b60008060408385031215612e3d57600080fd5b612d4483612e1a565b600060208284031215612e5857600080fd5b5035919050565b60008060408385031215612e7257600080fd5b82359150612e8260208401612e1a565b90509250929050565b600080600080600080600080610100898b031215612ea857600080fd5b612eb189612d6f565b9750612ebf60208a01612d6f565b9650612ecd60408a01612d6f565b9550612edb60608a01612d6f565b9450612ee960808a01612d6f565b9350612ef760a08a01612d6f565b9250612f0560c08a01612d6f565b9150612f1360e08a01612d6f565b90509295985092959890939650565b600060208284031215612f3457600080fd5b610c7c82612e1a565b60008060408385031215612f5057600080fd5b8235612f5b81612d0e565b91506020830135612f6b81612d0e565b809150509250929050565b600181811c90821680612f8a57607f821691505b602082108103612faa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561302357613023612ffb565b500390565b634e487b7160e01b600052603160045260246000fd5b60006001820161305057613050612ffb565b5060010190565b600081600019048311821515161561307157613071612ffb565b500290565b60008261309357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130ab576130ab612ffb565b500190565b600060ff821660ff84168060ff038211156130cd576130cd612ffb565b019392505050565b600060ff821660ff84168160ff04811182151516156130f6576130f6612ffb565b029392505050565b60006020828403121561311057600080fd5b8151610c7c81612d0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561316b5784516001600160a01b031683529383019391830191600101613146565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131a157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220960876c1822e0f0bca3e7de087f34aa2fe444e6a493cfcabf282f8422870ee1664736f6c634300080f0033

Deployed Bytecode Sourcemap

25257:26903:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28803:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29788:193;;;;;;;;;;-1:-1:-1;29788:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;29788:193:0;1072:187:1;34491:115:0;;;;;;;;;;-1:-1:-1;34491:115:0;;;;;:::i;:::-;;:::i;:::-;;31287:87;;;;;;;;;;-1:-1:-1;31356:10:0;;31287:87;;;1662:25:1;;;1650:2;1635:18;31287:87:0;1516:177:1;26721:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;26721:51:0;1698:230:1;29080:95:0;;;;;;;;;;-1:-1:-1;29160:7:0;;29080:95;;34736:306;;;;;;;;;;-1:-1:-1;34736:306:0;;;;;:::i;:::-;;:::i;29989:446::-;;;;;;;;;;-1:-1:-1;29989:446:0;;;;;:::i;:::-;;:::i;26556:22::-;;;;;;;;;;-1:-1:-1;26556:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198:4:1;3186:17;;;3168:36;;3240:17;;;3235:2;3220:18;;3213:45;3294:17;;;3274:18;;;3267:45;;;;3348:17;;;3343:2;3328:18;;3321:45;3155:3;3140:19;26556:22:0;2953:419:1;51820:337:0;;;;;;;;;;-1:-1:-1;51820:337:0;;;;;:::i;:::-;;:::i;32966:322::-;;;;;;;;;;-1:-1:-1;32966:322:0;;;;;:::i;:::-;;:::i;28989:83::-;;;;;;;;;;-1:-1:-1;29055:9:0;;28989:83;;29055:9;;;;4122:36:1;;4110:2;4095:18;28989:83:0;3980:184:1;33773:473:0;;;;;;;;;;-1:-1:-1;33773:473:0;;;;;:::i;:::-;;:::i;30443:300::-;;;;;;;;;;-1:-1:-1;30443:300:0;;;;;:::i;:::-;;:::i;31481:731::-;;;;;;;;;;-1:-1:-1;31481:731:0;;;;;:::i;:::-;;:::i;34254:111::-;;;;;;;;;;-1:-1:-1;34254:111:0;;;;;:::i;:::-;;:::i;32220:738::-;;;;;;;;;;-1:-1:-1;32220:738:0;;;;;:::i;:::-;;:::i;26529:20::-;;;;;;;;;;-1:-1:-1;26529:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26779:38;;;;;;;;;;;;;;;26854:40;;;;;;;;;;-1:-1:-1;26854:40:0;;;;;;;;;;;35359:645;;;;;;;;;;-1:-1:-1;35359:645:0;;;;;:::i;:::-;;:::i;33433:332::-;;;;;;;;;;-1:-1:-1;33433:332:0;;;;;:::i;:::-;;:::i;41566:124::-;;;;;;;;;;-1:-1:-1;41566:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;41655:27:0;41631:4;41655:27;;;:18;:27;;;;;;;;;41566:124;29183:198;;;;;;;;;;-1:-1:-1;29183:198:0;;;;;:::i;:::-;;:::i;31382:91::-;;;;;;;;;;-1:-1:-1;31453:12:0;;-1:-1:-1;;;;;31453:12:0;31382:91;;15321:148;;;;;;;;;;;;;:::i;26903:55::-;;;;;;;;;;;;;;;;31159:120;;;;;;;;;;-1:-1:-1;31159:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;31251:20:0;31227:4;31251:20;;;:11;:20;;;;;;;;;31159:120;14679:79;;;;;;;;;;-1:-1:-1;14717:7:0;14744:6;-1:-1:-1;;;;;14744:6:0;14679:79;;27056:57;;;;;;;;;;;;;;;;34614:114;;;;;;;;;;-1:-1:-1;34614:114:0;;;;;:::i;:::-;;:::i;28894:87::-;;;;;;;;;;;;;:::i;30751:400::-;;;;;;;;;;-1:-1:-1;30751:400:0;;;;;:::i;:::-;;:::i;27611:46::-;;;;;;;;;;-1:-1:-1;27611:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29389:199;;;;;;;;;;-1:-1:-1;29389:199:0;;;;;:::i;:::-;;:::i;33298:127::-;;;;;;;;;;-1:-1:-1;33298:127:0;;;;;:::i;:::-;;:::i;36304:172::-;;;;;;;;;;-1:-1:-1;36304:172:0;;;;;:::i;:::-;;:::i;27542:29::-;;;;;;;;;;;;;;;;36484:171;;;;;;;;;;-1:-1:-1;36484:171:0;;;;;:::i;:::-;;:::i;25953:103::-;;;;;;;;;;-1:-1:-1;25953:103:0;;;;-1:-1:-1;;;;;25953:103:0;;;36160:136;;;;;;;;;;-1:-1:-1;36160:136:0;;;;;:::i;:::-;;:::i;41698:128::-;;;;;;;;;;-1:-1:-1;41698:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;41789:29:0;41765:4;41789:29;;;:20;:29;;;;;;;;;41698:128;29596:184;;;;;;;;;;-1:-1:-1;29596:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29745:18:0;;;29713:7;29745:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29596:184;34373:110;;;;;;;;;;-1:-1:-1;34373:110:0;;;;;:::i;:::-;;:::i;36012:140::-;;;;;;;;;;-1:-1:-1;36012:140:0;;;;;:::i;:::-;;:::i;15624:281::-;;;;;;;;;;-1:-1:-1;15624:281:0;;;;;:::i;:::-;;:::i;27506:29::-;;;;;;;;;;;;;;;;35050:301;;;;;;;;;;-1:-1:-1;35050:301:0;;;;;:::i;:::-;;:::i;28803:83::-;28840:13;28873:5;28866:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28803:83;:::o;29788:193::-;29890:4;29912:39;7523:10;29935:7;29944:6;29912:8;:39::i;:::-;-1:-1:-1;29969:4:0;29788:193;;;;;:::o;34491:115::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34562:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;34562:36:0::1;34594:4;34562:36;::::0;;34491:115::o;34736:306::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;34893:7:::1;:31:::0;;::::1;35015:19:::0;;::::1;::::0;::::1;-1:-1:-1::0;;34975:29:0;;::::1;34893:31;34975:29;35015:19:::0;;;;-1:-1:-1;;34935:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;34935:29:0;;;34893:31;;;::::1;34935:29:::0;;;;;;;::::1;35015:19:::0;;;;;;;;::::1;::::0;;34736:306::o;29989:446::-;30121:4;30138:36;30148:6;30156:9;30167:6;30138:9;:36::i;:::-;30185:220;30208:6;7523:10;30256:138;30312:6;30256:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30256:19:0;;;;;;:11;:19;;;;;;;;7523:10;30256:33;;;;;;;;;;:37;:138::i;:::-;30185:8;:220::i;:::-;-1:-1:-1;30423:4:0;29989:446;;;;;:::o;51820:337::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;51907:11:::1;:21:::0;;-1:-1:-1;;51907:21:0::1;::::0;::::1;;;::::0;;51939:32:::1;51965:4;51939:17;:32::i;:::-;51982;52000:13;51982:17;:32::i;:::-;52028:11;::::0;::::1;;:30:::0;::::1;;;-1:-1:-1::0;52043:10:0::1;::::0;:15;52028:30:::1;52025:125;;;52087:12;52074:10;:25:::0;52114:10:::1;:24:::0;;;52025:125:::1;51820:337:::0;;:::o;32966:322::-;33060:7;33118;;33107;:18;;33085:110;;;;-1:-1:-1;;;33085:110:0;;7322:2:1;33085:110:0;;;7304:21:1;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:40;7501:19;;33085:110:0;7120:406:1;33085:110:0;33206:19;33228:10;:8;:10::i;:::-;33206:32;-1:-1:-1;33256:24:0;:7;33206:32;33256:11;:24::i;:::-;33249:31;32966:322;-1:-1:-1;;;32966:322:0:o;33773:473::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33853:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33845:56;;;::::0;-1:-1:-1;;;33845:56:0;;7733:2:1;33845:56:0::1;::::0;::::1;7715:21:1::0;7772:2;7752:18;;;7745:30;7811:25;7791:18;;;7784:53;7854:18;;33845:56:0::1;7531:347:1::0;33845:56:0::1;33917:9;33912:327;33936:9;:16:::0;33932:20;::::1;33912:327;;;33994:7;-1:-1:-1::0;;;;;33978:23:0::1;:9;33988:1;33978:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33978:12:0::1;:23:::0;33974:254:::1;;34037:9;34047:16:::0;;:20:::1;::::0;34066:1:::1;::::0;34047:20:::1;:::i;:::-;34037:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;34022:9:::1;:12:::0;;-1:-1:-1;;;;;34037:31:0;;::::1;::::0;34032:1;;34022:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34022:46:0::1;-1:-1:-1::0;;;;;34022:46:0;;::::1;;::::0;;34087:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34126:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34126:28:0::1;::::0;;34173:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34173:15:0;;;;;-1:-1:-1;;;;;;34173:15:0::1;::::0;;;;;51820:337;;:::o;33974:254::-:1;33954:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33912:327;;30443:300:::0;7523:10;30558:4;30652:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30652:34:0;;;;;;;;;;30558:4;;30580:133;;30630:7;;30652:50;;30691:10;30652:38;:50::i;31481:731::-;7523:10;31533:14;31596:19;;;:11;:19;;;;;;;;31595:20;31573:114;;;;-1:-1:-1;;;31573:114:0;;8751:2:1;31573:114:0;;;8733:21:1;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:42;8932:19;;31573:114:0;8549:408:1;31573:114:0;31730:12;31757:18;31790:15;31820:13;31847:20;31859:7;31847:11;:20::i;:::-;31700:167;;;;;;;;;31879:15;31902:155;31928:7;31950:4;31969:10;31994:7;32016:5;32036:10;:8;:10::i;:::-;31902:11;:155::i;:::-;-1:-1:-1;;;;;;;32088:15:0;;;;;;:7;:15;;;;;;31878:179;;-1:-1:-1;32088:28:0;;31878:179;32088:19;:28::i;:::-;-1:-1:-1;;;;;32070:15:0;;;;;;:7;:15;;;;;:46;32137:7;;:20;;32149:7;32137:11;:20::i;:::-;32127:7;:30;32181:10;;:23;;32196:7;32181:14;:23::i;:::-;32168:10;:36;-1:-1:-1;;;;;;;31481:731:0:o;34254:111::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34323:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34323:34:0::1;34353:4;34323:34;::::0;;34254:111::o;32220:738::-;32338:7;32382;;32371;:18;;32363:62;;;;-1:-1:-1;;;32363:62:0;;9164:2:1;32363:62:0;;;9146:21:1;9203:2;9183:18;;;9176:30;9242:33;9222:18;;;9215:61;9293:18;;32363:62:0;8962:355:1;32363:62:0;32468:12;32495:18;32528:15;32558:13;32585:20;32597:7;32585:11;:20::i;:::-;32438:167;;;;;;;;;32617:15;32634:23;32663:155;32689:7;32711:4;32730:10;32755:7;32777:5;32797:10;:8;:10::i;32663:155::-;32616:202;;;;;32836:17;32831:120;;-1:-1:-1;32877:7:0;-1:-1:-1;32870:14:0;;-1:-1:-1;;;;32870:14:0;32831:120;32924:15;-1:-1:-1;32917:22:0;;-1:-1:-1;;;;;32917:22:0;35359:645;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;35655:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;35700:32:0;;;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;35796:22:0;;;35655:34:::1;35743:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;35796:22:0;;;;;;;;;;::::1;::::0;::::1;;::::0;;;35831:7:::1;:36:::0;;;;::::1;35878:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;35972:24:::0;;;35923:34;;::::1;::::0;;::::1;35972:24:::0;;;;;;;;;;::::1;::::0;;::::1;;::::0;;35359:645::o;33433:332::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33514:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33513:21;33505:61;;;::::0;-1:-1:-1;;;33505:61:0;;9524:2:1;33505:61:0::1;::::0;::::1;9506:21:1::0;9563:2;9543:18;;;9536:30;9602:29;9582:18;;;9575:57;9649:18;;33505:61:0::1;9322:351:1::0;33505:61:0::1;-1:-1:-1::0;;;;;33581:16:0;::::1;33600:1;33581:16:::0;;;:7:::1;:16;::::0;;;;;:20;33577:109:::1;;-1:-1:-1::0;;;;;33657:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33637:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33618:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33577:109:::1;-1:-1:-1::0;;;;;33696:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33696:27:0::1;33719:4;33696:27:::0;;::::1;::::0;;;33734:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33734:23:0::1;::::0;;::::1;::::0;;33433:332::o;29183:198::-;-1:-1:-1;;;;;29273:20:0;;29249:7;29273:20;;;:11;:20;;;;;;;;29269:49;;;-1:-1:-1;;;;;;29302:16:0;;;;;:7;:16;;;;;;;29183:198::o;29269:49::-;-1:-1:-1;;;;;29356:16:0;;;;;;:7;:16;;;;;;29336:37;;:19;:37::i;15321:148::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;15428:1:::1;15412:6:::0;;15391:40:::1;::::0;-1:-1:-1;;;;;15412:6:0;;::::1;::::0;15391:40:::1;::::0;15428:1;;15391:40:::1;15459:1;15442:19:::0;;-1:-1:-1;;;;;;15442:19:0::1;::::0;;15321:148::o;34614:114::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34683:29:0::1;34715:5;34683:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;34683:37:0::1;::::0;;34614:114::o;28894:87::-;28933:13;28966:7;28959:14;;;;;:::i;30751:400::-;30871:4;30893:228;7523:10;30943:7;30965:145;31022:15;30965:145;;;;;;;;;;;;;;;;;7523:10;30965:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30965:34:0;;;;;;;;;;;;:38;:145::i;29389:199::-;29494:4;29516:42;7523:10;29540:9;29551:6;29516:9;:42::i;33298:127::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;33387:17:::1;:30:::0;;-1:-1:-1;;;;;;33387:30:0::1;-1:-1:-1::0;;;;;33387:30:0;;;::::1;::::0;;;::::1;::::0;;33298:127::o;36304:172::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;36431:37:::1;36462:5;36431:26;36443:13;36431:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;36414:14;:54:::0;-1:-1:-1;36304:172:0:o;36484:171::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;36561:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36561:32:0;;::::1;;::::0;;36609:38:::1;::::0;::::1;::::0;::::1;::::0;36585:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;36609:38:0::1;;;;;;;;36484:171:::0;:::o;36160:136::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;36252:36:::1;36282:5;36252:25;36264:12;36252:7;;:11;;:25;;;;:::i;:36::-;36237:12;:51:::0;-1:-1:-1;36160:136:0:o;34373:110::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34440:27:0::1;34470:5;34440:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34440:35:0::1;::::0;;34373:110::o;36012:140::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;36103:29:::1;:41:::0;36012:140::o;15624:281::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15727:22:0;::::1;15705:110;;;::::0;-1:-1:-1;;;15705:110:0;;9880:2:1;15705:110:0::1;::::0;::::1;9862:21:1::0;9919:2;9899:18;;;9892:30;9958:34;9938:18;;;9931:62;-1:-1:-1;;;10009:18:1;;;10002:36;10055:19;;15705:110:0::1;9678:402:1::0;15705:110:0::1;15852:6;::::0;;15831:38:::1;::::0;-1:-1:-1;;;;;15831:38:0;;::::1;::::0;15852:6;::::1;::::0;15831:38:::1;::::0;::::1;15880:6;:17:::0;;-1:-1:-1;;;;;;15880:17:0::1;-1:-1:-1::0;;;;;15880:17:0;;;::::1;::::0;;;::::1;::::0;;15624:281::o;35050:301::-;14891:6;;-1:-1:-1;;;;;14891:6:0;7523:10;14891:22;14883:67;;;;-1:-1:-1;;;14883:67:0;;;;;;;:::i;:::-;35206:6:::1;:30:::0;;::::1;35325:18:::0;;::::1;::::0;::::1;-1:-1:-1::0;;35286:28:0;;::::1;35206:30;35286:28;35325:18:::0;;;;-1:-1:-1;;35247:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;35247:28:0;;;35206:30;;;::::1;35247:28:::0;;;;;;;::::1;35325:18:::0;;;;;;;;::::1;::::0;;35050:301::o;5167:132::-;5225:7;5252:39;5256:1;5259;5252:39;;;;;;;;;;;;;;;;;:3;:39::i;4672:252::-;4730:7;4756:1;4761;4756:6;4752:47;;-1:-1:-1;4786:1:0;4779:8;;4752:47;4811:9;4823:5;4827:1;4823;:5;:::i;:::-;4811:17;-1:-1:-1;4856:1:0;4847:5;4851:1;4811:17;4847:5;:::i;:::-;:10;4839:56;;;;-1:-1:-1;;;4839:56:0;;10682:2:1;4839:56:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760:34;10740:18;;;10733:62;-1:-1:-1;;;10811:18:1;;;10804:31;10852:19;;4839:56:0;10480:397:1;41834:371:0;-1:-1:-1;;;;;41961:19:0;;41953:68;;;;-1:-1:-1;;;41953:68:0;;11084:2:1;41953:68:0;;;11066:21:1;11123:2;11103:18;;;11096:30;11162:34;11142:18;;;11135:62;-1:-1:-1;;;11213:18:1;;;11206:34;11257:19;;41953:68:0;10882:400:1;41953:68:0;-1:-1:-1;;;;;42040:21:0;;42032:68;;;;-1:-1:-1;;;42032:68:0;;11489:2:1;42032:68:0;;;11471:21:1;11528:2;11508:18;;;11501:30;11567:34;11547:18;;;11540:62;-1:-1:-1;;;11618:18:1;;;11611:32;11660:19;;42032:68:0;11287:398:1;42032:68:0;-1:-1:-1;;;;;42113:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42165:32;;1662:25:1;;;42165:32:0;;1635:18:1;42165:32:0;;;;;;;41834:371;;;:::o;42213:2349::-;-1:-1:-1;;;;;42335:18:0;;42327:68;;;;-1:-1:-1;;;42327:68:0;;11892:2:1;42327:68:0;;;11874:21:1;11931:2;11911:18;;;11904:30;11970:34;11950:18;;;11943:62;-1:-1:-1;;;12021:18:1;;;12014:35;12066:19;;42327:68:0;11690:401:1;42327:68:0;-1:-1:-1;;;;;42414:16:0;;42406:64;;;;-1:-1:-1;;;42406:64:0;;12298:2:1;42406:64:0;;;12280:21:1;12337:2;12317:18;;;12310:30;12376:34;12356:18;;;12349:62;-1:-1:-1;;;12427:18:1;;;12420:33;12470:19;;42406:64:0;12096:399:1;42406:64:0;42498:1;42489:6;:10;42481:64;;;;-1:-1:-1;;;42481:64:0;;12702:2:1;42481:64:0;;;12684:21:1;12741:2;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;-1:-1:-1;;;12831:18:1;;;12824:39;12880:19;;42481:64:0;12500:405:1;42481:64:0;14717:7;14744:6;-1:-1:-1;;;;;42571:15:0;;;14744:6;;42571:15;;;;:32;;-1:-1:-1;14717:7:0;14744:6;-1:-1:-1;;;;;42590:13:0;;;14744:6;;42590:13;;42571:32;42566:88;;;42614:11;;;;42606:48;;;;-1:-1:-1;;;42606:48:0;;13112:2:1;42606:48:0;;;13094:21:1;13151:2;13131:18;;;13124:30;13190:26;13170:18;;;13163:54;13234:18;;42606:48:0;12910:348:1;42606:48:0;42989:28;43020:24;43038:4;43020:9;:24::i;:::-;42989:55;;43085:12;;43061:20;:36;43057:104;;-1:-1:-1;43137:12:0;;43057:104;43237:29;;43200:66;;;;;;;43295:53;;-1:-1:-1;43332:16:0;;;;;;;43331:17;43295:53;:91;;;;;43373:13;-1:-1:-1;;;;;43365:21:0;:4;-1:-1:-1;;;;;43365:21:0;;;43295:91;:129;;;;-1:-1:-1;43403:21:0;;;;;;;43295:129;43277:318;;;43474:29;;43451:52;;43547:36;43562:20;43547:14;:36::i;:::-;-1:-1:-1;;;;;43788:24:0;;43668:12;43788:24;;;:18;:24;;;;;;43683:4;;43788:24;;;:50;;-1:-1:-1;;;;;;43816:22:0;;;;;;:18;:22;;;;;;;;43788:50;43784:98;;;-1:-1:-1;43865:5:0;43784:98;43896:7;43892:536;;;-1:-1:-1;;;;;43925:26:0;;;;;;:20;:26;;;;;;;;43924:27;:56;;;;-1:-1:-1;;;;;;43956:24:0;;;;;;:20;:24;;;;;;;;43955:25;43924:56;43920:497;;;44041:12;;44031:6;:22;;44001:136;;;;-1:-1:-1;;;44001:136:0;;13465:2:1;44001:136:0;;;13447:21:1;13504:2;13484:18;;;13477:30;13543:34;13523:18;;;13516:62;-1:-1:-1;;;13594:18:1;;;13587:38;13642:19;;44001:136:0;13263:404:1;44001:136:0;44166:13;-1:-1:-1;;;;;44160:19:0;:2;-1:-1:-1;;;;;44160:19:0;;44156:228;;44264:14;;44247:13;44257:2;44247:9;:13::i;:::-;44238:22;;:6;:22;:::i;:::-;:40;;44204:160;;;;-1:-1:-1;;;44204:160:0;;14007:2:1;44204:160:0;;;13989:21:1;14046:2;14026:18;;;14019:30;14085:34;14065:18;;;14058:62;-1:-1:-1;;;14136:18:1;;;14129:32;14178:19;;44204:160:0;13805:398:1;44204:160:0;44513:41;44528:4;44534:2;44538:6;44546:7;44513:14;:41::i;:::-;42316:2246;;;42213:2349;;;:::o;4187:226::-;4307:7;4343:12;4335:6;;;;4327:29;;;;-1:-1:-1;;;4327:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4367:9:0;4379:5;4383:1;4379;:5;:::i;:::-;4367:17;4187:226;-1:-1:-1;;;;;4187:226:0:o;38418:164::-;38460:7;38481:15;38498;38517:19;:17;:19::i;:::-;38480:56;;-1:-1:-1;38480:56:0;-1:-1:-1;38554:20:0;38480:56;;38554:11;:20::i;:::-;38547:27;;;;38418:164;:::o;3284:181::-;3342:7;;3374:5;3378:1;3374;:5;:::i;:::-;3362:17;;3403:1;3398;:6;;3390:46;;;;-1:-1:-1;;;3390:46:0;;14410:2:1;3390:46:0;;;14392:21:1;14449:2;14429:18;;;14422:30;14488:29;14468:18;;;14461:57;14535:18;;3390:46:0;14208:351:1;36912:704:0;37013:7;37035;37057;37079;37101;37136:12;37151:31;37174:7;37151:22;:31::i;:::-;37136:46;;37193:18;37214:30;37236:7;37214:21;:30::i;:::-;37193:51;;37255:15;37273:30;37295:7;37273:21;:30::i;:::-;37255:48;;37314:13;37330:25;37347:7;37330:16;:25::i;:::-;37314:41;-1:-1:-1;37366:23:0;37392:33;37414:10;37392:17;:7;37404:4;37392:11;:17::i;:::-;:21;;:33::i;:::-;37366:59;-1:-1:-1;37454:28:0;37366:59;37474:7;37454:19;:28::i;:::-;37436:46;-1:-1:-1;37511:26:0;37436:46;37531:5;37511:19;:26::i;:::-;37493:44;37575:4;;-1:-1:-1;37581:10:0;;-1:-1:-1;37593:7:0;;-1:-1:-1;37581:10:0;-1:-1:-1;36912:704:0;;-1:-1:-1;;;36912:704:0:o;37624:786::-;37873:7;;;;37970:24;:7;37982:11;37970;:24::i;:::-;37952:42;-1:-1:-1;38005:12:0;38020:21;:4;38029:11;38020:8;:21::i;:::-;38005:36;-1:-1:-1;38052:18:0;38073:27;:10;38088:11;38073:14;:27::i;:::-;38052:48;-1:-1:-1;38111:15:0;38129:24;:7;38141:11;38129;:24::i;:::-;38111:42;-1:-1:-1;38164:13:0;38180:22;:5;38190:11;38180:9;:22::i;:::-;38164:38;-1:-1:-1;38213:23:0;38239:113;38164:38;38239:88;38319:7;38239:88;38289:10;38239:88;:7;38265:4;38239:25;:31::i;:113::-;38371:7;;;;-1:-1:-1;38397:4:0;;-1:-1:-1;37624:786:0;;-1:-1:-1;;;;;;;;;;;37624:786:0:o;3748:136::-;3806:7;3833:43;3837:1;3840;3833:43;;;;;;;;;;;;;;;;;:3;:43::i;5795:312::-;5915:7;5950:12;5943:5;5935:28;;;;-1:-1:-1;;;5935:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5974:9:0;5986:5;5990:1;5986;:5;:::i;44570:1195::-;27420:16;:23;;-1:-1:-1;;27420:23:0;;;;;44773:7:::1;:17:::0;44754:6:::1;:16:::0;27420:23;;44773:17;;;::::1;27420:23:::0;44773:17;;::::1;::::0;44754:16;;::::1;::::0;::::1;::::0;44715:36:::1;::::0;27420:23;44734:17;;;::::1;::::0;::::1;::::0;44715:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;44714:81;::::0;44794:1:::1;44714:81;:::i;:::-;44871:7;:17:::0;44852:6:::1;:16:::0;44692:103:::1;::::0;;::::1;::::0;-1:-1:-1;44806:32:0::1;::::0;44692:103;;44852:36:::1;::::0;44871:17:::1;::::0;;;::::1;::::0;::::1;::::0;44852:16;;::::1;;:36;:::i;:::-;44842:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;44841:63;;;;:::i;:::-;44806:98:::0;-1:-1:-1;44915:14:0::1;44932:33;44806:98:::0;44932:6;:33:::1;:::i;:::-;44915:50:::0;-1:-1:-1;45003:21:0::1;45037:24;44915:50:::0;45037:16:::1;:24::i;:::-;45074:20;45097:38;45121:14:::0;45097:21:::1;:38;:::i;:::-;45218:7;:17:::0;45199:6:::1;:16:::0;45074:61;;-1:-1:-1;45146:19:0::1;::::0;45199:36:::1;::::0;45218:17:::1;;::::0;;;::::1;::::0;::::1;::::0;45199:16;;;::::1;;:36;:::i;:::-;45184:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;45168:69;::::0;:12;:69:::1;:::i;:::-;45314:7;:17:::0;45295:6:::1;:16:::0;45146:91;;-1:-1:-1;45248:29:0::1;::::0;45295:36:::1;::::0;45314:17:::1;;::::0;;;::::1;::::0;::::1;::::0;45295:16;;;::::1;;:36;:::i;:::-;45280:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;45248:84:::0;-1:-1:-1;45349:25:0;;45345:160:::1;;45432:61;45445:24;45471:21;45432:12;:61::i;:::-;45612:7;:17:::0;45593:6:::1;:16:::0;45551:20:::1;::::0;45593:36:::1;::::0;45612:17:::1;::::0;;;;::::1;::::0;::::1;::::0;45593:16;;::::1;;:36;:::i;:::-;45574:56;;:15;:11:::0;45588:1:::1;45574:15;:::i;:::-;:56;;;;:::i;:::-;45551:79:::0;-1:-1:-1;45656:16:0;;45652:98:::1;;45697:17;::::0;45689:49:::1;::::0;-1:-1:-1;;;;;45697:17:0;;::::1;::::0;45689:49;::::1;;;::::0;45725:12;;45697:17:::1;45689:49:::0;45697:17;45689:49;45725:12;45697:17;45689:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45652:98;-1:-1:-1::0;;27466:16:0;:24;;-1:-1:-1;;27466:24:0;;;-1:-1:-1;;;;;;;44570:1195:0:o;46970:1022::-;47125:7;47121:230;;;47149:14;41013;:18;;-1:-1:-1;;41098:12:0;;;40970:155;47149:14;47192:13;-1:-1:-1;;;;;47182:23:0;:6;-1:-1:-1;;;;;47182:23:0;;47178:72;;41187:6;:17;41170:14;:34;;41187:17;;;;-1:-1:-1;;41215:32:0;;;;;;;41187:17;41231:16;;;;;41215:32;;-1:-1:-1;;41301:22:0;41274:16;;;;;;41258:32;-1:-1:-1;;41301:22:0;;41312:11;;;;;;;;;41301:22;;;;;;;;;47226:8;47281:13;-1:-1:-1;;;;;47268:26:0;:9;-1:-1:-1;;;;;47268:26:0;;47264:76;;41402:7;:18;41385:14;:35;;41402:18;;;;-1:-1:-1;;41431:33:0;;;;;;;41402:18;41447:17;;;;;41431:33;;-1:-1:-1;;41519:23:0;41491:17;;;;;;41475:33;-1:-1:-1;;41519:23:0;;41530:12;;;;;;;;;41519:23;;;;;;;;;47315:9;-1:-1:-1;;;;;47367:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;47391:22:0;;;;;;:11;:22;;;;;;;;47390:23;47367:46;47363:597;;;47430:48;47452:6;47460:9;47471:6;47430:21;:48::i;:::-;47363:597;;;-1:-1:-1;;;;;47501:19:0;;;;;;:11;:19;;;;;;;;47500:20;:46;;;;-1:-1:-1;;;;;;47524:22:0;;;;;;:11;:22;;;;;;;;47500:46;47496:464;;;47563:46;47583:6;47591:9;47602:6;47563:19;:46::i;47496:464::-;-1:-1:-1;;;;;47632:19:0;;;;;;:11;:19;;;;;;;;47631:20;:47;;;;-1:-1:-1;;;;;;47656:22:0;;;;;;:11;:22;;;;;;;;47655:23;47631:47;47627:333;;;47695:44;47713:6;47721:9;47732:6;47695:17;:44::i;47627:333::-;-1:-1:-1;;;;;47761:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47784:22:0;;;;;;:11;:22;;;;;;;;47761:45;47757:203;;;47823:48;47845:6;47853:9;47864:6;47823:21;:48::i;47757:203::-;47904:44;47922:6;47930:9;47941:6;47904:17;:44::i;:::-;47970:14;41013;:18;;-1:-1:-1;;41098:12:0;;;40970:155;47970:14;46970:1022;;;;:::o;38590:605::-;38688:7;;38724;;38641;;;;;38742:338;38766:9;:16;38762:20;;38742:338;;;38850:7;38826;:21;38834:9;38844:1;38834:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38834:12:0;38826:21;;;;;;;;;;;;;:31;;:83;;;38902:7;38878;:21;38886:9;38896:1;38886:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38886:12:0;38878:21;;;;;;;;;;;;;:31;38826:83;38804:146;;;38933:7;;38942;;38925:25;;;;;;;38590:605;;:::o;38804:146::-;38975:34;38987:7;:21;38995:9;39005:1;38995:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38995:12:0;38987:21;;;;;;;;;;;;;38975:7;;:11;:34::i;:::-;38965:44;;39034:34;39046:7;:21;39054:9;39064:1;39054:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39054:12:0;39046:21;;;;;;;;;;;;;39034:7;;:11;:34::i;:::-;39024:44;-1:-1:-1;38784:3:0;;;;:::i;:::-;;;;38742:338;;;-1:-1:-1;39116:7:0;;39104;;:20;;:11;:20::i;:::-;39094:7;:30;39090:61;;;39134:7;;39143;;39126:25;;;;;;38590:605;;:::o;39090:61::-;39170:7;;39179;;-1:-1:-1;38590:605:0;-1:-1:-1;38590:605:0:o;40277:144::-;40387:14;;40348:7;;40375:38;;40407:5;;40375:27;;:7;;40387:14;;40375:11;:27::i;40429:174::-;40570:13;;40526:7;;40558:37;;40589:5;;40558:26;;:7;;40570:13;;;;;40558:11;:26::i;40611:174::-;40752:13;;40708:7;;40740:37;;40771:5;;40740:26;;:7;;40752:13;;;;;40740:11;:26::i;40793:164::-;40929:8;;40885:7;;40917:32;;40943:5;;40917:21;;:7;;40929:8;;;;;40917:11;:21::i;45773:589::-;45923:16;;;45937:1;45923:16;;;;;;;;45899:21;;45923:16;;;;;;;;;;-1:-1:-1;45923:16:0;45899:40;;45968:4;45950;45955:1;45950:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45950:23:0;;;-1:-1:-1;;;;;45950:23:0;;;;;45994:15;-1:-1:-1;;;;;45994:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45984:4;45989:1;45984:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45984:32:0;;;-1:-1:-1;;;;;45984:32:0;;;;;46029:62;46046:4;46061:15;46079:11;46029:8;:62::i;:::-;46130:224;;-1:-1:-1;;;46130:224:0;;-1:-1:-1;;;;;46130:15:0;:66;;;;:224;;46211:11;;46237:1;;46281:4;;46308;;46328:15;;46130:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46370:519;46518:62;46535:4;46550:15;46568:11;46518:8;:62::i;:::-;46623:258;;-1:-1:-1;;;46623:258:0;;46695:4;46623:258;;;16730:34:1;;;16780:18;;;16773:34;;;46741:1:0;16823:18:1;;;16816:34;;;16866:18;;;16859:34;16909:19;;;16902:44;46855:15:0;16962:19:1;;;16955:35;46623:15:0;-1:-1:-1;;;;;46623:31:0;;;;46662:9;;16664:19:1;;46623:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46370:519;;:::o;49851:941::-;50002:23;50040:12;50067:18;50100:15;50130:13;50157:20;50169:7;50157:11;:20::i;:::-;49987:190;;;;;;;;;;50189:15;50206:23;50231:12;50247:155;50273:7;50295:4;50314:10;50339:7;50361:5;50381:10;:8;:10::i;50247:155::-;-1:-1:-1;;;;;50433:15:0;;;;;;:7;:15;;;;;;50188:214;;-1:-1:-1;50188:214:0;;-1:-1:-1;50188:214:0;-1:-1:-1;50433:28:0;;50453:7;50433:19;:28::i;:::-;-1:-1:-1;;;;;50415:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50490:7;:15;;;;:28;;50510:7;50490:19;:28::i;:::-;-1:-1:-1;;;;;50472:15:0;;;;;;;:7;:15;;;;;;:46;;;;50550:18;;;;;;;:39;;50573:15;50550:22;:39::i;:::-;-1:-1:-1;;;;;50529:18:0;;;;;;:7;:18;;;;;:60;50600:26;50615:10;50600:14;:26::i;:::-;50637:23;50652:7;50637:14;:23::i;:::-;50671:19;50684:5;50671:12;:19::i;:::-;50701:23;50713:4;50719;50701:11;:23::i;:::-;50757:9;-1:-1:-1;;;;;50740:44:0;50749:6;-1:-1:-1;;;;;50740:44:0;;50768:15;50740:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;50740:44:0;;;;;;;;49976:816;;;;;;;;49851:941;;;:::o;48890:953::-;49039:23;49077:12;49104:18;49137:15;49167:13;49194:20;49206:7;49194:11;:20::i;:::-;49024:190;;;;;;;;;;49226:15;49243:23;49268:12;49284:155;49310:7;49332:4;49351:10;49376:7;49398:5;49418:10;:8;:10::i;49284:155::-;-1:-1:-1;;;;;49470:15:0;;;;;;:7;:15;;;;;;49225:214;;-1:-1:-1;49225:214:0;;-1:-1:-1;49225:214:0;-1:-1:-1;49470:28:0;;49225:214;49470:19;:28::i;:::-;-1:-1:-1;;;;;49452:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;49530:18;;;;;:7;:18;;;;;:39;;49553:15;49530:22;:39::i;:::-;-1:-1:-1;;;;;49509:18:0;;;;;;:7;:18;;;;;;;;:60;;;;49601:7;:18;;;;:39;;49624:15;49601:22;:39::i;48000:880::-;48147:23;48185:12;48212:18;48245:15;48275:13;48302:20;48314:7;48302:11;:20::i;:::-;48132:190;;;;;;;;;;48334:15;48351:23;48376:12;48392:155;48418:7;48440:4;48459:10;48484:7;48506:5;48526:10;:8;:10::i;48392:155::-;-1:-1:-1;;;;;48578:15:0;;;;;;:7;:15;;;;;;48333:214;;-1:-1:-1;48333:214:0;;-1:-1:-1;48333:214:0;-1:-1:-1;48578:28:0;;48333:214;48578:19;:28::i;50800:1012::-;50951:23;50989:12;51016:18;51049:15;51079:13;51106:20;51118:7;51106:11;:20::i;:::-;50936:190;;;;;;;;;;51138:15;51155:23;51180:12;51196:155;51222:7;51244:4;51263:10;51288:7;51310:5;51330:10;:8;:10::i;51196:155::-;-1:-1:-1;;;;;51382:15:0;;;;;;:7;:15;;;;;;51137:214;;-1:-1:-1;51137:214:0;;-1:-1:-1;51137:214:0;-1:-1:-1;51382:28:0;;51402:7;51382:19;:28::i;:::-;-1:-1:-1;;;;;51364:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51439:7;:15;;;;:28;;51459:7;51439:19;:28::i;39203:355::-;39266:19;39288:10;:8;:10::i;:::-;39266:32;-1:-1:-1;39309:18:0;39330:27;:10;39266:32;39330:14;:27::i;:::-;39409:4;39393:22;;;;:7;:22;;;;;;39309:48;;-1:-1:-1;39393:38:0;;39309:48;39393:26;:38::i;:::-;39384:4;39368:22;;;;:7;:22;;;;;;;;:63;;;;39446:11;:26;;;;;;39442:108;;;39528:4;39512:22;;;;:7;:22;;;;;;:38;;39539:10;39512:26;:38::i;:::-;39503:4;39487:22;;;;:7;:22;;;;;:63;39442:108;39255:303;;39203:355;:::o;39914:::-;39970:19;39992:10;:8;:10::i;:::-;39970:32;-1:-1:-1;40013:13:0;40029:22;:5;39970:32;40029:9;:22::i;:::-;40094:12;;-1:-1:-1;;;;;40094:12:0;40086:21;;;;:7;:21;;;;;;40013:38;;-1:-1:-1;40086:32:0;;40013:38;40086:25;:32::i;:::-;40070:12;;;-1:-1:-1;;;;;40070:12:0;;;40062:21;;;;:7;:21;;;;;;;;:56;;;;40145:12;;;;;40133:25;;:11;:25;;;;;;;40129:132;;;40205:12;;-1:-1:-1;;;;;40205:12:0;40197:21;;;;:7;:21;;;;;;:64;;40241:5;40197:25;:64::i;:::-;40181:12;;-1:-1:-1;;;;;40181:12:0;40173:21;;;;:7;:21;;;;;:88;39959:310;;39914:355;:::o;36757:147::-;36835:7;;:17;;36847:4;36835:11;:17::i;:::-;36825:7;:27;36876:10;;:20;;36891:4;36876:14;:20::i;:::-;36863:10;:33;-1:-1:-1;;36757:147:0: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;671:70;616:131;:::o;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;1933:156::-;1999:20;;2059:4;2048:16;;2038:27;;2028:55;;2079:1;2076;2069:12;2028:55;1933:156;;;:::o;2094:393::-;2172:6;2180;2188;2196;2249:3;2237:9;2228:7;2224:23;2220:33;2217:53;;;2266:1;2263;2256:12;2217:53;2289:27;2306:9;2289:27;:::i;:::-;2279:37;;2335:36;2367:2;2356:9;2352:18;2335:36;:::i;:::-;2325:46;;2390:36;2422:2;2411:9;2407:18;2390:36;:::i;:::-;2380:46;;2445:36;2477:2;2466:9;2462:18;2445:36;:::i;:::-;2435:46;;2094:393;;;;;;;:::o;2492:456::-;2569:6;2577;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:52;;;2654:1;2651;2644:12;2606:52;2693:9;2680:23;2712:31;2737:5;2712:31;:::i;:::-;2762:5;-1:-1:-1;2819:2:1;2804:18;;2791:32;2832:33;2791:32;2832:33;:::i;:::-;2492:456;;2884:7;;-1:-1:-1;;;2938:2:1;2923:18;;;;2910:32;;2492:456::o;3377:160::-;3442:20;;3498:13;;3491:21;3481:32;;3471:60;;3527:1;3524;3517:12;3542:248;3607:6;3615;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3707:26;3723:9;3707:26;:::i;3795:180::-;3854:6;3907:2;3895:9;3886:7;3882:23;3878:32;3875:52;;;3923:1;3920;3913:12;3875:52;-1:-1:-1;3946:23:1;;3795:180;-1:-1:-1;3795:180:1:o;4169:248::-;4234:6;4242;4295:2;4283:9;4274:7;4270:23;4266:32;4263:52;;;4311:1;4308;4301:12;4263:52;4347:9;4334:23;4324:33;;4376:35;4407:2;4396:9;4392:18;4376:35;:::i;:::-;4366:45;;4169:248;;;;;:::o;4630:677::-;4736:6;4744;4752;4760;4768;4776;4784;4792;4845:3;4833:9;4824:7;4820:23;4816:33;4813:53;;;4862:1;4859;4852:12;4813:53;4885:27;4902:9;4885:27;:::i;:::-;4875:37;;4931:36;4963:2;4952:9;4948:18;4931:36;:::i;:::-;4921:46;;4986:36;5018:2;5007:9;5003:18;4986:36;:::i;:::-;4976:46;;5041:36;5073:2;5062:9;5058:18;5041:36;:::i;:::-;5031:46;;5096:37;5128:3;5117:9;5113:19;5096:37;:::i;:::-;5086:47;;5152:37;5184:3;5173:9;5169:19;5152:37;:::i;:::-;5142:47;;5208:37;5240:3;5229:9;5225:19;5208:37;:::i;:::-;5198:47;;5264:37;5296:3;5285:9;5281:19;5264:37;:::i;:::-;5254:47;;4630:677;;;;;;;;;;;:::o;5572:180::-;5628:6;5681:2;5669:9;5660:7;5656:23;5652:32;5649:52;;;5697:1;5694;5687:12;5649:52;5720:26;5736:9;5720:26;:::i;5981:388::-;6049:6;6057;6110:2;6098:9;6089:7;6085:23;6081:32;6078:52;;;6126:1;6123;6116:12;6078:52;6165:9;6152:23;6184:31;6209:5;6184:31;:::i;:::-;6234:5;-1:-1:-1;6291:2:1;6276:18;;6263:32;6304:33;6263:32;6304:33;:::i;:::-;6356:7;6346:17;;;5981:388;;;;;:::o;6374:380::-;6453:1;6449:12;;;;6496;;;6517:61;;6571:4;6563:6;6559:17;6549:27;;6517:61;6624:2;6616:6;6613:14;6593:18;6590:38;6587:161;;6670:10;6665:3;6661:20;6658:1;6651:31;6705:4;6702:1;6695:15;6733:4;6730:1;6723:15;6587:161;;6374:380;;;:::o;6759:356::-;6961:2;6943:21;;;6980:18;;;6973:30;7039:34;7034:2;7019:18;;7012:62;7106:2;7091:18;;6759:356::o;7883:127::-;7944:10;7939:3;7935:20;7932:1;7925:31;7975:4;7972:1;7965:15;7999:4;7996:1;7989:15;8015:127;8076:10;8071:3;8067:20;8064:1;8057:31;8107:4;8104:1;8097:15;8131:4;8128:1;8121:15;8147:125;8187:4;8215:1;8212;8209:8;8206:34;;;8220:18;;:::i;:::-;-1:-1:-1;8257:9:1;;8147:125::o;8277:127::-;8338:10;8333:3;8329:20;8326:1;8319:31;8369:4;8366:1;8359:15;8393:4;8390:1;8383:15;8409:135;8448:3;8469:17;;;8466:43;;8489:18;;:::i;:::-;-1:-1:-1;8536:1:1;8525:13;;8409:135::o;10085:168::-;10125:7;10191:1;10187;10183:6;10179:14;10176:1;10173:21;10168:1;10161:9;10154:17;10150:45;10147:71;;;10198:18;;:::i;:::-;-1:-1:-1;10238:9:1;;10085:168::o;10258:217::-;10298:1;10324;10314:132;;10368:10;10363:3;10359:20;10356:1;10349:31;10403:4;10400:1;10393:15;10431:4;10428:1;10421:15;10314:132;-1:-1:-1;10460:9:1;;10258:217::o;13672:128::-;13712:3;13743:1;13739:6;13736:1;13733:13;13730:39;;;13749:18;;:::i;:::-;-1:-1:-1;13785:9:1;;13672:128::o;14564:204::-;14602:3;14638:4;14635:1;14631:12;14670:4;14667:1;14663:12;14705:3;14699:4;14695:14;14690:3;14687:23;14684:49;;;14713:18;;:::i;:::-;14749:13;;14564:204;-1:-1:-1;;;14564:204:1:o;14773:238::-;14811:7;14851:4;14848:1;14844:12;14883:4;14880:1;14876:12;14943:3;14937:4;14933:14;14928:3;14925:23;14918:3;14911:11;14904:19;14900:49;14897:75;;;14952:18;;:::i;:::-;14992:13;;14773:238;-1:-1:-1;;;14773:238:1:o;15148:251::-;15218:6;15271:2;15259:9;15250:7;15246:23;15242:32;15239:52;;;15287:1;15284;15277:12;15239:52;15319:9;15313:16;15338:31;15363:5;15338:31;:::i;15404:980::-;15666:4;15714:3;15703:9;15699:19;15745:6;15734:9;15727:25;15771:2;15809:6;15804:2;15793:9;15789:18;15782:34;15852:3;15847:2;15836:9;15832:18;15825:31;15876:6;15911;15905:13;15942:6;15934;15927:22;15980:3;15969:9;15965:19;15958:26;;16019:2;16011:6;16007:15;15993:29;;16040:1;16050:195;16064:6;16061:1;16058:13;16050:195;;;16129:13;;-1:-1:-1;;;;;16125:39:1;16113:52;;16220:15;;;;16185:12;;;;16161:1;16079:9;16050:195;;;-1:-1:-1;;;;;;;16301:32:1;;;;16296:2;16281:18;;16274:60;-1:-1:-1;;;16365:3:1;16350:19;16343:35;16262:3;15404:980;-1:-1:-1;;;15404:980:1:o;17001:306::-;17089:6;17097;17105;17158:2;17146:9;17137:7;17133:23;17129:32;17126:52;;;17174:1;17171;17164:12;17126:52;17203:9;17197:16;17187:26;;17253:2;17242:9;17238:18;17232:25;17222:35;;17297:2;17286:9;17282:18;17276:25;17266:35;;17001:306;;;;;:::o

Swarm Source

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