ETH Price: $2,412.56 (-0.39%)

Token

UTSUKUSHII (UTSU)
 

Overview

Max Total Supply

500,000,000 UTSU

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
3,049,219.163479315 UTSU

Value
$0.00
0xcaee5fa0b78e48b52faa4dbb95f7fc0f15ba425e
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:
UTSUKUSHII

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*
   
                       @utsukushii_portal

*/
// 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 UTSUKUSHII 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 = 500000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

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

    string private _name = "UTSUKUSHII";
    string private _symbol = "UTSU";
    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(100); 
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(1); 
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(100); 

    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

[{"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"}]

60c06040526706f05b59d3b200006009819055620000209060001962000699565b6200002e90600019620006c6565b600a908155600c80546001600160a01b03199081167338577a8ef0352b82fd94aa3483f9ac37a8d03e0c17909155600d805490911661dead1790556040805180820190915281815269555453554b555348494960b01b60209091019081526200009b91600e9190620005dd565b50604080518082019091526004808252635554535560e01b6020909201918252620000c991600f91620005dd565b506010805460ff191660099081179091556013805460ff60281b19166501000000000017905554620001299060649062000115906103e862001739620004c3602090811b91909117901c565b6200051660201b6200177b1790919060201c565b601455620001506001620001156103e8600954620004c360201b620017391790919060201c565b601555620001776064620001156103e8600954620004c360201b620017391790919060201c565b601655600260175560006018556019805460ff191690553480156200019b57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a54336000908152600260209081526040918290209290925560118054630201010163ffffffff199182168117909255601280549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000267573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028d9190620006e0565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002db573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003019190620006e0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200034f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003759190620006e0565b6001600160a01b0390811660a0528116608052600160056000620003a16000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c805484168352848320805488168317905554909216815260089384905291822080549094168117909355620004246000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260089092529020805490911660011790556200046c3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600954604051620004b491815260200190565b60405180910390a350620007d9565b60006200050d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005a160201b60201c565b90505b92915050565b600082620005275750600062000510565b60006200053583856200070b565b9050826200054485836200072d565b146200050d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005c55760405162461bcd60e51b815260040162000598919062000744565b506000620005d484866200072d565b95945050505050565b828054620005eb906200079c565b90600052602060002090601f0160209004810192826200060f57600085556200065a565b82601f106200062a57805160ff19168380011785556200065a565b828001600101855582156200065a579182015b828111156200065a5782518255916020019190600101906200063d565b50620006689291506200066c565b5090565b5b808211156200066857600081556001016200066d565b634e487b7160e01b600052601260045260246000fd5b600082620006ab57620006ab62000683565b500690565b634e487b7160e01b600052601160045260246000fd5b600082821015620006db57620006db620006b0565b500390565b600060208284031215620006f357600080fd5b81516001600160a01b03811681146200050d57600080fd5b6000816000190483118215151615620007285762000728620006b0565b500290565b6000826200073f576200073f62000683565b500490565b600060208083528351808285015260005b81811015620007735785810183015185820160400152820162000755565b8181111562000786576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c90821680620007b157607f821691505b60208210811415620007d357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613240620008456000396000818161058d01528181610bb601528181611b0c01528181611c680152818161213f01526121ca01526000818161035101528181612616015281816126cf0152818161270b0152818161277d01526127d901526132406000f3fe6080604052600436106102975760003560e01c806370d5ae051161015a578063af2ce614116100c1578063dd62ed3e1161007a578063dd62ed3e146108b2578063ea2f0b37146108f8578063f0f165af14610918578063f2fde38b14610938578063fabb0b4f14610958578063fe63178f1461096e57600080fd5b8063af2ce614146107e3578063bf56b37114610803578063c49b9a8014610819578063caac793414610839578063d543dbeb14610859578063d94160e01461087957600080fd5b806391d919a91161011357806391d919a91461072157806395d89b4114610741578063a457c2d714610756578063a87859f614610776578063a9059cbb146107a3578063aacebbe3146107c357600080fd5b806370d5ae051461066b578063715018a6146106895780637d1db4a51461069e57806388f82020146106b45780638da5cb5b146106ed5780638f9a55c01461070b57600080fd5b80633685d419116101fe57806349bd5a5e116101b757806349bd5a5e1461057b5780634a74bb02146105af57806350d4e15f146105d257806352390c02146105f25780635342acb41461061257806370a082311461064b57600080fd5b80633685d419146104a557806339509351146104c55780633bd5d173146104e5578063437823ec146105055780634549b03914610525578063470624021461054557600080fd5b80631f8d2779116102505780631f8d2779146103a057806323b872dd146103c05780632b14ca56146103e05780632d4103d6146104435780632d83811914610463578063313ce5671461048357600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630bd3a7f9146102fe57806313114a9d146103205780631694505e1461033f57806318160ddd1461038b57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b861098e565b6040516102c59190612cb9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612d26565b610a20565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031e610319366004612d52565b610a37565b005b34801561032c57600080fd5b50600b545b6040519081526020016102c5565b34801561034b57600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c5565b34801561039757600080fd5b50600954610331565b3480156103ac57600080fd5b5061031e6103bb366004612d85565b610a8e565b3480156103cc57600080fd5b506102ee6103db366004612dd9565b610b07565b3480156103ec57600080fd5b506012546104169060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102c5565b34801561044f57600080fd5b5061031e61045e366004612e2a565b610b70565b34801561046f57600080fd5b5061033161047e366004612e46565b610bff565b34801561048f57600080fd5b5060105460405160ff90911681526020016102c5565b3480156104b157600080fd5b5061031e6104c0366004612d52565b610c83565b3480156104d157600080fd5b506102ee6104e0366004612d26565b610e36565b3480156104f157600080fd5b5061031e610500366004612e46565b610e6c565b34801561051157600080fd5b5061031e610520366004612d52565b610f7a565b34801561053157600080fd5b50610331610540366004612e5f565b610fc8565b34801561055157600080fd5b506011546104169060ff808216916101008104821691620100008204811691630100000090041684565b34801561058757600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000000081565b3480156105bb57600080fd5b506013546102ee9065010000000000900460ff1681565b3480156105de57600080fd5b5061031e6105ed366004612e8b565b61106b565b3480156105fe57600080fd5b5061031e61060d366004612d52565b611112565b34801561061e57600080fd5b506102ee61062d366004612d52565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561065757600080fd5b50610331610666366004612d52565b611265565b34801561067757600080fd5b50600d546001600160a01b0316610373565b34801561069557600080fd5b5061031e6112c4565b3480156106aa57600080fd5b5061033160145481565b3480156106c057600080fd5b506102ee6106cf366004612d52565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106f957600080fd5b506000546001600160a01b0316610373565b34801561071757600080fd5b5061033160165481565b34801561072d57600080fd5b5061031e61073c366004612d52565b611338565b34801561074d57600080fd5b506102b8611383565b34801561076257600080fd5b506102ee610771366004612d26565b611392565b34801561078257600080fd5b50610331610791366004612d52565b601a6020526000908152604090205481565b3480156107af57600080fd5b506102ee6107be366004612d26565b6113e1565b3480156107cf57600080fd5b5061031e6107de366004612d52565b6113ee565b3480156107ef57600080fd5b5061031e6107fe366004612e46565b61143a565b34801561080f57600080fd5b5061033160185481565b34801561082557600080fd5b5061031e610834366004612f22565b61148b565b34801561084557600080fd5b50600c54610373906001600160a01b031681565b34801561086557600080fd5b5061031e610874366004612e46565b611511565b34801561088557600080fd5b506102ee610894366004612d52565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108be57600080fd5b506103316108cd366004612f3d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061031e610913366004612d52565b61155c565b34801561092457600080fd5b5061031e610933366004612e46565b6115a7565b34801561094457600080fd5b5061031e610953366004612d52565b6115d6565b34801561096457600080fd5b5061033160175481565b34801561097a57600080fd5b5061031e610989366004612d85565b6116c0565b6060600e805461099d90612f76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612f76565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2d3384846117fa565b5060015b92915050565b6000546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610a6190612fb1565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610a6190612fb1565b6012805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610b1484848461191e565b610b668433610b61856040518060600160405280602881526020016131be602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611d22565b6117fa565b5060019392505050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610a6190612fb1565b6019805460ff1916831515179055610bb130611112565b610bda7f0000000000000000000000000000000000000000000000000000000000000000611112565b60195460ff168015610bec5750601854155b15610bfb574360185560178190555b5050565b6000600a54821115610c665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a61565b6000610c70611d5c565b9050610c7c8382611739565b9392505050565b6000546001600160a01b03163314610cad5760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03811660009081526006602052604090205460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a61565b60005b600754811015610bfb57816001600160a01b031660078281548110610d3f57610d3f612fe6565b6000918252602090912001546001600160a01b03161415610e245760078054610d6a90600190613012565b81548110610d7a57610d7a612fe6565b600091825260209091200154600780546001600160a01b039092169183908110610da657610da6612fe6565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610dfe57610dfe613029565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e2e8161303f565b915050610d18565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a2d918590610b619086611d7f565b3360008181526006602052604090205460ff1615610ee15760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a61565b600080600080610ef086611dde565b9450945094509450506000610f108786868686610f0b611d5c565b611e5a565b50506001600160a01b038716600090815260026020526040902054909150610f389082611ece565b6001600160a01b038716600090815260026020526040902055600a54610f5e9082611ece565b600a55600b54610f6e9088611d7f565b600b5550505050505050565b6000546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600060095483111561101c5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a61565b60008060008061102b87611dde565b9450945094509450506000806110478987878787610f0b611d5c565b50915091508761105e57509450610a319350505050565b9550610a31945050505050565b6000546001600160a01b031633146110955760405162461bcd60e51b8152600401610a6190612fb1565b6011805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560128054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b0316331461113c5760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03811660009081526006602052604090205460ff16156111a55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a61565b6001600160a01b038116600090815260026020526040902054156111ff576001600160a01b0381166000908152600260205260409020546111e590610bff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156112a257506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610a3190610bff565b6000546001600160a01b031633146112ee5760405162461bcd60e51b8152600401610a6190612fb1565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113625760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600f805461099d90612f76565b6000610a2d3384610b61856040518060600160405280602581526020016131e6602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611d22565b6000610a2d33848461191e565b6000546001600160a01b031633146114185760405162461bcd60e51b8152600401610a6190612fb1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114645760405162461bcd60e51b8152600401610a6190612fb1565b6114856103e861147f8360095461177b90919063ffffffff16565b90611739565b60165550565b6000546001600160a01b031633146114b55760405162461bcd60e51b8152600401610a6190612fb1565b60138054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061150690831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461153b5760405162461bcd60e51b8152600401610a6190612fb1565b6115566103e861147f8360095461177b90919063ffffffff16565b60145550565b6000546001600160a01b031633146115865760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146115d15760405162461bcd60e51b8152600401610a6190612fb1565b601555565b6000546001600160a01b031633146116005760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b0381166116655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a61565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116ea5760405162461bcd60e51b8152600401610a6190612fb1565b6011805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610c7c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f10565b60008261178a57506000610a31565b6000611796838561305a565b9050826117a38583613079565b14610c7c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a61565b6001600160a01b03831661185c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a61565b6001600160a01b0382166118bd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a61565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119825760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a61565b6001600160a01b0382166119e45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a61565b60008111611a465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a61565b6000546001600160a01b03848116911614801590611a7257506000546001600160a01b03838116911614155b15611ac95760195460ff16611ac95760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a61565b6000611ad430611265565b90506014548110611ae457506014545b60155481108015908190611b035750601354640100000000900460ff16155b8015611b4157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611b58575060135465010000000000900460ff165b15611b6b576015549150611b6b82611f3e565b6001600160a01b03851660009081526005602052604090205460019060ff1680611bad57506001600160a01b03851660009081526005602052604090205460ff165b15611bb6575060005b8015611d0e576001600160a01b03861660009081526008602052604090205460ff16158015611bfe57506001600160a01b03851660009081526008602052604090205460ff16155b15611d0e57601454841115611c665760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a61565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611d0e57601654611cab86611265565b611cb5908661309b565b1115611d0e5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a61565b611d1a86868684612125565b505050505050565b60008184841115611d465760405162461bcd60e51b8152600401610a619190612cb9565b506000611d538486613012565b95945050505050565b6000806000611d696123bf565b9092509050611d788282611739565b9250505090565b600080611d8c838561309b565b905083811015610c7c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a61565b600080600080600080611df087612541565b90506000611dfd8861255c565b90506000611e0a8961257c565b90506000611e178a61259d565b90506000611e2f84611e298d88611ece565b90611ece565b9050611e3b8184611ece565b9050611e478183611ece565b9b949a5092985090965094509092505050565b6000808080611e698a8661177b565b90506000611e778a8761177b565b90506000611e858a8861177b565b90506000611e938a8961177b565b90506000611ea18a8a61177b565b90506000611eb782611e29858188818c8c611ece565b959f959e50939c50939a5050505050505050505050565b6000610c7c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d22565b60008183611f315760405162461bcd60e51b8152600401610a619190612cb9565b506000611d538486613079565b6013805464ff0000000019166401000000001790556012546011546000916201000080820460ff90811693918204811692611f869261010091829004831692919004166130b3565b611f9091906130b3565b611f9a91906130b3565b611fa59060026130d8565b60125460115460ff92831693506000928492611fce9261010091829004831692919004166130b3565b611fdb9060ff168561305a565b611fe59190613079565b90506000611ff38285613012565b905047611fff826125bf565b600061200b8247613012565b6012546011549192506000916120319160ff6101009182900481169291909104166130b3565b61203e9060ff1687613012565b6120489083613079565b60125460115491925060009161206e9160ff6101009182900481169291909104166130b3565b61207b9060ff168361305a565b9050801561208d5761208d8682612777565b6012546011546000916120b09160ff6201000092839004811692909104166130b3565b60ff166120be84600261305a565b6120c8919061305a565b9050801561210c57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561210a573d6000803e3d6000fd5b505b50506013805464ff000000001916905550505050505050565b80156122535761213d6013805463ffffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156121c8576011546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415612253576012546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561229457506001600160a01b03831660009081526006602052604090205460ff16155b156122a9576122a4848484612857565b6123a7565b6001600160a01b03841660009081526006602052604090205460ff161580156122ea57506001600160a01b03831660009081526006602052604090205460ff165b156122fa576122a48484846129a8565b6001600160a01b03841660009081526006602052604090205460ff1615801561233c57506001600160a01b03831660009081526006602052604090205460ff16155b1561234c576122a4848484612a68565b6001600160a01b03841660009081526006602052604090205460ff16801561238c57506001600160a01b03831660009081526006602052604090205460ff165b1561239c576122a4848484612ac3565b6123a7848484612a68565b6123b96013805463ffffffff19169055565b50505050565b600a546009546000918291825b600754811015612511578260026000600784815481106123ee576123ee612fe6565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612459575081600360006007848154811061243257612432612fe6565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561246f57600a54600954945094505050509091565b6124b5600260006007848154811061248957612489612fe6565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ece565b92506124fd60036000600784815481106124d1576124d1612fe6565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ece565b9150806125098161303f565b9150506123cc565b50600954600a5461252191611739565b82101561253857600a546009549350935050509091565b90939092509050565b601354600090610a319060649061147f90859060ff1661177b565b601354600090610a319060649061147f908590610100900460ff1661177b565b601354600090610a319060649061147f90859062010000900460ff1661177b565b601354600090610a319060649061147f9085906301000000900460ff1661177b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125f4576125f4612fe6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126969190613101565b816001815181106126a9576126a9612fe6565b60200260200101906001600160a01b031690816001600160a01b0316815250506126f4307f0000000000000000000000000000000000000000000000000000000000000000846117fa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061274990859060009086903090429060040161311e565b600060405180830381600087803b15801561276357600080fd5b505af1158015611d1a573d6000803e3d6000fd5b6127a2307f0000000000000000000000000000000000000000000000000000000000000000846117fa565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561282b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612850919061318f565b5050505050565b600080600080600061286886611dde565b9450945094509450945060008060006128878988888888610f0b611d5c565b6001600160a01b038e1660009081526003602052604090205492955090935091506128b2908a611ece565b6001600160a01b038c166000908152600360209081526040808320939093556002905220546128e19084611ece565b6001600160a01b03808d1660009081526002602052604080822093909355908c16815220546129109083611d7f565b6001600160a01b038b1660009081526002602052604090205561293286612b4d565b61293b85612b4d565b61294484612bd6565b61294e8188612c95565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161299391815260200190565b60405180910390a35050505050505050505050565b60008060008060006129b986611dde565b9450945094509450945060008060006129d88988888888610f0b611d5c565b6001600160a01b038e166000908152600260205260409020549295509093509150612a039084611ece565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612a399089611d7f565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546129109083611d7f565b6000806000806000612a7986611dde565b945094509450945094506000806000612a988988888888610f0b611d5c565b6001600160a01b038e1660009081526002602052604090205492955090935091506128e19084611ece565b6000806000806000612ad486611dde565b945094509450945094506000806000612af38988888888610f0b611d5c565b6001600160a01b038e166000908152600360205260409020549295509093509150612b1e908a611ece565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612a039084611ece565b6000612b57611d5c565b90506000612b65838361177b565b30600090815260026020526040902054909150612b829082611d7f565b3060009081526002602090815260408083209390935560069052205460ff1615612bd15730600090815260036020526040902054612bc09084611d7f565b306000908152600360205260409020555b505050565b6000612be0611d5c565b90506000612bee838361177b565b600d546001600160a01b0316600090815260026020526040902054909150612c169082611d7f565b600d80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612bd157600d546001600160a01b0316600090815260036020526040902054612c759084611d7f565b600d546001600160a01b0316600090815260036020526040902055505050565b600a54612ca29083611ece565b600a55600b54612cb29082611d7f565b600b555050565b600060208083528351808285015260005b81811015612ce657858101830151858201604001528201612cca565b81811115612cf8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612d2357600080fd5b50565b60008060408385031215612d3957600080fd5b8235612d4481612d0e565b946020939093013593505050565b600060208284031215612d6457600080fd5b8135610c7c81612d0e565b803560ff81168114612d8057600080fd5b919050565b60008060008060808587031215612d9b57600080fd5b612da485612d6f565b9350612db260208601612d6f565b9250612dc060408601612d6f565b9150612dce60608601612d6f565b905092959194509250565b600080600060608486031215612dee57600080fd5b8335612df981612d0e565b92506020840135612e0981612d0e565b929592945050506040919091013590565b80358015158114612d8057600080fd5b60008060408385031215612e3d57600080fd5b612d4483612e1a565b600060208284031215612e5857600080fd5b5035919050565b60008060408385031215612e7257600080fd5b82359150612e8260208401612e1a565b90509250929050565b600080600080600080600080610100898b031215612ea857600080fd5b612eb189612d6f565b9750612ebf60208a01612d6f565b9650612ecd60408a01612d6f565b9550612edb60608a01612d6f565b9450612ee960808a01612d6f565b9350612ef760a08a01612d6f565b9250612f0560c08a01612d6f565b9150612f1360e08a01612d6f565b90509295985092959890939650565b600060208284031215612f3457600080fd5b610c7c82612e1a565b60008060408385031215612f5057600080fd5b8235612f5b81612d0e565b91506020830135612f6b81612d0e565b809150509250929050565b600181811c90821680612f8a57607f821691505b60208210811415612fab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561302457613024612ffc565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561305357613053612ffc565b5060010190565b600081600019048311821515161561307457613074612ffc565b500290565b60008261309657634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130ae576130ae612ffc565b500190565b600060ff821660ff84168060ff038211156130d0576130d0612ffc565b019392505050565b600060ff821660ff84168160ff04811182151516156130f9576130f9612ffc565b029392505050565b60006020828403121561311357600080fd5b8151610c7c81612d0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561316e5784516001600160a01b031683529383019391830191600101613149565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131a457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122082c0833dcb6ab4922cb60570dfb8f22211b2deae26778122639aa24c0c1046ab64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102975760003560e01c806370d5ae051161015a578063af2ce614116100c1578063dd62ed3e1161007a578063dd62ed3e146108b2578063ea2f0b37146108f8578063f0f165af14610918578063f2fde38b14610938578063fabb0b4f14610958578063fe63178f1461096e57600080fd5b8063af2ce614146107e3578063bf56b37114610803578063c49b9a8014610819578063caac793414610839578063d543dbeb14610859578063d94160e01461087957600080fd5b806391d919a91161011357806391d919a91461072157806395d89b4114610741578063a457c2d714610756578063a87859f614610776578063a9059cbb146107a3578063aacebbe3146107c357600080fd5b806370d5ae051461066b578063715018a6146106895780637d1db4a51461069e57806388f82020146106b45780638da5cb5b146106ed5780638f9a55c01461070b57600080fd5b80633685d419116101fe57806349bd5a5e116101b757806349bd5a5e1461057b5780634a74bb02146105af57806350d4e15f146105d257806352390c02146105f25780635342acb41461061257806370a082311461064b57600080fd5b80633685d419146104a557806339509351146104c55780633bd5d173146104e5578063437823ec146105055780634549b03914610525578063470624021461054557600080fd5b80631f8d2779116102505780631f8d2779146103a057806323b872dd146103c05780632b14ca56146103e05780632d4103d6146104435780632d83811914610463578063313ce5671461048357600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630bd3a7f9146102fe57806313114a9d146103205780631694505e1461033f57806318160ddd1461038b57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b861098e565b6040516102c59190612cb9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612d26565b610a20565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031e610319366004612d52565b610a37565b005b34801561032c57600080fd5b50600b545b6040519081526020016102c5565b34801561034b57600080fd5b506103737f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c5565b34801561039757600080fd5b50600954610331565b3480156103ac57600080fd5b5061031e6103bb366004612d85565b610a8e565b3480156103cc57600080fd5b506102ee6103db366004612dd9565b610b07565b3480156103ec57600080fd5b506012546104169060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102c5565b34801561044f57600080fd5b5061031e61045e366004612e2a565b610b70565b34801561046f57600080fd5b5061033161047e366004612e46565b610bff565b34801561048f57600080fd5b5060105460405160ff90911681526020016102c5565b3480156104b157600080fd5b5061031e6104c0366004612d52565b610c83565b3480156104d157600080fd5b506102ee6104e0366004612d26565b610e36565b3480156104f157600080fd5b5061031e610500366004612e46565b610e6c565b34801561051157600080fd5b5061031e610520366004612d52565b610f7a565b34801561053157600080fd5b50610331610540366004612e5f565b610fc8565b34801561055157600080fd5b506011546104169060ff808216916101008104821691620100008204811691630100000090041684565b34801561058757600080fd5b506103737f000000000000000000000000dd3aa896db7e6dcb84fad9b1dfedbbe46b5a6d8181565b3480156105bb57600080fd5b506013546102ee9065010000000000900460ff1681565b3480156105de57600080fd5b5061031e6105ed366004612e8b565b61106b565b3480156105fe57600080fd5b5061031e61060d366004612d52565b611112565b34801561061e57600080fd5b506102ee61062d366004612d52565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561065757600080fd5b50610331610666366004612d52565b611265565b34801561067757600080fd5b50600d546001600160a01b0316610373565b34801561069557600080fd5b5061031e6112c4565b3480156106aa57600080fd5b5061033160145481565b3480156106c057600080fd5b506102ee6106cf366004612d52565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106f957600080fd5b506000546001600160a01b0316610373565b34801561071757600080fd5b5061033160165481565b34801561072d57600080fd5b5061031e61073c366004612d52565b611338565b34801561074d57600080fd5b506102b8611383565b34801561076257600080fd5b506102ee610771366004612d26565b611392565b34801561078257600080fd5b50610331610791366004612d52565b601a6020526000908152604090205481565b3480156107af57600080fd5b506102ee6107be366004612d26565b6113e1565b3480156107cf57600080fd5b5061031e6107de366004612d52565b6113ee565b3480156107ef57600080fd5b5061031e6107fe366004612e46565b61143a565b34801561080f57600080fd5b5061033160185481565b34801561082557600080fd5b5061031e610834366004612f22565b61148b565b34801561084557600080fd5b50600c54610373906001600160a01b031681565b34801561086557600080fd5b5061031e610874366004612e46565b611511565b34801561088557600080fd5b506102ee610894366004612d52565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108be57600080fd5b506103316108cd366004612f3d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061031e610913366004612d52565b61155c565b34801561092457600080fd5b5061031e610933366004612e46565b6115a7565b34801561094457600080fd5b5061031e610953366004612d52565b6115d6565b34801561096457600080fd5b5061033160175481565b34801561097a57600080fd5b5061031e610989366004612d85565b6116c0565b6060600e805461099d90612f76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612f76565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2d3384846117fa565b5060015b92915050565b6000546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610a6190612fb1565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610a6190612fb1565b6012805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610b1484848461191e565b610b668433610b61856040518060600160405280602881526020016131be602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611d22565b6117fa565b5060019392505050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610a6190612fb1565b6019805460ff1916831515179055610bb130611112565b610bda7f000000000000000000000000dd3aa896db7e6dcb84fad9b1dfedbbe46b5a6d81611112565b60195460ff168015610bec5750601854155b15610bfb574360185560178190555b5050565b6000600a54821115610c665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a61565b6000610c70611d5c565b9050610c7c8382611739565b9392505050565b6000546001600160a01b03163314610cad5760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03811660009081526006602052604090205460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a61565b60005b600754811015610bfb57816001600160a01b031660078281548110610d3f57610d3f612fe6565b6000918252602090912001546001600160a01b03161415610e245760078054610d6a90600190613012565b81548110610d7a57610d7a612fe6565b600091825260209091200154600780546001600160a01b039092169183908110610da657610da6612fe6565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610dfe57610dfe613029565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e2e8161303f565b915050610d18565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a2d918590610b619086611d7f565b3360008181526006602052604090205460ff1615610ee15760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a61565b600080600080610ef086611dde565b9450945094509450506000610f108786868686610f0b611d5c565b611e5a565b50506001600160a01b038716600090815260026020526040902054909150610f389082611ece565b6001600160a01b038716600090815260026020526040902055600a54610f5e9082611ece565b600a55600b54610f6e9088611d7f565b600b5550505050505050565b6000546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600060095483111561101c5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a61565b60008060008061102b87611dde565b9450945094509450506000806110478987878787610f0b611d5c565b50915091508761105e57509450610a319350505050565b9550610a31945050505050565b6000546001600160a01b031633146110955760405162461bcd60e51b8152600401610a6190612fb1565b6011805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560128054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b0316331461113c5760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03811660009081526006602052604090205460ff16156111a55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a61565b6001600160a01b038116600090815260026020526040902054156111ff576001600160a01b0381166000908152600260205260409020546111e590610bff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156112a257506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610a3190610bff565b6000546001600160a01b031633146112ee5760405162461bcd60e51b8152600401610a6190612fb1565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113625760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600f805461099d90612f76565b6000610a2d3384610b61856040518060600160405280602581526020016131e6602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611d22565b6000610a2d33848461191e565b6000546001600160a01b031633146114185760405162461bcd60e51b8152600401610a6190612fb1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114645760405162461bcd60e51b8152600401610a6190612fb1565b6114856103e861147f8360095461177b90919063ffffffff16565b90611739565b60165550565b6000546001600160a01b031633146114b55760405162461bcd60e51b8152600401610a6190612fb1565b60138054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061150690831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461153b5760405162461bcd60e51b8152600401610a6190612fb1565b6115566103e861147f8360095461177b90919063ffffffff16565b60145550565b6000546001600160a01b031633146115865760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146115d15760405162461bcd60e51b8152600401610a6190612fb1565b601555565b6000546001600160a01b031633146116005760405162461bcd60e51b8152600401610a6190612fb1565b6001600160a01b0381166116655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a61565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116ea5760405162461bcd60e51b8152600401610a6190612fb1565b6011805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610c7c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f10565b60008261178a57506000610a31565b6000611796838561305a565b9050826117a38583613079565b14610c7c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a61565b6001600160a01b03831661185c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a61565b6001600160a01b0382166118bd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a61565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119825760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a61565b6001600160a01b0382166119e45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a61565b60008111611a465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a61565b6000546001600160a01b03848116911614801590611a7257506000546001600160a01b03838116911614155b15611ac95760195460ff16611ac95760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a61565b6000611ad430611265565b90506014548110611ae457506014545b60155481108015908190611b035750601354640100000000900460ff16155b8015611b4157507f000000000000000000000000dd3aa896db7e6dcb84fad9b1dfedbbe46b5a6d816001600160a01b0316856001600160a01b031614155b8015611b58575060135465010000000000900460ff165b15611b6b576015549150611b6b82611f3e565b6001600160a01b03851660009081526005602052604090205460019060ff1680611bad57506001600160a01b03851660009081526005602052604090205460ff165b15611bb6575060005b8015611d0e576001600160a01b03861660009081526008602052604090205460ff16158015611bfe57506001600160a01b03851660009081526008602052604090205460ff16155b15611d0e57601454841115611c665760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a61565b7f000000000000000000000000dd3aa896db7e6dcb84fad9b1dfedbbe46b5a6d816001600160a01b0316856001600160a01b031614611d0e57601654611cab86611265565b611cb5908661309b565b1115611d0e5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a61565b611d1a86868684612125565b505050505050565b60008184841115611d465760405162461bcd60e51b8152600401610a619190612cb9565b506000611d538486613012565b95945050505050565b6000806000611d696123bf565b9092509050611d788282611739565b9250505090565b600080611d8c838561309b565b905083811015610c7c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a61565b600080600080600080611df087612541565b90506000611dfd8861255c565b90506000611e0a8961257c565b90506000611e178a61259d565b90506000611e2f84611e298d88611ece565b90611ece565b9050611e3b8184611ece565b9050611e478183611ece565b9b949a5092985090965094509092505050565b6000808080611e698a8661177b565b90506000611e778a8761177b565b90506000611e858a8861177b565b90506000611e938a8961177b565b90506000611ea18a8a61177b565b90506000611eb782611e29858188818c8c611ece565b959f959e50939c50939a5050505050505050505050565b6000610c7c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d22565b60008183611f315760405162461bcd60e51b8152600401610a619190612cb9565b506000611d538486613079565b6013805464ff0000000019166401000000001790556012546011546000916201000080820460ff90811693918204811692611f869261010091829004831692919004166130b3565b611f9091906130b3565b611f9a91906130b3565b611fa59060026130d8565b60125460115460ff92831693506000928492611fce9261010091829004831692919004166130b3565b611fdb9060ff168561305a565b611fe59190613079565b90506000611ff38285613012565b905047611fff826125bf565b600061200b8247613012565b6012546011549192506000916120319160ff6101009182900481169291909104166130b3565b61203e9060ff1687613012565b6120489083613079565b60125460115491925060009161206e9160ff6101009182900481169291909104166130b3565b61207b9060ff168361305a565b9050801561208d5761208d8682612777565b6012546011546000916120b09160ff6201000092839004811692909104166130b3565b60ff166120be84600261305a565b6120c8919061305a565b9050801561210c57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561210a573d6000803e3d6000fd5b505b50506013805464ff000000001916905550505050505050565b80156122535761213d6013805463ffffffff19169055565b7f000000000000000000000000dd3aa896db7e6dcb84fad9b1dfedbbe46b5a6d816001600160a01b0316846001600160a01b031614156121c8576011546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f000000000000000000000000dd3aa896db7e6dcb84fad9b1dfedbbe46b5a6d816001600160a01b0316836001600160a01b03161415612253576012546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561229457506001600160a01b03831660009081526006602052604090205460ff16155b156122a9576122a4848484612857565b6123a7565b6001600160a01b03841660009081526006602052604090205460ff161580156122ea57506001600160a01b03831660009081526006602052604090205460ff165b156122fa576122a48484846129a8565b6001600160a01b03841660009081526006602052604090205460ff1615801561233c57506001600160a01b03831660009081526006602052604090205460ff16155b1561234c576122a4848484612a68565b6001600160a01b03841660009081526006602052604090205460ff16801561238c57506001600160a01b03831660009081526006602052604090205460ff165b1561239c576122a4848484612ac3565b6123a7848484612a68565b6123b96013805463ffffffff19169055565b50505050565b600a546009546000918291825b600754811015612511578260026000600784815481106123ee576123ee612fe6565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612459575081600360006007848154811061243257612432612fe6565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561246f57600a54600954945094505050509091565b6124b5600260006007848154811061248957612489612fe6565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ece565b92506124fd60036000600784815481106124d1576124d1612fe6565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ece565b9150806125098161303f565b9150506123cc565b50600954600a5461252191611739565b82101561253857600a546009549350935050509091565b90939092509050565b601354600090610a319060649061147f90859060ff1661177b565b601354600090610a319060649061147f908590610100900460ff1661177b565b601354600090610a319060649061147f90859062010000900460ff1661177b565b601354600090610a319060649061147f9085906301000000900460ff1661177b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125f4576125f4612fe6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126969190613101565b816001815181106126a9576126a9612fe6565b60200260200101906001600160a01b031690816001600160a01b0316815250506126f4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117fa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061274990859060009086903090429060040161311e565b600060405180830381600087803b15801561276357600080fd5b505af1158015611d1a573d6000803e3d6000fd5b6127a2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117fa565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561282b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612850919061318f565b5050505050565b600080600080600061286886611dde565b9450945094509450945060008060006128878988888888610f0b611d5c565b6001600160a01b038e1660009081526003602052604090205492955090935091506128b2908a611ece565b6001600160a01b038c166000908152600360209081526040808320939093556002905220546128e19084611ece565b6001600160a01b03808d1660009081526002602052604080822093909355908c16815220546129109083611d7f565b6001600160a01b038b1660009081526002602052604090205561293286612b4d565b61293b85612b4d565b61294484612bd6565b61294e8188612c95565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161299391815260200190565b60405180910390a35050505050505050505050565b60008060008060006129b986611dde565b9450945094509450945060008060006129d88988888888610f0b611d5c565b6001600160a01b038e166000908152600260205260409020549295509093509150612a039084611ece565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612a399089611d7f565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546129109083611d7f565b6000806000806000612a7986611dde565b945094509450945094506000806000612a988988888888610f0b611d5c565b6001600160a01b038e1660009081526002602052604090205492955090935091506128e19084611ece565b6000806000806000612ad486611dde565b945094509450945094506000806000612af38988888888610f0b611d5c565b6001600160a01b038e166000908152600360205260409020549295509093509150612b1e908a611ece565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612a039084611ece565b6000612b57611d5c565b90506000612b65838361177b565b30600090815260026020526040902054909150612b829082611d7f565b3060009081526002602090815260408083209390935560069052205460ff1615612bd15730600090815260036020526040902054612bc09084611d7f565b306000908152600360205260409020555b505050565b6000612be0611d5c565b90506000612bee838361177b565b600d546001600160a01b0316600090815260026020526040902054909150612c169082611d7f565b600d80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612bd157600d546001600160a01b0316600090815260036020526040902054612c759084611d7f565b600d546001600160a01b0316600090815260036020526040902055505050565b600a54612ca29083611ece565b600a55600b54612cb29082611d7f565b600b555050565b600060208083528351808285015260005b81811015612ce657858101830151858201604001528201612cca565b81811115612cf8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612d2357600080fd5b50565b60008060408385031215612d3957600080fd5b8235612d4481612d0e565b946020939093013593505050565b600060208284031215612d6457600080fd5b8135610c7c81612d0e565b803560ff81168114612d8057600080fd5b919050565b60008060008060808587031215612d9b57600080fd5b612da485612d6f565b9350612db260208601612d6f565b9250612dc060408601612d6f565b9150612dce60608601612d6f565b905092959194509250565b600080600060608486031215612dee57600080fd5b8335612df981612d0e565b92506020840135612e0981612d0e565b929592945050506040919091013590565b80358015158114612d8057600080fd5b60008060408385031215612e3d57600080fd5b612d4483612e1a565b600060208284031215612e5857600080fd5b5035919050565b60008060408385031215612e7257600080fd5b82359150612e8260208401612e1a565b90509250929050565b600080600080600080600080610100898b031215612ea857600080fd5b612eb189612d6f565b9750612ebf60208a01612d6f565b9650612ecd60408a01612d6f565b9550612edb60608a01612d6f565b9450612ee960808a01612d6f565b9350612ef760a08a01612d6f565b9250612f0560c08a01612d6f565b9150612f1360e08a01612d6f565b90509295985092959890939650565b600060208284031215612f3457600080fd5b610c7c82612e1a565b60008060408385031215612f5057600080fd5b8235612f5b81612d0e565b91506020830135612f6b81612d0e565b809150509250929050565b600181811c90821680612f8a57607f821691505b60208210811415612fab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561302457613024612ffc565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561305357613053612ffc565b5060010190565b600081600019048311821515161561307457613074612ffc565b500290565b60008261309657634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130ae576130ae612ffc565b500190565b600060ff821660ff84168060ff038211156130d0576130d0612ffc565b019392505050565b600060ff821660ff84168160ff04811182151516156130f9576130f9612ffc565b029392505050565b60006020828403121561311357600080fd5b8151610c7c81612d0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561316e5784516001600160a01b031683529383019391830191600101613149565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131a457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122082c0833dcb6ab4922cb60570dfb8f22211b2deae26778122639aa24c0c1046ab64736f6c634300080a0033

Deployed Bytecode Sourcemap

25186:26884:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28713:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29698:193;;;;;;;;;;-1:-1:-1;29698:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;29698:193:0;1072:187:1;34401:115:0;;;;;;;;;;-1:-1:-1;34401:115:0;;;;;:::i;:::-;;:::i;:::-;;31197:87;;;;;;;;;;-1:-1:-1;31266:10:0;;31197:87;;;1662:25:1;;;1650:2;1635:18;31197:87:0;1516:177:1;26644:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;26644:51:0;1698:230:1;28990:95:0;;;;;;;;;;-1:-1:-1;29070:7:0;;28990:95;;34646:306;;;;;;;;;;-1:-1:-1;34646:306:0;;;;;:::i;:::-;;:::i;29899:446::-;;;;;;;;;;-1:-1:-1;29899:446:0;;;;;:::i;:::-;;:::i;26479:22::-;;;;;;;;;;-1:-1:-1;26479: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;26479:22:0;2953:419:1;51730:337:0;;;;;;;;;;-1:-1:-1;51730:337:0;;;;;:::i;:::-;;:::i;32876:322::-;;;;;;;;;;-1:-1:-1;32876:322:0;;;;;:::i;:::-;;:::i;28899:83::-;;;;;;;;;;-1:-1:-1;28965:9:0;;28899:83;;28965:9;;;;4122:36:1;;4110:2;4095:18;28899:83:0;3980:184:1;33683:473:0;;;;;;;;;;-1:-1:-1;33683:473:0;;;;;:::i;:::-;;:::i;30353:300::-;;;;;;;;;;-1:-1:-1;30353:300:0;;;;;:::i;:::-;;:::i;31391:731::-;;;;;;;;;;-1:-1:-1;31391:731:0;;;;;:::i;:::-;;:::i;34164:111::-;;;;;;;;;;-1:-1:-1;34164:111:0;;;;;:::i;:::-;;:::i;32130:738::-;;;;;;;;;;-1:-1:-1;32130:738:0;;;;;:::i;:::-;;:::i;26452:20::-;;;;;;;;;;-1:-1:-1;26452:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26702:38;;;;;;;;;;;;;;;26777:40;;;;;;;;;;-1:-1:-1;26777:40:0;;;;;;;;;;;35269:645;;;;;;;;;;-1:-1:-1;35269:645:0;;;;;:::i;:::-;;:::i;33343:332::-;;;;;;;;;;-1:-1:-1;33343:332:0;;;;;:::i;:::-;;:::i;41476:124::-;;;;;;;;;;-1:-1:-1;41476:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;41565:27:0;41541:4;41565:27;;;:18;:27;;;;;;;;;41476:124;29093:198;;;;;;;;;;-1:-1:-1;29093:198:0;;;;;:::i;:::-;;:::i;31292:91::-;;;;;;;;;;-1:-1:-1;31363:12:0;;-1:-1:-1;;;;;31363:12:0;31292:91;;15250:148;;;;;;;;;;;;;:::i;26826:56::-;;;;;;;;;;;;;;;;31069:120;;;;;;;;;;-1:-1:-1;31069:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;31161:20:0;31137:4;31161:20;;;:11;:20;;;;;;;;;31069:120;14608:79;;;;;;;;;;-1:-1:-1;14646:7:0;14673:6;-1:-1:-1;;;;;14673:6:0;14608:79;;26970:58;;;;;;;;;;;;;;;;34524:114;;;;;;;;;;-1:-1:-1;34524:114:0;;;;;:::i;:::-;;:::i;28804:87::-;;;;;;;;;;;;;:::i;30661:400::-;;;;;;;;;;-1:-1:-1;30661:400:0;;;;;:::i;:::-;;:::i;27521:46::-;;;;;;;;;;-1:-1:-1;27521:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29299:199;;;;;;;;;;-1:-1:-1;29299:199:0;;;;;:::i;:::-;;:::i;33208:127::-;;;;;;;;;;-1:-1:-1;33208:127:0;;;;;:::i;:::-;;:::i;36214:172::-;;;;;;;;;;-1:-1:-1;36214:172:0;;;;;:::i;:::-;;:::i;27452:29::-;;;;;;;;;;;;;;;;36394:171;;;;;;;;;;-1:-1:-1;36394:171:0;;;;;:::i;:::-;;:::i;25883:103::-;;;;;;;;;;-1:-1:-1;25883:103:0;;;;-1:-1:-1;;;;;25883:103:0;;;36070:136;;;;;;;;;;-1:-1:-1;36070:136:0;;;;;:::i;:::-;;:::i;41608:128::-;;;;;;;;;;-1:-1:-1;41608:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;41699:29:0;41675:4;41699:29;;;:20;:29;;;;;;;;;41608:128;29506:184;;;;;;;;;;-1:-1:-1;29506:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29655:18:0;;;29623:7;29655:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29506:184;34283:110;;;;;;;;;;-1:-1:-1;34283:110:0;;;;;:::i;:::-;;:::i;35922:140::-;;;;;;;;;;-1:-1:-1;35922:140:0;;;;;:::i;:::-;;:::i;15553:281::-;;;;;;;;;;-1:-1:-1;15553:281:0;;;;;:::i;:::-;;:::i;27416:29::-;;;;;;;;;;;;;;;;34960:301;;;;;;;;;;-1:-1:-1;34960:301:0;;;;;:::i;:::-;;:::i;28713:83::-;28750:13;28783:5;28776:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28713:83;:::o;29698:193::-;29800:4;29822:39;7452:10;29845:7;29854:6;29822:8;:39::i;:::-;-1:-1:-1;29879:4:0;29698:193;;;;;:::o;34401:115::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34472:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;34472:36:0::1;34504:4;34472:36;::::0;;34401:115::o;34646:306::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;34803:7:::1;:31:::0;;::::1;34925:19:::0;;::::1;::::0;::::1;-1:-1:-1::0;;34885:29:0;;::::1;34803:31;34885:29;34925:19:::0;;;;-1:-1:-1;;34845:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;34845:29:0;;;34803:31;;;::::1;34845:29:::0;;;;;;;::::1;34925:19:::0;;;;;;;;::::1;::::0;;34646:306::o;29899:446::-;30031:4;30048:36;30058:6;30066:9;30077:6;30048:9;:36::i;:::-;30095:220;30118:6;7452:10;30166:138;30222:6;30166:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30166:19:0;;;;;;:11;:19;;;;;;;;7452:10;30166:33;;;;;;;;;;:37;:138::i;:::-;30095:8;:220::i;:::-;-1:-1:-1;30333:4:0;29899:446;;;;;:::o;51730:337::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;51817:11:::1;:21:::0;;-1:-1:-1;;51817:21:0::1;::::0;::::1;;;::::0;;51849:32:::1;51875:4;51849:17;:32::i;:::-;51892;51910:13;51892:17;:32::i;:::-;51938:11;::::0;::::1;;:30:::0;::::1;;;-1:-1:-1::0;51953:10:0::1;::::0;:15;51938:30:::1;51935:125;;;51997:12;51984:10;:25:::0;52024:10:::1;:24:::0;;;51935:125:::1;51730:337:::0;;:::o;32876:322::-;32970:7;33028;;33017;:18;;32995:110;;;;-1:-1:-1;;;32995:110:0;;7322:2:1;32995: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;;32995:110:0;7120:406:1;32995:110:0;33116:19;33138:10;:8;:10::i;:::-;33116:32;-1:-1:-1;33166:24:0;:7;33116:32;33166:11;:24::i;:::-;33159:31;32876:322;-1:-1:-1;;;32876:322:0:o;33683:473::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33763:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33755:56;;;::::0;-1:-1:-1;;;33755:56:0;;7733:2:1;33755:56:0::1;::::0;::::1;7715:21:1::0;7772:2;7752:18;;;7745:30;7811:25;7791:18;;;7784:53;7854:18;;33755:56:0::1;7531:347:1::0;33755:56:0::1;33827:9;33822:327;33846:9;:16:::0;33842:20;::::1;33822:327;;;33904:7;-1:-1:-1::0;;;;;33888:23:0::1;:9;33898:1;33888:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33888:12:0::1;:23;33884:254;;;33947:9;33957:16:::0;;:20:::1;::::0;33976:1:::1;::::0;33957:20:::1;:::i;:::-;33947:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33932:9:::1;:12:::0;;-1:-1:-1;;;;;33947:31:0;;::::1;::::0;33942:1;;33932:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33932:46:0::1;-1:-1:-1::0;;;;;33932:46:0;;::::1;;::::0;;33997:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34036:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34036:28:0::1;::::0;;34083:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34083:15:0;;;;;-1:-1:-1;;;;;;34083:15:0::1;::::0;;;;;51730:337;;:::o;33884:254::-:1;33864:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33822:327;;30353:300:::0;7452:10;30468:4;30562:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30562:34:0;;;;;;;;;;30468:4;;30490:133;;30540:7;;30562:50;;30601:10;30562:38;:50::i;31391:731::-;7452:10;31443:14;31506:19;;;:11;:19;;;;;;;;31505:20;31483:114;;;;-1:-1:-1;;;31483:114:0;;8751:2:1;31483: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;;31483:114:0;8549:408:1;31483:114:0;31640:12;31667:18;31700:15;31730:13;31757:20;31769:7;31757:11;:20::i;:::-;31610:167;;;;;;;;;31789:15;31812:155;31838:7;31860:4;31879:10;31904:7;31926:5;31946:10;:8;:10::i;:::-;31812:11;:155::i;:::-;-1:-1:-1;;;;;;;31998:15:0;;;;;;:7;:15;;;;;;31788:179;;-1:-1:-1;31998:28:0;;31788:179;31998:19;:28::i;:::-;-1:-1:-1;;;;;31980:15:0;;;;;;:7;:15;;;;;:46;32047:7;;:20;;32059:7;32047:11;:20::i;:::-;32037:7;:30;32091:10;;:23;;32106:7;32091:14;:23::i;:::-;32078:10;:36;-1:-1:-1;;;;;;;31391:731:0:o;34164:111::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34233:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34233:34:0::1;34263:4;34233:34;::::0;;34164:111::o;32130:738::-;32248:7;32292;;32281;:18;;32273:62;;;;-1:-1:-1;;;32273:62:0;;9164:2:1;32273:62:0;;;9146:21:1;9203:2;9183:18;;;9176:30;9242:33;9222:18;;;9215:61;9293:18;;32273:62:0;8962:355:1;32273:62:0;32378:12;32405:18;32438:15;32468:13;32495:20;32507:7;32495:11;:20::i;:::-;32348:167;;;;;;;;;32527:15;32544:23;32573:155;32599:7;32621:4;32640:10;32665:7;32687:5;32707:10;:8;:10::i;32573:155::-;32526:202;;;;;32746:17;32741:120;;-1:-1:-1;32787:7:0;-1:-1:-1;32780:14:0;;-1:-1:-1;;;;32780:14:0;32741:120;32834:15;-1:-1:-1;32827:22:0;;-1:-1:-1;;;;;32827:22:0;35269:645;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;35565:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;35610:32:0;;;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;35706:22:0;;;35565:34:::1;35653:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;35706:22:0;;;;;;;;;;::::1;::::0;::::1;;::::0;;;35741:7:::1;:36:::0;;;;::::1;35788:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;35882:24:::0;;;35833:34;;::::1;::::0;;::::1;35882:24:::0;;;;;;;;;;::::1;::::0;;::::1;;::::0;;35269:645::o;33343:332::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33424:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33423:21;33415:61;;;::::0;-1:-1:-1;;;33415:61:0;;9524:2:1;33415:61:0::1;::::0;::::1;9506:21:1::0;9563:2;9543:18;;;9536:30;9602:29;9582:18;;;9575:57;9649:18;;33415:61:0::1;9322:351:1::0;33415:61:0::1;-1:-1:-1::0;;;;;33491:16:0;::::1;33510:1;33491:16:::0;;;:7:::1;:16;::::0;;;;;:20;33487:109:::1;;-1:-1:-1::0;;;;;33567:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33547:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33528:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33487:109:::1;-1:-1:-1::0;;;;;33606:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33606:27:0::1;33629:4;33606:27:::0;;::::1;::::0;;;33644:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33644:23:0::1;::::0;;::::1;::::0;;33343:332::o;29093:198::-;-1:-1:-1;;;;;29183:20:0;;29159:7;29183:20;;;:11;:20;;;;;;;;29179:49;;;-1:-1:-1;;;;;;29212:16:0;;;;;:7;:16;;;;;;;29093:198::o;29179:49::-;-1:-1:-1;;;;;29266:16:0;;;;;;:7;:16;;;;;;29246:37;;:19;:37::i;15250:148::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;15357:1:::1;15341:6:::0;;15320:40:::1;::::0;-1:-1:-1;;;;;15341:6:0;;::::1;::::0;15320:40:::1;::::0;15357:1;;15320:40:::1;15388:1;15371:19:::0;;-1:-1:-1;;;;;;15371:19:0::1;::::0;;15250:148::o;34524:114::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34593:29:0::1;34625:5;34593:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;34593:37:0::1;::::0;;34524:114::o;28804:87::-;28843:13;28876:7;28869:14;;;;;:::i;30661:400::-;30781:4;30803:228;7452:10;30853:7;30875:145;30932:15;30875:145;;;;;;;;;;;;;;;;;7452:10;30875:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30875:34:0;;;;;;;;;;;;:38;:145::i;29299:199::-;29404:4;29426:42;7452:10;29450:9;29461:6;29426:9;:42::i;33208:127::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;33297:17:::1;:30:::0;;-1:-1:-1;;;;;;33297:30:0::1;-1:-1:-1::0;;;;;33297:30:0;;;::::1;::::0;;;::::1;::::0;;33208:127::o;36214:172::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;36341:37:::1;36372:5;36341:26;36353:13;36341:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;36324:14;:54:::0;-1:-1:-1;36214:172:0:o;36394:171::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;36471:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36471:32:0;;::::1;;::::0;;36519:38:::1;::::0;::::1;::::0;::::1;::::0;36495:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;36519:38:0::1;;;;;;;;36394:171:::0;:::o;36070:136::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;36162:36:::1;36192:5;36162:25;36174:12;36162:7;;:11;;:25;;;;:::i;:36::-;36147:12;:51:::0;-1:-1:-1;36070:136:0:o;34283:110::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34350:27:0::1;34380:5;34350:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34350:35:0::1;::::0;;34283:110::o;35922:140::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;36013:29:::1;:41:::0;35922:140::o;15553:281::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15656:22:0;::::1;15634:110;;;::::0;-1:-1:-1;;;15634:110:0;;9880:2:1;15634: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;;15634:110:0::1;9678:402:1::0;15634:110:0::1;15781:6;::::0;;15760:38:::1;::::0;-1:-1:-1;;;;;15760:38:0;;::::1;::::0;15781:6;::::1;::::0;15760:38:::1;::::0;::::1;15809:6;:17:::0;;-1:-1:-1;;;;;;15809:17:0::1;-1:-1:-1::0;;;;;15809:17:0;;;::::1;::::0;;;::::1;::::0;;15553:281::o;34960:301::-;14820:6;;-1:-1:-1;;;;;14820:6:0;7452:10;14820:22;14812:67;;;;-1:-1:-1;;;14812:67:0;;;;;;;:::i;:::-;35116:6:::1;:30:::0;;::::1;35235:18:::0;;::::1;::::0;::::1;-1:-1:-1::0;;35196:28:0;;::::1;35116:30;35196:28;35235:18:::0;;;;-1:-1:-1;;35157:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;35157:28:0;;;35116:30;;;::::1;35157:28:::0;;;;;;;::::1;35235:18:::0;;;;;;;;::::1;::::0;;34960:301::o;5096:132::-;5154:7;5181:39;5185:1;5188;5181:39;;;;;;;;;;;;;;;;;:3;:39::i;4601:252::-;4659:7;4685:6;4681:47;;-1:-1:-1;4715:1:0;4708:8;;4681:47;4740:9;4752:5;4756:1;4752;:5;:::i;:::-;4740:17;-1:-1:-1;4785:1:0;4776:5;4780:1;4740:17;4776:5;:::i;:::-;:10;4768:56;;;;-1:-1:-1;;;4768:56:0;;10682:2:1;4768: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;;4768:56:0;10480:397:1;41744:371:0;-1:-1:-1;;;;;41871:19:0;;41863:68;;;;-1:-1:-1;;;41863:68:0;;11084:2:1;41863: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;;41863:68:0;10882:400:1;41863:68:0;-1:-1:-1;;;;;41950:21:0;;41942:68;;;;-1:-1:-1;;;41942:68:0;;11489:2:1;41942: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;;41942:68:0;11287:398:1;41942:68:0;-1:-1:-1;;;;;42023:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42075:32;;1662:25:1;;;42075:32:0;;1635:18:1;42075:32:0;;;;;;;41744:371;;;:::o;42123:2349::-;-1:-1:-1;;;;;42245:18:0;;42237:68;;;;-1:-1:-1;;;42237:68:0;;11892:2:1;42237: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;;42237:68:0;11690:401:1;42237:68:0;-1:-1:-1;;;;;42324:16:0;;42316:64;;;;-1:-1:-1;;;42316:64:0;;12298:2:1;42316: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;;42316:64:0;12096:399:1;42316:64:0;42408:1;42399:6;:10;42391:64;;;;-1:-1:-1;;;42391:64:0;;12702:2:1;42391: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;;42391:64:0;12500:405:1;42391:64:0;14646:7;14673:6;-1:-1:-1;;;;;42481:15:0;;;14673:6;;42481:15;;;;:32;;-1:-1:-1;14646:7:0;14673:6;-1:-1:-1;;;;;42500:13:0;;;14673:6;;42500:13;;42481:32;42476:88;;;42524:11;;;;42516:48;;;;-1:-1:-1;;;42516:48:0;;13112:2:1;42516:48:0;;;13094:21:1;13151:2;13131:18;;;13124:30;13190:26;13170:18;;;13163:54;13234:18;;42516:48:0;12910:348:1;42516:48:0;42899:28;42930:24;42948:4;42930:9;:24::i;:::-;42899:55;;42995:12;;42971:20;:36;42967:104;;-1:-1:-1;43047:12:0;;42967:104;43147:29;;43110:66;;;;;;;43205:53;;-1:-1:-1;43242:16:0;;;;;;;43241:17;43205:53;:91;;;;;43283:13;-1:-1:-1;;;;;43275:21:0;:4;-1:-1:-1;;;;;43275:21:0;;;43205:91;:129;;;;-1:-1:-1;43313:21:0;;;;;;;43205:129;43187:318;;;43384:29;;43361:52;;43457:36;43472:20;43457:14;:36::i;:::-;-1:-1:-1;;;;;43698:24:0;;43578:12;43698:24;;;:18;:24;;;;;;43593:4;;43698:24;;;:50;;-1:-1:-1;;;;;;43726:22:0;;;;;;:18;:22;;;;;;;;43698:50;43694:98;;;-1:-1:-1;43775:5:0;43694:98;43806:7;43802:536;;;-1:-1:-1;;;;;43835:26:0;;;;;;:20;:26;;;;;;;;43834:27;:56;;;;-1:-1:-1;;;;;;43866:24:0;;;;;;:20;:24;;;;;;;;43865:25;43834:56;43830:497;;;43951:12;;43941:6;:22;;43911:136;;;;-1:-1:-1;;;43911:136:0;;13465:2:1;43911: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;;43911:136:0;13263:404:1;43911:136:0;44076:13;-1:-1:-1;;;;;44070:19:0;:2;-1:-1:-1;;;;;44070:19:0;;44066:228;;44174:14;;44157:13;44167:2;44157:9;:13::i;:::-;44148:22;;:6;:22;:::i;:::-;:40;;44114:160;;;;-1:-1:-1;;;44114:160:0;;14007:2:1;44114: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;;44114:160:0;13805:398:1;44114:160:0;44423:41;44438:4;44444:2;44448:6;44456:7;44423:14;:41::i;:::-;42226:2246;;;42123:2349;;;:::o;4116:226::-;4236:7;4272:12;4264:6;;;;4256:29;;;;-1:-1:-1;;;4256:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4296:9:0;4308:5;4312:1;4308;:5;:::i;:::-;4296:17;4116:226;-1:-1:-1;;;;;4116:226:0:o;38328:164::-;38370:7;38391:15;38408;38427:19;:17;:19::i;:::-;38390:56;;-1:-1:-1;38390:56:0;-1:-1:-1;38464:20:0;38390:56;;38464:11;:20::i;:::-;38457:27;;;;38328:164;:::o;3213:181::-;3271:7;;3303:5;3307:1;3303;:5;:::i;:::-;3291:17;;3332:1;3327;:6;;3319:46;;;;-1:-1:-1;;;3319:46:0;;14410:2:1;3319:46:0;;;14392:21:1;14449:2;14429:18;;;14422:30;14488:29;14468:18;;;14461:57;14535:18;;3319:46:0;14208:351:1;36822:704:0;36923:7;36945;36967;36989;37011;37046:12;37061:31;37084:7;37061:22;:31::i;:::-;37046:46;;37103:18;37124:30;37146:7;37124:21;:30::i;:::-;37103:51;;37165:15;37183:30;37205:7;37183:21;:30::i;:::-;37165:48;;37224:13;37240:25;37257:7;37240:16;:25::i;:::-;37224:41;-1:-1:-1;37276:23:0;37302:33;37324:10;37302:17;:7;37314:4;37302:11;:17::i;:::-;:21;;:33::i;:::-;37276:59;-1:-1:-1;37364:28:0;37276:59;37384:7;37364:19;:28::i;:::-;37346:46;-1:-1:-1;37421:26:0;37346:46;37441:5;37421:19;:26::i;:::-;37403:44;37485:4;;-1:-1:-1;37491:10:0;;-1:-1:-1;37503:7:0;;-1:-1:-1;37491:10:0;-1:-1:-1;36822:704:0;;-1:-1:-1;;;36822:704:0:o;37534:786::-;37783:7;;;;37880:24;:7;37892:11;37880;:24::i;:::-;37862:42;-1:-1:-1;37915:12:0;37930:21;:4;37939:11;37930:8;:21::i;:::-;37915:36;-1:-1:-1;37962:18:0;37983:27;:10;37998:11;37983:14;:27::i;:::-;37962:48;-1:-1:-1;38021:15:0;38039:24;:7;38051:11;38039;:24::i;:::-;38021:42;-1:-1:-1;38074:13:0;38090:22;:5;38100:11;38090:9;:22::i;:::-;38074:38;-1:-1:-1;38123:23:0;38149:113;38074:38;38149:88;38229:7;38149:88;38199:10;38149:88;:7;38175:4;38149:25;:31::i;:113::-;38281:7;;;;-1:-1:-1;38307:4:0;;-1:-1:-1;37534:786:0;;-1:-1:-1;;;;;;;;;;;37534:786:0:o;3677:136::-;3735:7;3762:43;3766:1;3769;3762:43;;;;;;;;;;;;;;;;;:3;:43::i;5724:312::-;5844:7;5879:12;5872:5;5864:28;;;;-1:-1:-1;;;5864:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5903:9:0;5915:5;5919:1;5915;:5;:::i;44480:1195::-;27330:16;:23;;-1:-1:-1;;27330:23:0;;;;;44683:7:::1;:17:::0;44664:6:::1;:16:::0;27330:23;;44683:17;;;::::1;27330:23:::0;44683:17;;::::1;::::0;44664:16;;::::1;::::0;::::1;::::0;44625:36:::1;::::0;27330:23;44644:17;;;::::1;::::0;::::1;::::0;44625:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;44624:81;::::0;44704:1:::1;44624:81;:::i;:::-;44781:7;:17:::0;44762:6:::1;:16:::0;44602:103:::1;::::0;;::::1;::::0;-1:-1:-1;44716:32:0::1;::::0;44602:103;;44762:36:::1;::::0;44781:17:::1;::::0;;;::::1;::::0;::::1;::::0;44762:16;;::::1;;:36;:::i;:::-;44752:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;44751:63;;;;:::i;:::-;44716:98:::0;-1:-1:-1;44825:14:0::1;44842:33;44716:98:::0;44842:6;:33:::1;:::i;:::-;44825:50:::0;-1:-1:-1;44913:21:0::1;44947:24;44825:50:::0;44947:16:::1;:24::i;:::-;44984:20;45007:38;45031:14:::0;45007:21:::1;:38;:::i;:::-;45128:7;:17:::0;45109:6:::1;:16:::0;44984:61;;-1:-1:-1;45056:19:0::1;::::0;45109:36:::1;::::0;45128:17:::1;;::::0;;;::::1;::::0;::::1;::::0;45109:16;;;::::1;;:36;:::i;:::-;45094:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;45078:69;::::0;:12;:69:::1;:::i;:::-;45224:7;:17:::0;45205:6:::1;:16:::0;45056:91;;-1:-1:-1;45158:29:0::1;::::0;45205:36:::1;::::0;45224:17:::1;;::::0;;;::::1;::::0;::::1;::::0;45205:16;;;::::1;;:36;:::i;:::-;45190:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;45158:84:::0;-1:-1:-1;45259:25:0;;45255:160:::1;;45342:61;45355:24;45381:21;45342:12;:61::i;:::-;45522:7;:17:::0;45503:6:::1;:16:::0;45461:20:::1;::::0;45503:36:::1;::::0;45522:17:::1;::::0;;;;::::1;::::0;::::1;::::0;45503:16;;::::1;;:36;:::i;:::-;45484:56;;:15;:11:::0;45498:1:::1;45484:15;:::i;:::-;:56;;;;:::i;:::-;45461:79:::0;-1:-1:-1;45566:16:0;;45562:98:::1;;45607:17;::::0;45599:49:::1;::::0;-1:-1:-1;;;;;45607:17:0;;::::1;::::0;45599:49;::::1;;;::::0;45635:12;;45607:17:::1;45599:49:::0;45607:17;45599:49;45635:12;45607:17;45599:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45562:98;-1:-1:-1::0;;27376:16:0;:24;;-1:-1:-1;;27376:24:0;;;-1:-1:-1;;;;;;;44480:1195:0:o;46880:1022::-;47035:7;47031:230;;;47059:14;40923;:18;;-1:-1:-1;;41008:12:0;;;40880:155;47059:14;47102:13;-1:-1:-1;;;;;47092:23:0;:6;-1:-1:-1;;;;;47092:23:0;;47088:72;;;41097:6;:17;41080:14;:34;;41097:17;;;;-1:-1:-1;;41125:32:0;;;;;;;41097:17;41141:16;;;;;41125:32;;-1:-1:-1;;41211:22:0;41184:16;;;;;;41168:32;-1:-1:-1;;41211:22:0;;41222:11;;;;;;;;;41211:22;;;;;;;;;47136:8;47191:13;-1:-1:-1;;;;;47178:26:0;:9;-1:-1:-1;;;;;47178:26:0;;47174:76;;;41312:7;:18;41295:14;:35;;41312:18;;;;-1:-1:-1;;41341:33:0;;;;;;;41312:18;41357:17;;;;;41341:33;;-1:-1:-1;;41429:23:0;41401:17;;;;;;41385:33;-1:-1:-1;;41429:23:0;;41440:12;;;;;;;;;41429:23;;;;;;;;;47225:9;-1:-1:-1;;;;;47277:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;47301:22:0;;;;;;:11;:22;;;;;;;;47300:23;47277:46;47273:597;;;47340:48;47362:6;47370:9;47381:6;47340:21;:48::i;:::-;47273:597;;;-1:-1:-1;;;;;47411:19:0;;;;;;:11;:19;;;;;;;;47410:20;:46;;;;-1:-1:-1;;;;;;47434:22:0;;;;;;:11;:22;;;;;;;;47410:46;47406:464;;;47473:46;47493:6;47501:9;47512:6;47473:19;:46::i;47406:464::-;-1:-1:-1;;;;;47542:19:0;;;;;;:11;:19;;;;;;;;47541:20;:47;;;;-1:-1:-1;;;;;;47566:22:0;;;;;;:11;:22;;;;;;;;47565:23;47541:47;47537:333;;;47605:44;47623:6;47631:9;47642:6;47605:17;:44::i;47537:333::-;-1:-1:-1;;;;;47671:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47694:22:0;;;;;;:11;:22;;;;;;;;47671:45;47667:203;;;47733:48;47755:6;47763:9;47774:6;47733:21;:48::i;47667:203::-;47814:44;47832:6;47840:9;47851:6;47814:17;:44::i;:::-;47880:14;40923;:18;;-1:-1:-1;;41008:12:0;;;40880:155;47880:14;46880:1022;;;;:::o;38500:605::-;38598:7;;38634;;38551;;;;;38652:338;38676:9;:16;38672:20;;38652:338;;;38760:7;38736;:21;38744:9;38754:1;38744:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38744:12:0;38736:21;;;;;;;;;;;;;:31;;:83;;;38812:7;38788;:21;38796:9;38806:1;38796:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38796:12:0;38788:21;;;;;;;;;;;;;:31;38736:83;38714:146;;;38843:7;;38852;;38835:25;;;;;;;38500:605;;:::o;38714:146::-;38885:34;38897:7;:21;38905:9;38915:1;38905:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38905:12:0;38897:21;;;;;;;;;;;;;38885:7;;:11;:34::i;:::-;38875:44;;38944:34;38956:7;:21;38964:9;38974:1;38964:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38964:12:0;38956:21;;;;;;;;;;;;;38944:7;;:11;:34::i;:::-;38934:44;-1:-1:-1;38694:3:0;;;;:::i;:::-;;;;38652:338;;;-1:-1:-1;39026:7:0;;39014;;:20;;:11;:20::i;:::-;39004:7;:30;39000:61;;;39044:7;;39053;;39036:25;;;;;;38500:605;;:::o;39000:61::-;39080:7;;39089;;-1:-1:-1;38500:605:0;-1:-1:-1;38500:605:0:o;40187:144::-;40297:14;;40258:7;;40285:38;;40317:5;;40285:27;;:7;;40297:14;;40285:11;:27::i;40339:174::-;40480:13;;40436:7;;40468:37;;40499:5;;40468:26;;:7;;40480:13;;;;;40468:11;:26::i;40521:174::-;40662:13;;40618:7;;40650:37;;40681:5;;40650:26;;:7;;40662:13;;;;;40650:11;:26::i;40703:164::-;40839:8;;40795:7;;40827:32;;40853:5;;40827:21;;:7;;40839:8;;;;;40827:11;:21::i;45683:589::-;45833:16;;;45847:1;45833:16;;;;;;;;45809:21;;45833:16;;;;;;;;;;-1:-1:-1;45833:16:0;45809:40;;45878:4;45860;45865:1;45860:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45860:23:0;;;-1:-1:-1;;;;;45860:23:0;;;;;45904:15;-1:-1:-1;;;;;45904:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45894:4;45899:1;45894:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45894:32:0;;;-1:-1:-1;;;;;45894:32:0;;;;;45939:62;45956:4;45971:15;45989:11;45939:8;:62::i;:::-;46040:224;;-1:-1:-1;;;46040:224:0;;-1:-1:-1;;;;;46040:15:0;:66;;;;:224;;46121:11;;46147:1;;46191:4;;46218;;46238:15;;46040:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46280:519;46428:62;46445:4;46460:15;46478:11;46428:8;:62::i;:::-;46533:258;;-1:-1:-1;;;46533:258:0;;46605:4;46533:258;;;16730:34:1;;;16780:18;;;16773:34;;;46651:1:0;16823:18:1;;;16816:34;;;16866:18;;;16859:34;16909:19;;;16902:44;46765:15:0;16962:19:1;;;16955:35;46533:15:0;-1:-1:-1;;;;;46533:31:0;;;;46572:9;;16664:19:1;;46533:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46280:519;;:::o;49761:941::-;49912:23;49950:12;49977:18;50010:15;50040:13;50067:20;50079:7;50067:11;:20::i;:::-;49897:190;;;;;;;;;;50099:15;50116:23;50141:12;50157:155;50183:7;50205:4;50224:10;50249:7;50271:5;50291:10;:8;:10::i;50157:155::-;-1:-1:-1;;;;;50343:15:0;;;;;;:7;:15;;;;;;50098:214;;-1:-1:-1;50098:214:0;;-1:-1:-1;50098:214:0;-1:-1:-1;50343:28:0;;50363:7;50343:19;:28::i;:::-;-1:-1:-1;;;;;50325:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50400:7;:15;;;;:28;;50420:7;50400:19;:28::i;:::-;-1:-1:-1;;;;;50382:15:0;;;;;;;:7;:15;;;;;;:46;;;;50460:18;;;;;;;:39;;50483:15;50460:22;:39::i;:::-;-1:-1:-1;;;;;50439:18:0;;;;;;:7;:18;;;;;:60;50510:26;50525:10;50510:14;:26::i;:::-;50547:23;50562:7;50547:14;:23::i;:::-;50581:19;50594:5;50581:12;:19::i;:::-;50611:23;50623:4;50629;50611:11;:23::i;:::-;50667:9;-1:-1:-1;;;;;50650:44:0;50659:6;-1:-1:-1;;;;;50650:44:0;;50678:15;50650:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;50650:44:0;;;;;;;;49886:816;;;;;;;;49761:941;;;:::o;48800:953::-;48949:23;48987:12;49014:18;49047:15;49077:13;49104:20;49116:7;49104:11;:20::i;:::-;48934:190;;;;;;;;;;49136:15;49153:23;49178:12;49194:155;49220:7;49242:4;49261:10;49286:7;49308:5;49328:10;:8;:10::i;49194:155::-;-1:-1:-1;;;;;49380:15:0;;;;;;:7;:15;;;;;;49135:214;;-1:-1:-1;49135:214:0;;-1:-1:-1;49135:214:0;-1:-1:-1;49380:28:0;;49135:214;49380:19;:28::i;:::-;-1:-1:-1;;;;;49362:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;49440:18;;;;;:7;:18;;;;;:39;;49463:15;49440:22;:39::i;:::-;-1:-1:-1;;;;;49419:18:0;;;;;;:7;:18;;;;;;;;:60;;;;49511:7;:18;;;;:39;;49534:15;49511:22;:39::i;47910:880::-;48057:23;48095:12;48122:18;48155:15;48185:13;48212:20;48224:7;48212:11;:20::i;:::-;48042:190;;;;;;;;;;48244:15;48261:23;48286:12;48302:155;48328:7;48350:4;48369:10;48394:7;48416:5;48436:10;:8;:10::i;48302:155::-;-1:-1:-1;;;;;48488:15:0;;;;;;:7;:15;;;;;;48243:214;;-1:-1:-1;48243:214:0;;-1:-1:-1;48243:214:0;-1:-1:-1;48488:28:0;;48243:214;48488:19;:28::i;50710:1012::-;50861:23;50899:12;50926:18;50959:15;50989:13;51016:20;51028:7;51016:11;:20::i;:::-;50846:190;;;;;;;;;;51048:15;51065:23;51090:12;51106:155;51132:7;51154:4;51173:10;51198:7;51220:5;51240:10;:8;:10::i;51106:155::-;-1:-1:-1;;;;;51292:15:0;;;;;;:7;:15;;;;;;51047:214;;-1:-1:-1;51047:214:0;;-1:-1:-1;51047:214:0;-1:-1:-1;51292:28:0;;51312:7;51292:19;:28::i;:::-;-1:-1:-1;;;;;51274:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51349:7;:15;;;;:28;;51369:7;51349:19;:28::i;39113:355::-;39176:19;39198:10;:8;:10::i;:::-;39176:32;-1:-1:-1;39219:18:0;39240:27;:10;39176:32;39240:14;:27::i;:::-;39319:4;39303:22;;;;:7;:22;;;;;;39219:48;;-1:-1:-1;39303:38:0;;39219:48;39303:26;:38::i;:::-;39294:4;39278:22;;;;:7;:22;;;;;;;;:63;;;;39356:11;:26;;;;;;39352:108;;;39438:4;39422:22;;;;:7;:22;;;;;;:38;;39449:10;39422:26;:38::i;:::-;39413:4;39397:22;;;;:7;:22;;;;;:63;39352:108;39165:303;;39113:355;:::o;39824:::-;39880:19;39902:10;:8;:10::i;:::-;39880:32;-1:-1:-1;39923:13:0;39939:22;:5;39880:32;39939:9;:22::i;:::-;40004:12;;-1:-1:-1;;;;;40004:12:0;39996:21;;;;:7;:21;;;;;;39923:38;;-1:-1:-1;39996:32:0;;39923:38;39996:25;:32::i;:::-;39980:12;;;-1:-1:-1;;;;;39980:12:0;;;39972:21;;;;:7;:21;;;;;;;;:56;;;;40055:12;;;;;40043:25;;:11;:25;;;;;;;40039:132;;;40115:12;;-1:-1:-1;;;;;40115:12:0;40107:21;;;;:7;:21;;;;;;:64;;40151:5;40107:25;:64::i;:::-;40091:12;;-1:-1:-1;;;;;40091:12:0;40083:21;;;;:7;:21;;;;;:88;39869:310;;39824:355;:::o;36667:147::-;36745:7;;:17;;36757:4;36745:11;:17::i;:::-;36735:7;:27;36786:10;;:20;;36801:4;36786:14;:20::i;:::-;36773:10;:33;-1:-1:-1;;36667: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;-1:-1:-1;;8469:17:1;;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://82c0833dcb6ab4922cb60570dfb8f22211b2deae26778122639aa24c0c1046ab
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.