ETH Price: $2,285.25 (-3.69%)
Gas: 7.81 Gwei

Token

HelpAI (HAI)
 

Overview

Max Total Supply

1,000,000,000 HAI

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
889,166.983561166 HAI

Value
$0.00
0x262108b08b829854733697cceeeb63fab504e8f5
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:
HelpAI

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;

// Website https://www.helpaibook.com/
// https://twitter.com/HelpAiToken
// https://medium.com/@helpaitoken
// Telegram https://t.me/HelpAiERC20
// ETH Trending On Launch
// Poficy Trending on launch
// Book goes live Friday on Amazon
// Heavy Marketing
// Tax 8/8

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return 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 Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `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) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 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.
     *
     * 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) 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;
    }
}

/**
 * @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.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        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;
    }
}

// pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

contract HelpAI 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 _isExcludedFromMaxTx;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "HelpAI";
    string private _symbol = "HAI";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _devFee = 60;
    uint256 private _devTax = 30;
    uint256 private _marketingTax = 30;
    uint256 private _previousDevFee = _devFee;
    
    uint256 public _liquidityFee = 20;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public launchSellFee = 160;
    uint256 private _previousLaunchSellFee = launchSellFee;

    uint256 public maxTxAmount = _tTotal.mul(5).div(1000); // 2%
    address payable private _devWallet = payable(0x2591725f9fd780067751989931b92342aA4E398A);
    address payable private _marketingWallet = payable(0xa89440a018c79040218CD7524CA7d047Aadf3Fe4);

    uint256 public launchSellFeeDeadline = 0;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 private minTokensBeforeSwap = 1000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 liquidityEthBalance,
        uint256 devEthBalance
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
         _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        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;

        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;

        // launch sell fee
        launchSellFeeDeadline = now + 1 days;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()).createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
    }

    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 deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _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");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            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 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 already 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 _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0));
        require(spender != address(0));

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    function expectedRewards(address _sender) external view returns(uint256){
        uint256 _balance = address(this).balance;
        address sender = _sender;
        uint256 holdersBal = balanceOf(sender);
        uint totalExcludedBal;
        for (uint256 i = 0; i < _excluded.length; i++){
            totalExcludedBal = balanceOf(_excluded[i]).add(totalExcludedBal);   
        }
        uint256 rewards = holdersBal.mul(_balance).div(_tTotal.sub(balanceOf(uniswapV2Pair)).sub(totalExcludedBal));
        return rewards;
    }
    
    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 (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        }

        // initial sell fee
        uint256 regularDevFee = _devFee;
        uint256 regularDevTax = _devTax;
        if (launchSellFeeDeadline >= now && to == uniswapV2Pair) {
            _devFee = _devFee.add(launchSellFee);
            _devTax = _devTax.add(launchSellFee);
        }

        // 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));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            // add liquidity
            uint256 tokensToSell = maxTxAmount > contractTokenBalance ? contractTokenBalance : maxTxAmount;
            swapAndLiquify(tokensToSell);
        }
        
        // 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;
        }
        
        // transfer amount, it will take tax, dev fee, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);

        _devFee = regularDevFee;
        _devTax = regularDevTax;
    }
    
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // balance token fees based on variable percents
        uint256 totalRedirectTokenFee = _devFee.add(_liquidityFee);

        if (totalRedirectTokenFee == 0) return;
        uint256 liquidityTokenBalance = contractTokenBalance.mul(_liquidityFee).div(totalRedirectTokenFee);
        uint256 devTokenBalance = contractTokenBalance.mul(_devFee).div(totalRedirectTokenFee);
        
        // split the liquidity balance into halves
        uint256 halfLiquidity = liquidityTokenBalance.div(2);
        
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        
        if (liquidityTokenBalance == 0 && devTokenBalance == 0) return;
        
        // swap tokens for ETH
        swapTokensForEth(devTokenBalance.add(halfLiquidity));
        
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        if(newBalance > 0) {
            // rebalance ETH fees proportionally to half the liquidity
            uint256 totalRedirectEthFee = _devFee.add(_liquidityFee.div(2));
            uint256 liquidityEthBalance = newBalance.mul(_liquidityFee.div(2)).div(totalRedirectEthFee);
            uint256 devEthBalance = newBalance.mul(_devFee).div(totalRedirectEthFee);

            //
            // for liquidity
            // add to uniswap
            //
    
            addLiquidity(halfLiquidity, liquidityEthBalance);
            
            //
            // for dev fee
            // send to the dev address
            //
            
            sendEthToDevAddress(devEthBalance);
            
            emit SwapAndLiquify(contractTokenBalance, liquidityEthBalance, devEthBalance);
        }
    } 
    
    function sendEthToDevAddress(uint256 amount) private {
        if (amount > 0 && _devFee > 0) {
            uint256 ethToDev = amount.mul(_devTax).div(_devFee);
            uint256 ethToMarketing = amount.mul(_marketingTax).div(_devFee);
            if (ethToDev > 0) _devWallet.transfer(ethToDev);
            if (ethToMarketing > 0) _marketingWallet.transfer(ethToMarketing);
        }
    }

    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 {
        if (tokenAmount > 0 && ethAmount > 0) {
            // 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
                owner(),
                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 (_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);
        }
        
        if(!takeFee) {
            restoreAllFee();
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _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);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tDev, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tDev = calculateDevFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tDev).sub(tLiquidity);
        return (tTransferAmount, tFee, tDev, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rDev = tDev.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rDev).sub(rLiquidity);
        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 _takeDev(uint256 tDev) private {
        uint256 currentRate =  _getRate();
        uint256 rDev = tDev.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rDev);
        if(_isExcluded[address(this)]) {
            _tOwned[address(this)] = _tOwned[address(this)].add(tDev);
        }
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(1000);
    }

    function calculateDevFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_devFee).div(1000);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(1000);
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _devFee == 0 && _liquidityFee == 0 && launchSellFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousDevFee = _devFee;
        _previousLiquidityFee = _liquidityFee;
        _previousLaunchSellFee = launchSellFee;
        
        _taxFee = 0;
        _devFee = 0;
        _liquidityFee = 0;
        launchSellFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _devFee = _previousDevFee;
        _liquidityFee = _previousLiquidityFee;
        launchSellFee = _previousLaunchSellFee;
    }
    
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner() {
        uint256 contractEthBalance = address(this).balance;
        sendEthToDevAddress(contractEthBalance);
    }
    
    function isExcludedFromFee(address account) external view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = _tTotal.mul(newMaxTx).div(1000);
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
         require(taxFee <= 80, "Maximum fee limit is 8 percent");
        _taxFee = taxFee;
    }
    
    function setDevFeePercent(uint256 devFee, uint256 devTax, uint256 marketingTax) external onlyOwner() {
         require(devFee <= 100, "Maximum fee limit is 10 percent");
         require(devTax + marketingTax == devFee, "Dev + marketing must equal total fee");
        _devFee = devFee;
        _devTax = devTax;
        _marketingTax = marketingTax;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee <= 80, "Maximum fee limit is 8 percent");
        _liquidityFee = liquidityFee;
    }

    function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner {
        require(newLaunchSellFee <= 250, "Maximum launch sell fee is 25%");
        launchSellFee = newLaunchSellFee;
    }

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

    function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner {
        minTokensBeforeSwap = minTokens * 10**9;
        emit MinTokensBeforeSwapUpdated(minTokens);
    }
    
    // to receive ETH from uniswapV2Router when swaping
    receive() external payable {}
}

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":"liquidityEthBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devEthBalance","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":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"expectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"devTax","type":"uint256"},{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"name":"setDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","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"},{"stateMutability":"payable","type":"receive"}]

670de0b6b3a764000060085567081ad01a501bffff1960095560c0604052600660808190526548656c70414960d01b60a09081526200004291600b919062000616565b506040805180820190915260038082526248414960e81b60209092019182526200006f91600c9162000616565b50600d8054600960ff199091161790556000600e819055600f55603c6010819055601e6011819055601255601355601480805560155560a06016819055601755600854620000e8906103e890620000d4906005620004ab602090811b62001db817901c565b6200051260201b62001e181790919060201c565b601855601980546001600160a01b0319908116732591725f9fd780067751989931b92342aa4e398a17909155601a805490911673a89440a018c79040218cd7524ca7d047aadf3fe41790556000601b55601d805460ff60a81b1916600160a81b17905564e8d4a51000601e553480156200016157600080fd5b5060006200016e6200055c565b90506200017a6200055c565b600080546001600160a01b0319166001600160a01b03928316178155604051918316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060095460016000620001d46200055c565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024b57600080fd5b505afa15801562000260573d6000803e3d6000fd5b505050506040513d60208110156200027757600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002c857600080fd5b505afa158015620002dd573d6000803e3d6000fd5b505050506040513d6020811015620002f457600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200034757600080fd5b505af11580156200035c573d6000803e3d6000fd5b505050506040513d60208110156200037357600080fd5b5051601d80546001600160a01b03199081166001600160a01b0393841617909155601c8054909116918316919091179055600160046000620003b462000560565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260049092528120805490921660019081179092556005906200040462000560565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620151804201601b55620004576200055c565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040518082815260200191505060405180910390a350620006b2565b600082620004bc575060006200050c565b82820282848281620004ca57fe5b0414620005095760405162461bcd60e51b81526004018080602001828103825260218152602001806200392e6021913960400191505060405180910390fd5b90505b92915050565b60006200050983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200056f60201b60201c565b3390565b6000546001600160a01b031690565b60008183620005ff5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005c3578181015183820152602001620005a9565b50505050905090810190601f168015620005f15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200060c57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065957805160ff191683800117855562000689565b8280016001018555821562000689579182015b82811115620006895782518255916020019190600101906200066c565b50620006979291506200069b565b5090565b5b808211156200069757600081556001016200069c565b61326c80620006c26000396000f3fe60806040526004361061026b5760003560e01c80635342acb41161014457806395d89b41116100b6578063c49b9a801161007a578063c49b9a80146108ce578063d543dbeb146108fa578063dd62ed3e14610924578063ea2f0b371461095f578063f2fde38b14610992578063f4293890146109c557610272565b806395d89b411461081d578063a457c2d714610832578063a9059cbb1461086b578063aa45026b146108a4578063af01f2b2146108b957610272565b806377e5006f1161010857806377e5006f146107395780638421b5071461076c57806388f82020146107965780638c0b5e22146107c95780638da5cb5b146107de5780638ee88c53146107f357610272565b80635342acb41461069457806354959363146106c75780636bc87c3a146106dc57806370a08231146106f1578063715018a61461072457610272565b80633b124fe7116101dd57806348a46473116101a157806348a46473146105c257806349bd5a5e146105ec5780634a74bb02146106015780634d33cc651461061657806351bc3c851461064c57806352390c021461066157610272565b80633b124fe7146104eb5780633bd5d1731461050057806341cb87fc1461052a578063437823ec1461055d5780634549b0391461059057610272565b806318160ddd1161022f57806318160ddd146103d257806323b872dd146103e75780632d8381191461042a578063313ce567146104545780633685d4191461047f57806339509351146104b257610272565b8063061c82d01461027757806306fdde03146102a3578063095ea7b31461032d57806313114a9d1461037a5780631694505e146103a157610272565b3661027257005b600080fd5b34801561028357600080fd5b506102a16004803603602081101561029a57600080fd5b50356109da565b005b3480156102af57600080fd5b506102b8610a8d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f25781810151838201526020016102da565b50505050905090810190601f16801561031f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033957600080fd5b506103666004803603604081101561035057600080fd5b506001600160a01b038135169060200135610b23565b604080519115158252519081900360200190f35b34801561038657600080fd5b5061038f610b41565b60408051918252519081900360200190f35b3480156103ad57600080fd5b506103b6610b47565b604080516001600160a01b039092168252519081900360200190f35b3480156103de57600080fd5b5061038f610b56565b3480156103f357600080fd5b506103666004803603606081101561040a57600080fd5b506001600160a01b03813581169160208101359091169060400135610b5c565b34801561043657600080fd5b5061038f6004803603602081101561044d57600080fd5b5035610be3565b34801561046057600080fd5b50610469610c45565b6040805160ff9092168252519081900360200190f35b34801561048b57600080fd5b506102a1600480360360208110156104a257600080fd5b50356001600160a01b0316610c4e565b3480156104be57600080fd5b50610366600480360360408110156104d557600080fd5b506001600160a01b038135169060200135610e0f565b3480156104f757600080fd5b5061038f610e5d565b34801561050c57600080fd5b506102a16004803603602081101561052357600080fd5b5035610e63565b34801561053657600080fd5b506102a16004803603602081101561054d57600080fd5b50356001600160a01b0316610f3f565b34801561056957600080fd5b506102a16004803603602081101561058057600080fd5b50356001600160a01b0316611129565b34801561059c57600080fd5b5061038f600480360360408110156105b357600080fd5b508035906020013515156111a5565b3480156105ce57600080fd5b506102a1600480360360208110156105e557600080fd5b5035611239565b3480156105f857600080fd5b506103b66112d1565b34801561060d57600080fd5b506103666112e0565b34801561062257600080fd5b506102a16004803603606081101561063957600080fd5b50803590602081013590604001356112f0565b34801561065857600080fd5b506102a16113ec565b34801561066d57600080fd5b506102a16004803603602081101561068457600080fd5b50356001600160a01b031661145d565b3480156106a057600080fd5b50610366600480360360208110156106b757600080fd5b50356001600160a01b03166115e3565b3480156106d357600080fd5b5061038f611601565b3480156106e857600080fd5b5061038f611607565b3480156106fd57600080fd5b5061038f6004803603602081101561071457600080fd5b50356001600160a01b031661160d565b34801561073057600080fd5b506102a161166f565b34801561074557600080fd5b5061038f6004803603602081101561075c57600080fd5b50356001600160a01b0316611711565b34801561077857600080fd5b506102a16004803603602081101561078f57600080fd5b50356117be565b3480156107a257600080fd5b50610366600480360360208110156107b957600080fd5b50356001600160a01b0316611871565b3480156107d557600080fd5b5061038f61188f565b3480156107ea57600080fd5b506103b6611895565b3480156107ff57600080fd5b506102a16004803603602081101561081657600080fd5b50356118a4565b34801561082957600080fd5b506102b8611957565b34801561083e57600080fd5b506103666004803603604081101561085557600080fd5b506001600160a01b0381351690602001356119b8565b34801561087757600080fd5b506103666004803603604081101561088e57600080fd5b506001600160a01b038135169060200135611a20565b3480156108b057600080fd5b5061038f611a34565b3480156108c557600080fd5b5061038f611a3a565b3480156108da57600080fd5b506102a1600480360360208110156108f157600080fd5b50351515611a40565b34801561090657600080fd5b506102a16004803603602081101561091d57600080fd5b5035611aeb565b34801561093057600080fd5b5061038f6004803603604081101561094757600080fd5b506001600160a01b0381358116916020013516611bba565b34801561096b57600080fd5b506102a16004803603602081101561098257600080fd5b50356001600160a01b0316611be5565b34801561099e57600080fd5b506102a1600480360360208110156109b557600080fd5b50356001600160a01b0316611c5e565b3480156109d157600080fd5b506102a1611d56565b6109e2611e5a565b6000546001600160a01b03908116911614610a32576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6050811115610a88576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b600e55565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b5050505050905090565b6000610b37610b30611e5a565b8484611e5e565b5060015b92915050565b600a5490565b601c546001600160a01b031681565b60085490565b6000610b69848484611ee6565b610bd984610b75611e5a565b610bd485604051806060016040528060288152602001613150602891396001600160a01b038a16600090815260036020526040812090610bb3611e5a565b6001600160a01b031681526020810191909152604001600020549190612170565b611e5e565b5060019392505050565b6000600954821115610c265760405162461bcd60e51b815260040180806020018281038252602a815260200180613093602a913960400191505060405180910390fd5b6000610c30612207565b9050610c3c8382611e18565b9150505b919050565b600d5460ff1690565b610c56611e5a565b6000546001600160a01b03908116911614610ca6576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610d13576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600754811015610e0b57816001600160a01b031660078281548110610d3757fe5b6000918252602090912001546001600160a01b03161415610e0357600780546000198101908110610d6457fe5b600091825260209091200154600780546001600160a01b039092169183908110610d8a57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610ddc57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0b565b600101610d16565b5050565b6000610b37610e1c611e5a565b84610bd48560036000610e2d611e5a565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061222a565b600e5481565b6000610e6d611e5a565b6001600160a01b03811660009081526006602052604090205490915060ff1615610ec85760405162461bcd60e51b815260040180806020018281038252602c8152602001806131e6602c913960400191505060405180910390fd5b6000610ed383612284565b5050506001600160a01b038616600090815260016020526040902054939450610f01939250849150506122df565b6001600160a01b038316600090815260016020526040902055600954610f2790826122df565b600955600a54610f37908461222a565b600a55505050565b610f47611e5a565b6000546001600160a01b03908116911614610f97576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610fd557600080fd5b505afa158015610fe9573d6000803e3d6000fd5b505050506040513d6020811015610fff57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561104f57600080fd5b505afa158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156110cb57600080fd5b505af11580156110df573d6000803e3d6000fd5b505050506040513d60208110156110f557600080fd5b5051601d80546001600160a01b039283166001600160a01b031991821617909155601c805493909216921691909117905550565b611131611e5a565b6000546001600160a01b03908116911614611181576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156111fe576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161121e57600061120e84612284565b50949650610b3b95505050505050565b600061122984612284565b50939650610b3b95505050505050565b611241611e5a565b6000546001600160a01b03908116911614611291576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b633b9aca008102601e556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601d546001600160a01b031681565b601d54600160a81b900460ff1681565b6112f8611e5a565b6000546001600160a01b03908116911614611348576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b606483111561139e576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b82818301146113de5760405162461bcd60e51b815260040180806020018281038252602481526020018061310b6024913960400191505060405180910390fd5b601092909255601155601255565b6113f4611e5a565b6000546001600160a01b03908116911614611444576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b600061144f3061160d565b905061145a81612321565b50565b611465611e5a565b6000546001600160a01b039081169116146114b5576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1615611523576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600160205260409020541561157d576001600160a01b03811660009081526001602052604090205461156390610be3565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b60165481565b60145481565b6001600160a01b03811660009081526006602052604081205460ff161561164d57506001600160a01b038116600090815260026020526040902054610c40565b6001600160a01b038216600090815260016020526040902054610b3b90610be3565b611677611e5a565b6000546001600160a01b039081169116146116c7576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600047828261171f8261160d565b90506000805b60075481101561176d576117638261175d6007848154811061174357fe5b6000918252602090912001546001600160a01b031661160d565b9061222a565b9150600101611725565b50601d546000906117b3906117a390849061179d90611794906001600160a01b031661160d565b600854906122df565b906122df565b6117ad8588611db8565b90611e18565b979650505050505050565b6117c6611e5a565b6000546001600160a01b03908116911614611816576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b60fa81111561186c576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000604482015290519081900360640190fd5b601655565b6001600160a01b031660009081526006602052604090205460ff1690565b60185481565b6000546001600160a01b031690565b6118ac611e5a565b6000546001600160a01b039081169116146118fc576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6050811115611952576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b601455565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b195780601f10610aee57610100808354040283529160200191610b19565b6000610b376119c5611e5a565b84610bd48560405180606001604052806025815260200161321260259139600360006119ef611e5a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612170565b6000610b37611a2d611e5a565b8484611ee6565b60105481565b601b5481565b611a48611e5a565b6000546001600160a01b03908116911614611a98576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b601d8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611af3611e5a565b6000546001600160a01b03908116911614611b43576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6005811015611b99576040805162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e35250000000000604482015290519081900360640190fd5b611bb46103e86117ad83600854611db890919063ffffffff16565b60185550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b611bed611e5a565b6000546001600160a01b03908116911614611c3d576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b611c66611e5a565b6000546001600160a01b03908116911614611cb6576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b038116611cfb5760405162461bcd60e51b81526004018080602001828103825260268152602001806130bd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d5e611e5a565b6000546001600160a01b03908116911614611dae576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b4761145a816124cf565b600082611dc757506000610b3b565b82820282848281611dd457fe5b0414611e115760405162461bcd60e51b815260040180806020018281038252602181526020018061312f6021913960400191505060405180910390fd5b9392505050565b6000611e1183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506125ad565b3390565b6001600160a01b038316611e7157600080fd5b6001600160a01b038216611e8457600080fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f2b5760405162461bcd60e51b81526004018080602001828103825260258152602001806131c16025913960400191505060405180910390fd5b6001600160a01b038216611f705760405162461bcd60e51b81526004018080602001828103825260238152602001806130706023913960400191505060405180910390fd5b60008111611faf5760405162461bcd60e51b81526004018080602001828103825260298152602001806131986029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460ff16158015611ff157506001600160a01b03821660009081526005602052604090205460ff16155b15612037576018548111156120375760405162461bcd60e51b81526004018080602001828103825260288152602001806130e36028913960400191505060405180910390fd5b601054601154601b54421180159061205c5750601d546001600160a01b038581169116145b15612086576016546010546120709161222a565b6010556016546011546120829161222a565b6011555b60006120913061160d565b601e54909150811080159081906120b25750601d54600160a01b900460ff16155b80156120cc5750601d546001600160a01b03888116911614155b80156120e15750601d54600160a81b900460ff165b1561210857600082601854116120f9576018546120fb565b825b905061210681612612565b505b6001600160a01b03871660009081526004602052604090205460019060ff168061214a57506001600160a01b03871660009081526004602052604090205460ff165b15612153575060005b61215f888888846127a9565b505050601091909155601155505050565b600081848411156121ff5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121c45781810151838201526020016121ac565b50505050905090810190601f1680156121f15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612214612917565b90925090506122238282611e18565b9250505090565b600082820183811015611e11576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080600080600080600080600080600061229e8c612a7a565b935093509350935060008060006122bf8f8787876122ba612207565b612ac9565b919f509d509b509599509397509195509350505050919395979092949650565b6000611e1183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612170565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061234f57fe5b6001600160a01b03928316602091820292909201810191909152601c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123a357600080fd5b505afa1580156123b7573d6000803e3d6000fd5b505050506040513d60208110156123cd57600080fd5b50518151829060019081106123de57fe5b6001600160a01b039283166020918202929092010152601c546124049130911684611e5e565b601c5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561248a578181015183820152602001612472565b505050509050019650505050505050600060405180830381600087803b1580156124b357600080fd5b505af11580156124c7573d6000803e3d6000fd5b505050505050565b6000811180156124e157506000601054115b1561145a5760006125036010546117ad60115485611db890919063ffffffff16565b905060006125226010546117ad60125486611db890919063ffffffff16565b90508115612566576019546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612564573d6000803e3d6000fd5b505b80156125a857601a546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156125a6573d6000803e3d6000fd5b505b505050565b600081836125fc5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121c45781810151838201526020016121ac565b50600083858161260857fe5b0495945050505050565b601d805460ff60a01b1916600160a01b179055601454601054600091612638919061222a565b9050806126455750612799565b6000612660826117ad60145486611db890919063ffffffff16565b9050600061267d836117ad60105487611db890919063ffffffff16565b9050600061268c836002611e18565b9050478315801561269b575082155b156126aa575050505050612799565b6126bc6126b7848461222a565b612321565b60006126c847836122df565b905080156127925760006126f46126eb6002601454611e1890919063ffffffff16565b6010549061222a565b9050600061271c826117ad6127156002601454611e1890919063ffffffff16565b8690611db8565b90506000612739836117ad60105487611db890919063ffffffff16565b90506127458683612b2b565b61274e816124cf565b604080518b81526020810184905280820183905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505b5050505050505b50601d805460ff60a01b19169055565b806127b6576127b6612c0d565b6001600160a01b03841660009081526006602052604090205460ff1680156127f757506001600160a01b03831660009081526006602052604090205460ff16155b1561280c57612807848484612c6c565b61290a565b6001600160a01b03841660009081526006602052604090205460ff1615801561284d57506001600160a01b03831660009081526006602052604090205460ff165b1561285d57612807848484612db0565b6001600160a01b03841660009081526006602052604090205460ff1615801561289f57506001600160a01b03831660009081526006602052604090205460ff16155b156128af57612807848484612e6f565b6001600160a01b03841660009081526006602052604090205460ff1680156128ef57506001600160a01b03831660009081526006602052604090205460ff165b156128ff57612807848484612ec9565b61290a848484612e6f565b806125a6576125a6612f52565b6009546008546000918291825b600754811015612a485782600160006007848154811061294057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806129a5575081600260006007848154811061297e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156129bc5760095460085494509450505050612a76565b6129fc60016000600784815481106129d057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122df565b9250612a3e6002600060078481548110612a1257fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122df565b9150600101612924565b50600854600954612a5891611e18565b821015612a7057600954600854935093505050612a76565b90925090505b9091565b6000806000806000612a8b86612f6c565b90506000612a9887612f89565b90506000612aa588612fa6565b90506000612ab98261179d85818d896122df565b9993985091965094509092505050565b6000808080612ad88986611db8565b90506000612ae68987611db8565b90506000612af48988611db8565b90506000612b028989611db8565b90506000612b168261179d858189896122df565b949d949c50929a509298505050505050505050565b600082118015612b3b5750600081115b15610e0b57601c54612b589030906001600160a01b031684611e5e565b601c546001600160a01b031663f305d719823085600080612b77611895565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612be257600080fd5b505af1158015612bf6573d6000803e3d6000fd5b50505050506040513d60608110156125a657600080fd5b600e54158015612c1d5750601054155b8015612c295750601454155b8015612c355750601654155b15612c3f57612c6a565b600e8054600f5560108054601355601480546015556016805460175560009384905591839055829055555b565b6000806000806000806000612c8088612284565b9650965096509650965096509650612cc688600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612cf590886122df565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054612d24908761222a565b6001600160a01b038a16600090815260016020526040902055612d4681612fc3565b612d4f82612fc3565b612d59858461304b565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000806000806000806000612dc488612284565b9650965096509650965096509650612e0a87600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054612e40908561222a565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612d24908761222a565b6000806000806000806000612e8388612284565b9650965096509650965096509650612cf587600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6000806000806000806000612edd88612284565b9650965096509650965096509650612f2388600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612e0a90886122df565b600f54600e55601354601055601554601455601754601655565b6000610b3b6103e86117ad600e5485611db890919063ffffffff16565b6000610b3b6103e86117ad60105485611db890919063ffffffff16565b6000610b3b6103e86117ad60145485611db890919063ffffffff16565b6000612fcd612207565b90506000612fdb8383611db8565b30600090815260016020526040902054909150612ff8908261222a565b3060009081526001602090815260408083209390935560069052205460ff16156125a85730600090815260026020526040902054613036908461222a565b30600090815260026020526040902055505050565b60095461305890836122df565b600955600a54613068908261222a565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e446576202b206d61726b6574696e67206d75737420657175616c20746f74616c20666565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ccea879dde111474af64d219342ff1d28295830d296a7b409c9bc3d2bc9e0faa64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80635342acb41161014457806395d89b41116100b6578063c49b9a801161007a578063c49b9a80146108ce578063d543dbeb146108fa578063dd62ed3e14610924578063ea2f0b371461095f578063f2fde38b14610992578063f4293890146109c557610272565b806395d89b411461081d578063a457c2d714610832578063a9059cbb1461086b578063aa45026b146108a4578063af01f2b2146108b957610272565b806377e5006f1161010857806377e5006f146107395780638421b5071461076c57806388f82020146107965780638c0b5e22146107c95780638da5cb5b146107de5780638ee88c53146107f357610272565b80635342acb41461069457806354959363146106c75780636bc87c3a146106dc57806370a08231146106f1578063715018a61461072457610272565b80633b124fe7116101dd57806348a46473116101a157806348a46473146105c257806349bd5a5e146105ec5780634a74bb02146106015780634d33cc651461061657806351bc3c851461064c57806352390c021461066157610272565b80633b124fe7146104eb5780633bd5d1731461050057806341cb87fc1461052a578063437823ec1461055d5780634549b0391461059057610272565b806318160ddd1161022f57806318160ddd146103d257806323b872dd146103e75780632d8381191461042a578063313ce567146104545780633685d4191461047f57806339509351146104b257610272565b8063061c82d01461027757806306fdde03146102a3578063095ea7b31461032d57806313114a9d1461037a5780631694505e146103a157610272565b3661027257005b600080fd5b34801561028357600080fd5b506102a16004803603602081101561029a57600080fd5b50356109da565b005b3480156102af57600080fd5b506102b8610a8d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102f25781810151838201526020016102da565b50505050905090810190601f16801561031f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033957600080fd5b506103666004803603604081101561035057600080fd5b506001600160a01b038135169060200135610b23565b604080519115158252519081900360200190f35b34801561038657600080fd5b5061038f610b41565b60408051918252519081900360200190f35b3480156103ad57600080fd5b506103b6610b47565b604080516001600160a01b039092168252519081900360200190f35b3480156103de57600080fd5b5061038f610b56565b3480156103f357600080fd5b506103666004803603606081101561040a57600080fd5b506001600160a01b03813581169160208101359091169060400135610b5c565b34801561043657600080fd5b5061038f6004803603602081101561044d57600080fd5b5035610be3565b34801561046057600080fd5b50610469610c45565b6040805160ff9092168252519081900360200190f35b34801561048b57600080fd5b506102a1600480360360208110156104a257600080fd5b50356001600160a01b0316610c4e565b3480156104be57600080fd5b50610366600480360360408110156104d557600080fd5b506001600160a01b038135169060200135610e0f565b3480156104f757600080fd5b5061038f610e5d565b34801561050c57600080fd5b506102a16004803603602081101561052357600080fd5b5035610e63565b34801561053657600080fd5b506102a16004803603602081101561054d57600080fd5b50356001600160a01b0316610f3f565b34801561056957600080fd5b506102a16004803603602081101561058057600080fd5b50356001600160a01b0316611129565b34801561059c57600080fd5b5061038f600480360360408110156105b357600080fd5b508035906020013515156111a5565b3480156105ce57600080fd5b506102a1600480360360208110156105e557600080fd5b5035611239565b3480156105f857600080fd5b506103b66112d1565b34801561060d57600080fd5b506103666112e0565b34801561062257600080fd5b506102a16004803603606081101561063957600080fd5b50803590602081013590604001356112f0565b34801561065857600080fd5b506102a16113ec565b34801561066d57600080fd5b506102a16004803603602081101561068457600080fd5b50356001600160a01b031661145d565b3480156106a057600080fd5b50610366600480360360208110156106b757600080fd5b50356001600160a01b03166115e3565b3480156106d357600080fd5b5061038f611601565b3480156106e857600080fd5b5061038f611607565b3480156106fd57600080fd5b5061038f6004803603602081101561071457600080fd5b50356001600160a01b031661160d565b34801561073057600080fd5b506102a161166f565b34801561074557600080fd5b5061038f6004803603602081101561075c57600080fd5b50356001600160a01b0316611711565b34801561077857600080fd5b506102a16004803603602081101561078f57600080fd5b50356117be565b3480156107a257600080fd5b50610366600480360360208110156107b957600080fd5b50356001600160a01b0316611871565b3480156107d557600080fd5b5061038f61188f565b3480156107ea57600080fd5b506103b6611895565b3480156107ff57600080fd5b506102a16004803603602081101561081657600080fd5b50356118a4565b34801561082957600080fd5b506102b8611957565b34801561083e57600080fd5b506103666004803603604081101561085557600080fd5b506001600160a01b0381351690602001356119b8565b34801561087757600080fd5b506103666004803603604081101561088e57600080fd5b506001600160a01b038135169060200135611a20565b3480156108b057600080fd5b5061038f611a34565b3480156108c557600080fd5b5061038f611a3a565b3480156108da57600080fd5b506102a1600480360360208110156108f157600080fd5b50351515611a40565b34801561090657600080fd5b506102a16004803603602081101561091d57600080fd5b5035611aeb565b34801561093057600080fd5b5061038f6004803603604081101561094757600080fd5b506001600160a01b0381358116916020013516611bba565b34801561096b57600080fd5b506102a16004803603602081101561098257600080fd5b50356001600160a01b0316611be5565b34801561099e57600080fd5b506102a1600480360360208110156109b557600080fd5b50356001600160a01b0316611c5e565b3480156109d157600080fd5b506102a1611d56565b6109e2611e5a565b6000546001600160a01b03908116911614610a32576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6050811115610a88576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b600e55565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b5050505050905090565b6000610b37610b30611e5a565b8484611e5e565b5060015b92915050565b600a5490565b601c546001600160a01b031681565b60085490565b6000610b69848484611ee6565b610bd984610b75611e5a565b610bd485604051806060016040528060288152602001613150602891396001600160a01b038a16600090815260036020526040812090610bb3611e5a565b6001600160a01b031681526020810191909152604001600020549190612170565b611e5e565b5060019392505050565b6000600954821115610c265760405162461bcd60e51b815260040180806020018281038252602a815260200180613093602a913960400191505060405180910390fd5b6000610c30612207565b9050610c3c8382611e18565b9150505b919050565b600d5460ff1690565b610c56611e5a565b6000546001600160a01b03908116911614610ca6576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610d13576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600754811015610e0b57816001600160a01b031660078281548110610d3757fe5b6000918252602090912001546001600160a01b03161415610e0357600780546000198101908110610d6457fe5b600091825260209091200154600780546001600160a01b039092169183908110610d8a57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600690925220805460ff191690556007805480610ddc57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0b565b600101610d16565b5050565b6000610b37610e1c611e5a565b84610bd48560036000610e2d611e5a565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061222a565b600e5481565b6000610e6d611e5a565b6001600160a01b03811660009081526006602052604090205490915060ff1615610ec85760405162461bcd60e51b815260040180806020018281038252602c8152602001806131e6602c913960400191505060405180910390fd5b6000610ed383612284565b5050506001600160a01b038616600090815260016020526040902054939450610f01939250849150506122df565b6001600160a01b038316600090815260016020526040902055600954610f2790826122df565b600955600a54610f37908461222a565b600a55505050565b610f47611e5a565b6000546001600160a01b03908116911614610f97576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610fd557600080fd5b505afa158015610fe9573d6000803e3d6000fd5b505050506040513d6020811015610fff57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561104f57600080fd5b505afa158015611063573d6000803e3d6000fd5b505050506040513d602081101561107957600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156110cb57600080fd5b505af11580156110df573d6000803e3d6000fd5b505050506040513d60208110156110f557600080fd5b5051601d80546001600160a01b039283166001600160a01b031991821617909155601c805493909216921691909117905550565b611131611e5a565b6000546001600160a01b03908116911614611181576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006008548311156111fe576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161121e57600061120e84612284565b50949650610b3b95505050505050565b600061122984612284565b50939650610b3b95505050505050565b611241611e5a565b6000546001600160a01b03908116911614611291576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b633b9aca008102601e556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601d546001600160a01b031681565b601d54600160a81b900460ff1681565b6112f8611e5a565b6000546001600160a01b03908116911614611348576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b606483111561139e576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b82818301146113de5760405162461bcd60e51b815260040180806020018281038252602481526020018061310b6024913960400191505060405180910390fd5b601092909255601155601255565b6113f4611e5a565b6000546001600160a01b03908116911614611444576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b600061144f3061160d565b905061145a81612321565b50565b611465611e5a565b6000546001600160a01b039081169116146114b5576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1615611523576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600160205260409020541561157d576001600160a01b03811660009081526001602052604090205461156390610be3565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b60165481565b60145481565b6001600160a01b03811660009081526006602052604081205460ff161561164d57506001600160a01b038116600090815260026020526040902054610c40565b6001600160a01b038216600090815260016020526040902054610b3b90610be3565b611677611e5a565b6000546001600160a01b039081169116146116c7576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600047828261171f8261160d565b90506000805b60075481101561176d576117638261175d6007848154811061174357fe5b6000918252602090912001546001600160a01b031661160d565b9061222a565b9150600101611725565b50601d546000906117b3906117a390849061179d90611794906001600160a01b031661160d565b600854906122df565b906122df565b6117ad8588611db8565b90611e18565b979650505050505050565b6117c6611e5a565b6000546001600160a01b03908116911614611816576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b60fa81111561186c576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000604482015290519081900360640190fd5b601655565b6001600160a01b031660009081526006602052604090205460ff1690565b60185481565b6000546001600160a01b031690565b6118ac611e5a565b6000546001600160a01b039081169116146118fc576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6050811115611952576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d20666565206c696d697420697320382070657263656e740000604482015290519081900360640190fd5b601455565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b195780601f10610aee57610100808354040283529160200191610b19565b6000610b376119c5611e5a565b84610bd48560405180606001604052806025815260200161321260259139600360006119ef611e5a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612170565b6000610b37611a2d611e5a565b8484611ee6565b60105481565b601b5481565b611a48611e5a565b6000546001600160a01b03908116911614611a98576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b601d8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611af3611e5a565b6000546001600160a01b03908116911614611b43576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6005811015611b99576040805162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e35250000000000604482015290519081900360640190fd5b611bb46103e86117ad83600854611db890919063ffffffff16565b60185550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b611bed611e5a565b6000546001600160a01b03908116911614611c3d576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b611c66611e5a565b6000546001600160a01b03908116911614611cb6576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b6001600160a01b038116611cfb5760405162461bcd60e51b81526004018080602001828103825260268152602001806130bd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d5e611e5a565b6000546001600160a01b03908116911614611dae576040805162461bcd60e51b81526020600482018190526024820152600080516020613178833981519152604482015290519081900360640190fd5b4761145a816124cf565b600082611dc757506000610b3b565b82820282848281611dd457fe5b0414611e115760405162461bcd60e51b815260040180806020018281038252602181526020018061312f6021913960400191505060405180910390fd5b9392505050565b6000611e1183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506125ad565b3390565b6001600160a01b038316611e7157600080fd5b6001600160a01b038216611e8457600080fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f2b5760405162461bcd60e51b81526004018080602001828103825260258152602001806131c16025913960400191505060405180910390fd5b6001600160a01b038216611f705760405162461bcd60e51b81526004018080602001828103825260238152602001806130706023913960400191505060405180910390fd5b60008111611faf5760405162461bcd60e51b81526004018080602001828103825260298152602001806131986029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460ff16158015611ff157506001600160a01b03821660009081526005602052604090205460ff16155b15612037576018548111156120375760405162461bcd60e51b81526004018080602001828103825260288152602001806130e36028913960400191505060405180910390fd5b601054601154601b54421180159061205c5750601d546001600160a01b038581169116145b15612086576016546010546120709161222a565b6010556016546011546120829161222a565b6011555b60006120913061160d565b601e54909150811080159081906120b25750601d54600160a01b900460ff16155b80156120cc5750601d546001600160a01b03888116911614155b80156120e15750601d54600160a81b900460ff165b1561210857600082601854116120f9576018546120fb565b825b905061210681612612565b505b6001600160a01b03871660009081526004602052604090205460019060ff168061214a57506001600160a01b03871660009081526004602052604090205460ff165b15612153575060005b61215f888888846127a9565b505050601091909155601155505050565b600081848411156121ff5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121c45781810151838201526020016121ac565b50505050905090810190601f1680156121f15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612214612917565b90925090506122238282611e18565b9250505090565b600082820183811015611e11576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080600080600080600080600080600061229e8c612a7a565b935093509350935060008060006122bf8f8787876122ba612207565b612ac9565b919f509d509b509599509397509195509350505050919395979092949650565b6000611e1183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612170565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061234f57fe5b6001600160a01b03928316602091820292909201810191909152601c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156123a357600080fd5b505afa1580156123b7573d6000803e3d6000fd5b505050506040513d60208110156123cd57600080fd5b50518151829060019081106123de57fe5b6001600160a01b039283166020918202929092010152601c546124049130911684611e5e565b601c5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561248a578181015183820152602001612472565b505050509050019650505050505050600060405180830381600087803b1580156124b357600080fd5b505af11580156124c7573d6000803e3d6000fd5b505050505050565b6000811180156124e157506000601054115b1561145a5760006125036010546117ad60115485611db890919063ffffffff16565b905060006125226010546117ad60125486611db890919063ffffffff16565b90508115612566576019546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612564573d6000803e3d6000fd5b505b80156125a857601a546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156125a6573d6000803e3d6000fd5b505b505050565b600081836125fc5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121c45781810151838201526020016121ac565b50600083858161260857fe5b0495945050505050565b601d805460ff60a01b1916600160a01b179055601454601054600091612638919061222a565b9050806126455750612799565b6000612660826117ad60145486611db890919063ffffffff16565b9050600061267d836117ad60105487611db890919063ffffffff16565b9050600061268c836002611e18565b9050478315801561269b575082155b156126aa575050505050612799565b6126bc6126b7848461222a565b612321565b60006126c847836122df565b905080156127925760006126f46126eb6002601454611e1890919063ffffffff16565b6010549061222a565b9050600061271c826117ad6127156002601454611e1890919063ffffffff16565b8690611db8565b90506000612739836117ad60105487611db890919063ffffffff16565b90506127458683612b2b565b61274e816124cf565b604080518b81526020810184905280820183905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505b5050505050505b50601d805460ff60a01b19169055565b806127b6576127b6612c0d565b6001600160a01b03841660009081526006602052604090205460ff1680156127f757506001600160a01b03831660009081526006602052604090205460ff16155b1561280c57612807848484612c6c565b61290a565b6001600160a01b03841660009081526006602052604090205460ff1615801561284d57506001600160a01b03831660009081526006602052604090205460ff165b1561285d57612807848484612db0565b6001600160a01b03841660009081526006602052604090205460ff1615801561289f57506001600160a01b03831660009081526006602052604090205460ff16155b156128af57612807848484612e6f565b6001600160a01b03841660009081526006602052604090205460ff1680156128ef57506001600160a01b03831660009081526006602052604090205460ff165b156128ff57612807848484612ec9565b61290a848484612e6f565b806125a6576125a6612f52565b6009546008546000918291825b600754811015612a485782600160006007848154811061294057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806129a5575081600260006007848154811061297e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156129bc5760095460085494509450505050612a76565b6129fc60016000600784815481106129d057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122df565b9250612a3e6002600060078481548110612a1257fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122df565b9150600101612924565b50600854600954612a5891611e18565b821015612a7057600954600854935093505050612a76565b90925090505b9091565b6000806000806000612a8b86612f6c565b90506000612a9887612f89565b90506000612aa588612fa6565b90506000612ab98261179d85818d896122df565b9993985091965094509092505050565b6000808080612ad88986611db8565b90506000612ae68987611db8565b90506000612af48988611db8565b90506000612b028989611db8565b90506000612b168261179d858189896122df565b949d949c50929a509298505050505050505050565b600082118015612b3b5750600081115b15610e0b57601c54612b589030906001600160a01b031684611e5e565b601c546001600160a01b031663f305d719823085600080612b77611895565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612be257600080fd5b505af1158015612bf6573d6000803e3d6000fd5b50505050506040513d60608110156125a657600080fd5b600e54158015612c1d5750601054155b8015612c295750601454155b8015612c355750601654155b15612c3f57612c6a565b600e8054600f5560108054601355601480546015556016805460175560009384905591839055829055555b565b6000806000806000806000612c8088612284565b9650965096509650965096509650612cc688600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612cf590886122df565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054612d24908761222a565b6001600160a01b038a16600090815260016020526040902055612d4681612fc3565b612d4f82612fc3565b612d59858461304b565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000806000806000806000612dc488612284565b9650965096509650965096509650612e0a87600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054612e40908561222a565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612d24908761222a565b6000806000806000806000612e8388612284565b9650965096509650965096509650612cf587600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6000806000806000806000612edd88612284565b9650965096509650965096509650612f2388600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122df90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054612e0a90886122df565b600f54600e55601354601055601554601455601754601655565b6000610b3b6103e86117ad600e5485611db890919063ffffffff16565b6000610b3b6103e86117ad60105485611db890919063ffffffff16565b6000610b3b6103e86117ad60145485611db890919063ffffffff16565b6000612fcd612207565b90506000612fdb8383611db8565b30600090815260016020526040902054909150612ff8908261222a565b3060009081526001602090815260408083209390935560069052205460ff16156125a85730600090815260026020526040902054613036908461222a565b30600090815260026020526040902055505050565b60095461305890836122df565b600955600a54613068908261222a565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e446576202b206d61726b6574696e67206d75737420657175616c20746f74616c20666565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ccea879dde111474af64d219342ff1d28295830d296a7b409c9bc3d2bc9e0faa64736f6c634300060c0033

Deployed Bytecode Sourcemap

25196:24151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47923:165;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47923:165:0;;:::i;:::-;;28658:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29570:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29570:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30691:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26776:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26776:41:0;;;;;;;;;;;;;;28935:95;;;;;;;;;;;;;:::i;29739:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29739:313:0;;;;;;;;;;;;;;;;;:::i;31618:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31618:253:0;;:::i;28844:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32220:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32220:479:0;-1:-1:-1;;;;;32220:479:0;;:::i;30060:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30060:218:0;;;;;;;;:::i;26010:26::-;;;;;;;;;;;;;:::i;30786:378::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30786:378:0;;:::i;28328:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28328:322:0;-1:-1:-1;;;;;28328:322:0;;:::i;47434:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47434:113:0;-1:-1:-1;;;;;47434:113:0;;:::i;31172:438::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31172:438:0;;;;;;;;;:::i;49065:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49065:181:0;;:::i;26824:28::-;;;;;;;;;;;;;:::i;26893:40::-;;;;;;;;;;;;;:::i;48100:363::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48100:363:0;;;;;;;;;;;;:::i;46959:156::-;;;;;;;;;;;;;:::i;31879:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31879:333:0;-1:-1:-1;;;;;31879:333:0;;:::i;47297:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47297:125:0;-1:-1:-1;;;;;47297:125:0;;:::i;26359:34::-;;;;;;;;;;;;;:::i;26257:33::-;;;;;;;;;;;;;:::i;29038:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29038:198:0;-1:-1:-1;;;;;29038:198:0;;:::i;16559:148::-;;;;;;;;;;;;;:::i;32982:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32982:540:0;-1:-1:-1;;;;;32982:540:0;;:::i;48677:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48677:199:0;;:::i;30563:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30563:120:0;-1:-1:-1;;;;;30563:120:0;;:::i;26463:53::-;;;;;;;;;;;;;:::i;15916:79::-;;;;;;;;;;;;;:::i;48475:194::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48475:194:0;;:::i;28749:87::-;;;;;;;;;;;;;:::i;30286:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30286:269:0;;;;;;;;:::i;29244:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29244:167:0;;;;;;;;:::i;26093:27::-;;;;;;;;;;;;;:::i;26727:40::-;;;;;;;;;;;;;:::i;48884:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48884:173:0;;;;:::i;47721:190::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47721:190:0;;:::i;29419:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29419:143:0;;;;;;;;;;:::i;47559:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47559:112:0;-1:-1:-1;;;;;47559:112:0;;:::i;16862:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16862:244:0;-1:-1:-1;;;;;16862:244:0;;:::i;47123:162::-;;;;;;;;;;;;;:::i;47923:165::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;48016:2:::1;48006:6;:12;;47998:55;;;::::0;;-1:-1:-1;;;47998:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48064:7;:16:::0;47923:165::o;28658:83::-;28728:5;28721:12;;;;;;;;-1:-1:-1;;28721:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28695:13;;28721:12;;28728:5;;28721:12;;28728:5;28721:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28658:83;:::o;29570:161::-;29645:4;29662:39;29671:12;:10;:12::i;:::-;29685:7;29694:6;29662:8;:39::i;:::-;-1:-1:-1;29719:4:0;29570:161;;;;;:::o;30691:87::-;30760:10;;30691:87;:::o;26776:41::-;;;-1:-1:-1;;;;;26776:41:0;;:::o;28935:95::-;29015:7;;28935:95;:::o;29739:313::-;29837:4;29854:36;29864:6;29872:9;29883:6;29854:9;:36::i;:::-;29901:121;29910:6;29918:12;:10;:12::i;:::-;29932:89;29970:6;29932:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29932:19:0;;;;;;:11;:19;;;;;;29952:12;:10;:12::i;:::-;-1:-1:-1;;;;;29932:33:0;;;;;;;;;;;;-1:-1:-1;29932:33:0;;;:89;:37;:89::i;:::-;29901:8;:121::i;:::-;-1:-1:-1;30040:4:0;29739:313;;;;;:::o;31618:253::-;31684:7;31723;;31712;:18;;31704:73;;;;-1:-1:-1;;;31704:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31788:19;31811:10;:8;:10::i;:::-;31788:33;-1:-1:-1;31839:24:0;:7;31788:33;31839:11;:24::i;:::-;31832:31;;;31618:253;;;;:::o;28844:83::-;28910:9;;;;28844:83;:::o;32220:479::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32302:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32294:60;;;::::0;;-1:-1:-1;;;32294:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32370:9;32365:327;32389:9;:16:::0;32385:20;::::1;32365:327;;;32447:7;-1:-1:-1::0;;;;;32431:23:0::1;:9;32441:1;32431:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32431:12:0::1;:23;32427:254;;;32490:9;32500:16:::0;;-1:-1:-1;;32500:20:0;;;32490:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32475:9:::1;:12:::0;;-1:-1:-1;;;;;32490:31:0;;::::1;::::0;32485:1;;32475:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32475:46:0::1;-1:-1:-1::0;;;;;32475:46:0;;::::1;;::::0;;32540:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32579:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32579:28:0::1;::::0;;32626:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32626:15:0;;;;;-1:-1:-1;;;;;;32626:15:0::1;::::0;;;;;32660:5:::1;;32427:254;32407:3;;32365:327;;;;32220:479:::0;:::o;30060:218::-;30148:4;30165:83;30174:12;:10;:12::i;:::-;30188:7;30197:50;30236:10;30197:11;:25;30209:12;:10;:12::i;:::-;-1:-1:-1;;;;;30197:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30197:25:0;;;:34;;;;;;;;;;;:38;:50::i;26010:26::-;;;;:::o;30786:378::-;30838:14;30855:12;:10;:12::i;:::-;-1:-1:-1;;;;;30887:19:0;;;;;;:11;:19;;;;;;30838:29;;-1:-1:-1;30887:19:0;;30886:20;30878:77;;;;-1:-1:-1;;;30878:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30967:15;30992:19;31003:7;30992:10;:19::i;:::-;-1:-1:-1;;;;;;;;31040:15:0;;;;;;:7;:15;;;;;;30966:45;;-1:-1:-1;31040:28:0;;:15;-1:-1:-1;30966:45:0;;-1:-1:-1;;31040:19:0;:28::i;:::-;-1:-1:-1;;;;;31022:15:0;;;;;;:7;:15;;;;;:46;31089:7;;:20;;31101:7;31089:11;:20::i;:::-;31079:7;:30;31133:10;;:23;;31148:7;31133:14;:23::i;:::-;31120:10;:36;-1:-1:-1;;;30786:378:0:o;28328:322::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;28403:36:::1;28461:9;28403:68;;28516:17;-1:-1:-1::0;;;;;28516:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28516:27:0;28571:24:::1;::::0;;-1:-1:-1;;;28571:24:0;;;;-1:-1:-1;;;;;28498:57:0;;::::1;::::0;::::1;::::0;28564:4:::1;::::0;28571:22;;::::1;::::0;::::1;::::0;:24:::1;::::0;;::::1;::::0;28516:27:::1;::::0;28571:24;;;;;;;;:22;:24;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28571:24:0;28498:98:::1;::::0;;-1:-1:-1;;;;;;28498:98:0::1;::::0;;;;;;-1:-1:-1;;;;;28498:98:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;28571:24:::1;::::0;28498:98;;;;;;;-1:-1:-1;28498:98:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28498:98:0;28482:13:::1;:114:::0;;-1:-1:-1;;;;;28482:114:0;;::::1;-1:-1:-1::0;;;;;;28482:114:0;;::::1;;::::0;;;28607:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;28328:322:0:o;47434:113::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47505:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;47505:34:0::1;47535:4;47505:34;::::0;;47434:113::o;31172:438::-;31262:7;31301;;31290;:18;;31282:62;;;;;-1:-1:-1;;;31282:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31360:17;31355:248;;31395:15;31420:19;31431:7;31420:10;:19::i;:::-;-1:-1:-1;31394:45:0;;-1:-1:-1;31454:14:0;;-1:-1:-1;;;;;;31454:14:0;31355:248;31503:23;31535:19;31546:7;31535:10;:19::i;:::-;-1:-1:-1;31501:53:0;;-1:-1:-1;31569:22:0;;-1:-1:-1;;;;;;31569:22:0;49065:181;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;49180:5:::1;49168:17:::0;::::1;49146:19;:39:::0;49201:37:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;49065:181:::0;:::o;26824:28::-;;;-1:-1:-1;;;;;26824:28:0;;:::o;26893:40::-;;;-1:-1:-1;;;26893:40:0;;;;;:::o;48100:363::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;48231:3:::1;48221:6;:13;;48213:57;;;::::0;;-1:-1:-1;;;48213:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48315:6;48299:12;48290:6;:21;:31;48282:80;;;;-1:-1:-1::0;;;48282:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48373:7;:16:::0;;;;48400:7:::1;:16:::0;48427:13:::1;:28:::0;48100:363::o;46959:156::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;47013:23:::1;47039:24;47057:4;47039:9;:24::i;:::-;47013:50;;47074:33;47091:15;47074:16;:33::i;:::-;16198:1;46959:156::o:0;31879:333::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31962:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31961:21;31953:61;;;::::0;;-1:-1:-1;;;31953:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32028:16:0;::::1;32047:1;32028:16:::0;;;:7:::1;:16;::::0;;;;;:20;32025:108:::1;;-1:-1:-1::0;;;;;32104:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32084:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32065:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32025:108:::1;-1:-1:-1::0;;;;;32143:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32143:27:0::1;32166:4;32143:27:::0;;::::1;::::0;;;32181:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32181:23:0::1;::::0;;::::1;::::0;;31879:333::o;47297:125::-;-1:-1:-1;;;;;47387:27:0;47363:4;47387:27;;;:18;:27;;;;;;;;;47297:125::o;26359:34::-;;;;:::o;26257:33::-;;;;:::o;29038:198::-;-1:-1:-1;;;;;29128:20:0;;29104:7;29128:20;;;:11;:20;;;;;;;;29124:49;;;-1:-1:-1;;;;;;29157:16:0;;;;;;:7;:16;;;;;;29150:23;;29124:49;-1:-1:-1;;;;;29211:16:0;;;;;;:7;:16;;;;;;29191:37;;:19;:37::i;16559:148::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;16666:1:::1;16650:6:::0;;16629:40:::1;::::0;-1:-1:-1;;;;;16650:6:0;;::::1;::::0;16629:40:::1;::::0;16666:1;;16629:40:::1;16697:1;16680:19:::0;;-1:-1:-1;;;;;;16680:19:0::1;::::0;;16559:148::o;32982:540::-;33046:7;33084:21;33133:7;33046;33172:17;33133:7;33172:9;:17::i;:::-;33151:38;-1:-1:-1;33200:21:0;;33232:140;33256:9;:16;33252:20;;33232:140;;;33312:45;33340:16;33312:23;33322:9;33332:1;33322:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33322:12:0;33312:9;:23::i;:::-;:27;;:45::i;:::-;33293:64;-1:-1:-1;33274:3:0;;33232:140;;;-1:-1:-1;33451:13:0;;33382:15;;33400:89;;33429:59;;33471:16;;33429:37;;33441:24;;-1:-1:-1;;;;;33451:13:0;33441:9;:24::i;:::-;33429:7;;;:11;:37::i;:::-;:41;;:59::i;:::-;33400:24;:10;33415:8;33400:14;:24::i;:::-;:28;;:89::i;:::-;33382:107;32982:540;-1:-1:-1;;;;;;;32982:540:0:o;48677:199::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;48787:3:::1;48767:16;:23;;48759:66;;;::::0;;-1:-1:-1;;;48759:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48836:13;:32:::0;48677:199::o;30563:120::-;-1:-1:-1;;;;;30655:20:0;30631:4;30655:20;;;:11;:20;;;;;;;;;30563:120::o;26463:53::-;;;;:::o;15916:79::-;15954:7;15981:6;-1:-1:-1;;;;;15981:6:0;15916:79;:::o;48475:194::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;48585:2:::1;48569:12;:18;;48561:61;;;::::0;;-1:-1:-1;;;48561:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48633:13;:28:::0;48475:194::o;28749:87::-;28821:7;28814:14;;;;;;;;-1:-1:-1;;28814:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28788:13;;28814:14;;28821:7;;28814:14;;28821:7;28814:14;;;;;;;;;;;;;;;;;;;;;;;;30286:269;30379:4;30396:129;30405:12;:10;:12::i;:::-;30419:7;30428:96;30467:15;30428:96;;;;;;;;;;;;;;;;;:11;:25;30440:12;:10;:12::i;:::-;-1:-1:-1;;;;;30428:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30428:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;29244:167::-;29322:4;29339:42;29349:12;:10;:12::i;:::-;29363:9;29374:6;29339:9;:42::i;26093:27::-;;;;:::o;26727:40::-;;;;:::o;48884:173::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;48963:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;48963:32:0;::::1;-1:-1:-1::0;;;;48963:32:0;;::::1;::::0;;;::::1;::::0;;;49011:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48884:173:::0;:::o;47721:190::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;47814:1:::1;47802:8;:13;;47794:53;;;::::0;;-1:-1:-1;;;47794:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47872:31;47898:4;47872:21;47884:8;47872:7;;:11;;:21;;;;:::i;:31::-;47858:11;:45:::0;-1:-1:-1;47721:190:0:o;29419:143::-;-1:-1:-1;;;;;29527:18:0;;;29500:7;29527:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29419:143::o;47559:112::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47628:27:0::1;47658:5;47628:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;47628:35:0::1;::::0;;47559:112::o;16862:244::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16951:22:0;::::1;16943:73;;;;-1:-1:-1::0;;;16943:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17053:6;::::0;;17032:38:::1;::::0;-1:-1:-1;;;;;17032:38:0;;::::1;::::0;17053:6;::::1;::::0;17032:38:::1;::::0;::::1;17081:6;:17:::0;;-1:-1:-1;;;;;;17081:17:0::1;-1:-1:-1::0;;;;;17081:17:0;;;::::1;::::0;;;::::1;::::0;;16862:244::o;47123:162::-;16138:12;:10;:12::i;:::-;16128:6;;-1:-1:-1;;;;;16128:6:0;;;:22;;;16120:67;;;;;-1:-1:-1;;;16120:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16120:67:0;;;;;;;;;;;;;;;47206:21:::1;47238:39;47206:21:::0;47238:19:::1;:39::i;5640:471::-:0;5698:7;5943:6;5939:47;;-1:-1:-1;5973:1:0;5966:8;;5939:47;6010:5;;;6014:1;6010;:5;:1;6034:5;;;;;:10;6026:56;;;;-1:-1:-1;;;6026:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6102:1;5640:471;-1:-1:-1;;;5640:471:0:o;6587:132::-;6645:7;6672:39;6676:1;6679;6672:39;;;;;;;;;;;;;;;;;:3;:39::i;370:106::-;458:10;370:106;:::o;32711:259::-;-1:-1:-1;;;;;32804:19:0;;32796:28;;;;;;-1:-1:-1;;;;;32843:21:0;;32835:30;;;;;;-1:-1:-1;;;;;32878:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32930:32;;;;;;;;;;;;;;;;;32711:259;;;:::o;33534:2224::-;-1:-1:-1;;;;;33656:18:0;;33648:68;;;;-1:-1:-1;;;33648:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33735:16:0;;33727:64;;;;-1:-1:-1;;;33727:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33819:1;33810:6;:10;33802:64;;;;-1:-1:-1;;;33802:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33906:26:0;;;;;;:20;:26;;;;;;;;33905:27;:69;;;;-1:-1:-1;;;;;;33950:24:0;;;;;;:20;:24;;;;;;;;33949:25;33905:69;33887:269;;;34057:11;;34047:6;:21;;34021:123;;;;-1:-1:-1;;;34021:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34221:7;;34263;;34285:21;;34310:3;-1:-1:-1;34285:28:0;;;:51;;-1:-1:-1;34323:13:0;;-1:-1:-1;;;;;34317:19:0;;;34323:13;;34317:19;34285:51;34281:171;;;34375:13;;34363:7;;:26;;:11;:26::i;:::-;34353:7;:36;34426:13;;34414:7;;:26;;:11;:26::i;:::-;34404:7;:36;34281:171;34746:28;34777:24;34795:4;34777:9;:24::i;:::-;34863:19;;34746:55;;-1:-1:-1;34839:43:0;;;;;;;34911:53;;-1:-1:-1;34948:16:0;;-1:-1:-1;;;34948:16:0;;;;34947:17;34911:53;:91;;;;-1:-1:-1;34989:13:0;;-1:-1:-1;;;;;34981:21:0;;;34989:13;;34981:21;;34911:91;:129;;;;-1:-1:-1;35019:21:0;;-1:-1:-1;;;35019:21:0;;;;34911:129;34893:353;;;35097:20;35134;35120:11;;:34;:71;;35180:11;;35120:71;;;35157:20;35120:71;35097:94;;35206:28;35221:12;35206:14;:28::i;:::-;34893:353;;-1:-1:-1;;;;;35456:24:0;;35328:12;35456:24;;;:18;:24;;;;;;35343:4;;35456:24;;;:50;;-1:-1:-1;;;;;;35484:22:0;;;;;;:18;:22;;;;;;;;35456:50;35453:96;;;-1:-1:-1;35532:5:0;35453:96;35639:41;35654:4;35660:2;35664:6;35672:7;35639:14;:41::i;:::-;-1:-1:-1;;;35693:7:0;:23;;;;35727:7;:23;-1:-1:-1;;;33534:2224:0:o;5189:192::-;5275:7;5311:12;5303:6;;;;5295:29;;;;-1:-1:-1;;;5295:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5347:5:0;;;5189:192::o;44407:163::-;44448:7;44469:15;44486;44505:19;:17;:19::i;:::-;44468:56;;-1:-1:-1;44468:56:0;-1:-1:-1;44542:20:0;44468:56;;44542:11;:20::i;:::-;44535:27;;;;44407:163;:::o;4286:181::-;4344:7;4376:5;;;4400:6;;;;4392:46;;;;;-1:-1:-1;;;4392:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43024:454;43083:7;43092;43101;43110;43119;43128;43137;43158:23;43183:12;43197;43211:18;43233:20;43245:7;43233:11;:20::i;:::-;43157:96;;;;;;;;43265:15;43282:23;43307:12;43323:56;43335:7;43344:4;43350;43356:10;43368;:8;:10::i;:::-;43323:11;:56::i;:::-;43264:115;;-1:-1:-1;43264:115:0;-1:-1:-1;43264:115:0;-1:-1:-1;43430:15:0;;-1:-1:-1;43447:4:0;;-1:-1:-1;43453:4:0;;-1:-1:-1;43459:10:0;-1:-1:-1;;;;43024:454:0;;;;;;;;;:::o;4750:136::-;4808:7;4835:43;4839:1;4842;4835:43;;;;;;;;;;;;;;;;;:3;:43::i;38221:589::-;38371:16;;;38385:1;38371:16;;;38347:21;38371:16;;;;;38347:21;38371:16;;;;;;;;;;-1:-1:-1;38371:16:0;38347:40;;38416:4;38398;38403:1;38398:7;;;;;;;;-1:-1:-1;;;;;38398:23:0;;;:7;;;;;;;;;;:23;;;;38442:15;;:22;;;-1:-1:-1;;;38442:22:0;;;;:15;;;;;:20;;:22;;;;;38398:7;;38442:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38442:22:0;38432:7;;:4;;38437:1;;38432:7;;;;;;-1:-1:-1;;;;;38432:32:0;;;:7;;;;;;;;;:32;38509:15;;38477:62;;38494:4;;38509:15;38527:11;38477:8;:62::i;:::-;38578:15;;:224;;-1:-1:-1;;;38578:224:0;;;;;;;;:15;:224;;;;;;38756:4;38578:224;;;;;;38776:15;38578:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38578:15:0;;;;:66;;38659:11;;38729:4;;38756;38776:15;38578:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38221:589;;:::o;37813:400::-;37890:1;37881:6;:10;:25;;;;;37905:1;37895:7;;:11;37881:25;37877:329;;;37923:16;37942:32;37966:7;;37942:19;37953:7;;37942:6;:10;;:19;;;;:::i;:32::-;37923:51;;37989:22;38014:38;38044:7;;38014:25;38025:13;;38014:6;:10;;:25;;;;:::i;:38::-;37989:63;-1:-1:-1;38071:12:0;;38067:47;;38085:10;;:29;;-1:-1:-1;;;;;38085:10:0;;;;:29;;;;;38105:8;;38085:10;:29;:10;:29;38105:8;38085:10;:29;;;;;;;;;;;;;;;;;;;;;38067:47;38133:18;;38129:65;;38153:16;;:41;;-1:-1:-1;;;;;38153:16:0;;;;:41;;;;;38179:14;;38153:16;:41;:16;:41;38179:14;38153:16;:41;;;;;;;;;;;;;;;;;;;;;38129:65;37877:329;;37813:400;:::o;7215:278::-;7301:7;7336:12;7329:5;7321:28;;;;-1:-1:-1;;;7321:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7360:9;7376:1;7372;:5;;;;;;;7215:278;-1:-1:-1;;;;;7215:278:0:o;35770:2030::-;27300:16;:23;;-1:-1:-1;;;;27300:23:0;-1:-1:-1;;;27300:23:0;;;:16;35957:13;35945:7:::1;::::0;27300:23;;35945:26:::1;::::0;:7;:11:::1;:26::i;:::-;35913:58:::0;-1:-1:-1;35988:26:0;35984:39:::1;;36016:7;;;35984:39;36033:29;36065:66;36109:21;36065:39;36090:13;;36065:20;:24;;:39;;;;:::i;:66::-;36033:98;;36142:23;36168:60;36206:21;36168:33;36193:7;;36168:20;:24;;:33;;;;:::i;:60::-;36142:86:::0;-1:-1:-1;36301:21:0::1;36325:28;:21:::0;36351:1:::1;36325:25;:28::i;:::-;36301:52:::0;-1:-1:-1;36659:21:0::1;36705:26:::0;;:50;::::1;;;-1:-1:-1::0;36735:20:0;;36705:50:::1;36701:63;;;36757:7;;;;;;;36701:63;36816:52;36833:34;:15:::0;36853:13;36833:19:::1;:34::i;:::-;36816:16;:52::i;:::-;36889:18;36910:41;:21;36936:14:::0;36910:25:::1;:41::i;:::-;36889:62:::0;-1:-1:-1;36975:14:0;;36972:821:::1;;37078:27;37108:33;37120:20;37138:1;37120:13;;:17;;:20;;;;:::i;:::-;37108:7;::::0;;:11:::1;:33::i;:::-;37078:63;;37156:27;37186:61;37227:19;37186:36;37201:20;37219:1;37201:13;;:17;;:20;;;;:::i;:::-;37186:10:::0;;:14:::1;:36::i;:61::-;37156:91;;37262:21;37286:48;37314:19;37286:23;37301:7;;37286:10;:14;;:23;;;;:::i;:48::-;37262:72;;37450:48;37463:13;37478:19;37450:12;:48::i;:::-;37641:34;37661:13;37641:19;:34::i;:::-;37709:72;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;36972:821;;;;27335:1;;;;;;;-1:-1:-1::0;27347:16:0;:24;;-1:-1:-1;;;;27347:24:0;;;35770:2030::o;39517:860::-;39628:7;39624:54;;39652:14;:12;:14::i;:::-;-1:-1:-1;;;;;39702:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;39726:22:0;;;;;;:11;:22;;;;;;;;39725:23;39702:46;39698:597;;;39765:48;39787:6;39795:9;39806:6;39765:21;:48::i;:::-;39698:597;;;-1:-1:-1;;;;;39836:19:0;;;;;;:11;:19;;;;;;;;39835:20;:46;;;;-1:-1:-1;;;;;;39859:22:0;;;;;;:11;:22;;;;;;;;39835:46;39831:464;;;39898:46;39918:6;39926:9;39937:6;39898:19;:46::i;39831:464::-;-1:-1:-1;;;;;39967:19:0;;;;;;:11;:19;;;;;;;;39966:20;:47;;;;-1:-1:-1;;;;;;39991:22:0;;;;;;:11;:22;;;;;;;;39990:23;39966:47;39962:333;;;40030:44;40048:6;40056:9;40067:6;40030:17;:44::i;39962:333::-;-1:-1:-1;;;;;40096:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;40119:22:0;;;;;;:11;:22;;;;;;;;40096:45;40092:203;;;40158:48;40180:6;40188:9;40199:6;40158:21;:48::i;40092:203::-;40239:44;40257:6;40265:9;40276:6;40239:17;:44::i;:::-;40319:7;40315:55;;40343:15;:13;:15::i;44578:561::-;44675:7;;44711;;44628;;;;;44735:289;44759:9;:16;44755:20;;44735:289;;;44825:7;44801;:21;44809:9;44819:1;44809:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44809:12:0;44801:21;;;;;;;;;;;;;:31;;:66;;;44860:7;44836;:21;44844:9;44854:1;44844:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44844:12:0;44836:21;;;;;;;;;;;;;:31;44801:66;44797:97;;;44877:7;;44886;;44869:25;;;;;;;;;44797:97;44919:34;44931:7;:21;44939:9;44949:1;44939:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44939:12:0;44931:21;;;;;;;;;;;;;44919:7;;:11;:34::i;:::-;44909:44;;44978:34;44990:7;:21;44998:9;45008:1;44998:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44998:12:0;44990:21;;;;;;;;;;;;;44978:7;;:11;:34::i;:::-;44968:44;-1:-1:-1;44777:3:0;;44735:289;;;-1:-1:-1;45060:7:0;;45048;;:20;;:11;:20::i;:::-;45038:7;:30;45034:61;;;45078:7;;45087;;45070:25;;;;;;;;45034:61;45114:7;;-1:-1:-1;45123:7:0;-1:-1:-1;44578:561:0;;;:::o;43486:405::-;43546:7;43555;43564;43573;43593:12;43608:24;43624:7;43608:15;:24::i;:::-;43593:39;;43643:12;43658:24;43674:7;43658:15;:24::i;:::-;43643:39;;43693:18;43714:30;43736:7;43714:21;:30::i;:::-;43693:51;-1:-1:-1;43755:23:0;43781:43;43693:51;43781:27;43803:4;43781:27;:7;43793:4;43781:11;:17::i;:43::-;43755:69;43860:4;;-1:-1:-1;43866:4:0;;-1:-1:-1;43866:4:0;-1:-1:-1;43486:405:0;;-1:-1:-1;;;43486:405:0:o;43899:500::-;44028:7;;;;44084:24;:7;44096:11;44084;:24::i;:::-;44066:42;-1:-1:-1;44119:12:0;44134:21;:4;44143:11;44134:8;:21::i;:::-;44119:36;-1:-1:-1;44166:12:0;44181:21;:4;44190:11;44181:8;:21::i;:::-;44166:36;-1:-1:-1;44213:18:0;44234:27;:10;44249:11;44234:14;:27::i;:::-;44213:48;-1:-1:-1;44272:23:0;44298:43;44213:48;44298:27;44320:4;44298:27;:7;44310:4;44298:11;:17::i;:43::-;44360:7;;;;-1:-1:-1;44386:4:0;;-1:-1:-1;43899:500:0;;-1:-1:-1;;;;;;;;;43899:500:0:o;38818:618::-;38917:1;38903:11;:15;:32;;;;;38934:1;38922:9;:13;38903:32;38899:530;;;39055:15;;39023:62;;39040:4;;-1:-1:-1;;;;;39055:15:0;39073:11;39023:8;:62::i;:::-;39136:15;;-1:-1:-1;;;;;39136:15:0;:31;39175:9;39213:4;39237:11;39136:15;;39361:7;:5;:7::i;:::-;39387:15;39136:281;;;;;;;;;;;;;-1:-1:-1;;;;;39136:281:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39136:281:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46302:423;46348:7;;:12;:28;;;;-1:-1:-1;46364:7:0;;:12;46348:28;:50;;;;-1:-1:-1;46380:13:0;;:18;46348:50;:72;;;;-1:-1:-1;46402:13:0;;:18;46348:72;46345:84;;;46422:7;;46345:84;46467:7;;;46449:15;:25;46503:7;;;46485:15;:25;46545:13;;;46521:21;:37;46594:13;;;46569:22;:38;-1:-1:-1;46628:11:0;;;;46650;;;;46672:17;;;46700;46302:423;:::o;41567:605::-;41670:15;41687:23;41712:12;41726:23;41751:12;41765;41779:18;41801:19;41812:7;41801:10;:19::i;:::-;41669:151;;;;;;;;;;;;;;41849:28;41869:7;41849;:15;41857:6;-1:-1:-1;;;;;41849:15:0;-1:-1:-1;;;;;41849:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;41831:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41906:7;:15;;;;:28;;41926:7;41906:19;:28::i;:::-;-1:-1:-1;;;;;41888:15:0;;;;;;;:7;:15;;;;;;:46;;;;41966:18;;;;;;;:39;;41989:15;41966:22;:39::i;:::-;-1:-1:-1;;;;;41945:18:0;;;;;;:7;:18;;;;;:60;42019:26;42034:10;42019:14;:26::i;:::-;42056:14;42065:4;42056:8;:14::i;:::-;42081:23;42093:4;42099;42081:11;:23::i;:::-;42137:9;-1:-1:-1;;;;;42120:44:0;42129:6;-1:-1:-1;;;;;42120:44:0;;42148:15;42120:44;;;;;;;;;;;;;;;;;;41567:605;;;;;;;;;;:::o;40934:625::-;41035:15;41052:23;41077:12;41091:23;41116:12;41130;41144:18;41166:19;41177:7;41166:10;:19::i;:::-;41034:151;;;;;;;;;;;;;;41214:28;41234:7;41214;:15;41222:6;-1:-1:-1;;;;;41214:15:0;-1:-1:-1;;;;;41214:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;41196:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;41274:18;;;;;:7;:18;;;;;:39;;41297:15;41274:22;:39::i;:::-;-1:-1:-1;;;;;41253:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41345:7;:18;;;;:39;;41368:15;41345:22;:39::i;40385:541::-;40484:15;40501:23;40526:12;40540:23;40565:12;40579;40593:18;40615:19;40626:7;40615:10;:19::i;:::-;40483:151;;;;;;;;;;;;;;40663:28;40683:7;40663;:15;40671:6;-1:-1:-1;;;;;40663:15:0;-1:-1:-1;;;;;40663:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;42180:681::-;42283:15;42300:23;42325:12;42339:23;42364:12;42378;42392:18;42414:19;42425:7;42414:10;:19::i;:::-;42282:151;;;;;;;;;;;;;;42462:28;42482:7;42462;:15;42470:6;-1:-1:-1;;;;;42462:15:0;-1:-1:-1;;;;;42462:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;42444:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42519:7;:15;;;;:28;;42539:7;42519:19;:28::i;46737:210::-;46791:15;;46781:7;:25;46827:15;;46817:7;:25;46869:21;;46853:13;:37;46917:22;;46901:13;:38;46737:210::o;45875:129::-;45939:7;45966:30;45991:4;45966:20;45978:7;;45966;:11;;:20;;;;:::i;46012:129::-;46076:7;46103:30;46128:4;46103:20;46115:7;;46103;:11;;:20;;;;:::i;46149:141::-;46219:7;46246:36;46277:4;46246:26;46258:13;;46246:7;:11;;:26;;;;:::i;45151:368::-;45214:19;45237:10;:8;:10::i;:::-;45214:33;-1:-1:-1;45258:18:0;45279:27;:10;45214:33;45279:14;:27::i;:::-;45358:4;45342:22;;;;:7;:22;;;;;;45258:48;;-1:-1:-1;45342:38:0;;45258:48;45342:26;:38::i;:::-;45333:4;45317:22;;;;:7;:22;;;;;;;;:63;;;;45394:11;:26;;;;;;45391:121;;;45478:4;45462:22;;;;:7;:22;;;;;;:38;;45489:10;45462:26;:38::i;:::-;45453:4;45437:22;;;;:7;:22;;;;;:63;45151:368;;;:::o;42869:147::-;42947:7;;:17;;42959:4;42947:11;:17::i;:::-;42937:7;:27;42988:10;;:20;;43003:4;42988:14;:20::i;:::-;42975:10;:33;-1:-1:-1;;42869:147:0:o

Swarm Source

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