ETH Price: $2,403.49 (+1.06%)

Token

SolidityLabs (SolidityLabs)
 

Overview

Max Total Supply

1,000,000,000 SolidityLabs

Holders

198

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
728,336.68789993 SolidityLabs

Value
$0.00
0x5ce795d90d0d2b81b60b9ba26d9bd744058cbf6e
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:
SolidityLabs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-18
*/

pragma solidity ^0.8.1;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        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 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;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

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

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

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// 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 IUniswapV2Router01 {
    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 IUniswapV2Router01 {
    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 SolidityLabs is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    address deadAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "SolidityLabs";
    string private _symbol = "SolidityLabs";
    uint8 private _decimals = 9;    
    uint256 private initialsupply = 1_000_000_000;
    uint256 private _tTotal = initialsupply * 10 ** _decimals;
    address payable private _marketingWallet;
    
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping(address => uint256) private buycooldown;
    mapping(address => uint256) private sellcooldown;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isBlacklisted;
    address[] private _excluded;
    bool private cooldownEnabled = true;
    uint256 public cooldown = 30 seconds;
    
    uint256 private constant MAX = ~uint256(0);
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    uint256 public _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;
    uint256 public _marketingFee = 8;
    uint256 private _previousMarketingFee = _marketingFee;
    
    uint256 private maxBuyPercent = 1;
    uint256 private maxBuyDivisor = 100;
    uint256 private _maxBuyAmount = (_tTotal * maxBuyPercent) / maxBuyDivisor;
   
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 private numTokensSellToAddToLiquidity = _tTotal / 100; // 1%
    
    event ToMarketing(uint256 bnbSent);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor (address marketingWallet) {
        _rOwned[_msgSender()] = _rTotal;
         _marketingWallet = payable(marketingWallet);
        // Pancake Swap V2 address
        // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
        // uniswap address
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWallet] = true;

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

    function name() public view returns (string memory) {return _name;}
    function symbol() public view returns (string memory) {return _symbol;}
    function decimals() public view returns (uint8) {return _decimals;}
    function totalSupply() public view override returns (uint256) {return _tTotal;}
    function allowance(address owner, address spender) public view override returns (uint256) {return _allowances[owner][spender];}
    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function setNumTokensSellToAddToLiquidity(uint256 percent, uint256 divisor) external onlyOwner() {
        uint256 swapAmount = _tTotal.mul(percent).div(divisor);
        numTokensSellToAddToLiquidity = swapAmount;
    }
        
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }    
    
    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }    
    
    function setCooldown(uint256 _cooldown) external onlyOwner() {
        cooldown = _cooldown;
    }
    
    function setMaxBuyPercent(uint256 percent, uint divisor) external onlyOwner {
        require(percent >= 1 && divisor <= 1000); // cannot set lower than .1%
        uint256 new_tx = _tTotal.mul(percent).div(divisor);
        require(new_tx >= (_tTotal / 1000), "Max tx must be above 0.1% of total supply.");
        _maxBuyAmount = new_tx;
    }

    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 setBlacklistStatus(address account, bool Blacklisted) external onlyOwner {
            if (Blacklisted = true) {
                _isBlacklisted[account] = true; 
            } else if(Blacklisted = false) {
                _isBlacklisted[account] = false;
                }
    }
    
    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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        // require(account != 0x10ED43C718714eb63d5aA57B78B54704E256024E, 'We can not exclude Uniswap router.');
        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 excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

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

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

    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 tLiquidity, uint256 tMarketing) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tMarketing);
    }

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing);
        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 _takeMarketing(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }

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

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

    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _marketingFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
        _liquidityFee = _previousLiquidityFee;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    // swapAndLiquify takes the balance to be liquified and make sure it is equally distributed
    // in BNB and Harold
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // 1/2 balance is sent to the marketing wallet, 1/2 is added to the liquidity pool
        uint256 marketingTokenBalance = contractTokenBalance.div(2);
        uint256 liquidityTokenBalance = contractTokenBalance.sub(marketingTokenBalance);
        uint256 tokenBalanceToLiquifyAsBNB = liquidityTokenBalance.div(2);
        uint256 tokenBalanceToLiquify = liquidityTokenBalance.sub(tokenBalanceToLiquifyAsBNB);
        uint256 initialBalance = address(this).balance;

        // 75% of the balance will be converted into BNB
        uint256 tokensToSwapToBNB = tokenBalanceToLiquifyAsBNB.add(marketingTokenBalance);

        swapTokensForEth(tokensToSwapToBNB);

        uint256 bnbSwapped = address(this).balance.sub(initialBalance);

        uint256 bnbToLiquify = bnbSwapped.div(3);

        addLiquidity(tokenBalanceToLiquify, bnbToLiquify);

        emit SwapAndLiquify(tokenBalanceToLiquifyAsBNB, bnbToLiquify, tokenBalanceToLiquify);

        uint256 marketingBNB = bnbSwapped.sub(bnbToLiquify);

        // Transfer the BNB to the marketing wallet
        _marketingWallet.transfer(marketingBNB);
        emit ToMarketing(marketingBNB);
    }

    function clearStuckBalance(uint256 amountPercentage) external onlyOwner {
        require(amountPercentage <= 100);
        uint256 amountBNB = address(this).balance;
        payable(_marketingWallet).transfer(amountBNB.mul(amountPercentage).div(100));
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }
    
    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 _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");
        require(_isBlacklisted[from] == false, "Hehe");
        require(_isBlacklisted[to] == false, "Hehe");
        if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) {
                require(amount <= _maxBuyAmount);
                require(buycooldown[to] < block.timestamp);
                buycooldown[to] = block.timestamp.add(cooldown);        
            } else if(from == uniswapV2Pair && cooldownEnabled && !_isExcludedFromFee[to]) {
            require(sellcooldown[from] <= block.timestamp);
            sellcooldown[from] = block.timestamp.add(cooldown);
        }
            
        uint256 contractTokenBalance = balanceOf(address(this));

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

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

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

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

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

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

    //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 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);        
        _takeMarketing(tMarketing);
        _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 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);        
        _takeMarketing(tMarketing);
        _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 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);       
        _takeMarketing(tMarketing);
        _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 tLiquidity, uint256 tMarketing) = _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);        
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function cooldownStatus() public view returns (bool) {
        return cooldownEnabled;
    }
    
    function setCooldownEnabled(bool onoff) external onlyOwner() {
        cooldownEnabled = onoff;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"bnbSent","type":"uint256"}],"name":"ToMarketing","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":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","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":[{"internalType":"uint256","name":"amountPercentage","type":"uint256"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"geUnlockTime","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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"},{"internalType":"bool","name":"Blacklisted","type":"bool"}],"name":"setBlacklistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setMaxBuyPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600380546001600160a01b03191661dead179055610100604052600c60c08190526b536f6c69646974794c61627360a01b60e090815262000044916004919062000473565b5060408051808201909152600c8082526b536f6c69646974794c61627360a01b60209092019182526200007a9160059162000473565b506006805460ff19166009908117909155633b9aca00600755620000a090600a620005ab565b600754620000af91906200066c565b60088190556013805460ff19166001179055601e601455620000d490600019620006e5565b620000e2906000196200068e565b60155560006017556017546018556002601955601954601a556008601b55601b54601c556001601d556064601e55601e54601d546008546200012591906200066c565b6200013191906200054b565b601f556020805461ff00191661010017905560085462000154906064906200054b565b6021553480156200016457600080fd5b50604051620036b2380380620036b2833981016040819052620001879162000519565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601554336000908152600a602090815260409182902092909255600980546001600160a01b0319166001600160a01b038516179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200024557600080fd5b505afa1580156200025a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000280919062000519565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c957600080fd5b505afa158015620002de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000304919062000519565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000388919062000519565b6001600160601b0319606091821b811660a0529082901b166080526001600f6000620003bc6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600f9093528183208054851660019081179091556009549091168352912080549092161790556200041b3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200046391815260200190565b60405180910390a3505062000728565b8280546200048190620006a8565b90600052602060002090601f016020900481019282620004a55760008555620004f0565b82601f10620004c057805160ff1916838001178555620004f0565b82800160010185558215620004f0579182015b82811115620004f0578251825591602001919060010190620004d3565b50620004fe92915062000502565b5090565b5b80821115620004fe576000815560010162000503565b6000602082840312156200052c57600080fd5b81516001600160a01b03811681146200054457600080fd5b9392505050565b6000826200055d576200055d62000712565b500490565b600181815b80851115620005a3578160001904821115620005875762000587620006fc565b808516156200059557918102915b93841c939080029062000567565b509250929050565b60006200054460ff841683600082620005c75750600162000666565b81620005d65750600062000666565b8160018114620005ef5760028114620005fa576200061a565b600191505062000666565b60ff8411156200060e576200060e620006fc565b50506001821b62000666565b5060208310610133831016604e8410600b84101617156200063f575081810a62000666565b6200064b838362000562565b8060001904821115620006625762000662620006fc565b0290505b92915050565b6000816000190483118215151615620006895762000689620006fc565b500290565b600082821015620006a357620006a3620006fc565b500390565b600181811c90821680620006bd57607f821691505b60208210811415620006df57634e487b7160e01b600052602260045260246000fd5b50919050565b600082620006f757620006f762000712565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60805160601c60a05160601c612f1f62000793600039600081816104f401528181611a3501528181611b3f0152611c3201526000818161032501528181611a71015281816123de015281816124a6015281816124e201528181612554015261257b0152612f1f6000f3fe60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611aa657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f000000000000000000000000000000000000000000000000000000000000000084611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f000000000000000000000000000000000000000000000000000000000000000084611682565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203e8687010801db75c020580e12f0ad5f6ac36d9aa984b2347a8646bc871cd42864736f6c6343000807003300000000000000000000000064de488fc0b1db4ac07d9e8a72448aeb406ca173

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f000000000000000000000000ecd072708231bc0cf78c4774b76be472605bd81f81565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f000000000000000000000000ecd072708231bc0cf78c4774b76be472605bd81f6001600160a01b0316836001600160a01b0316148015611aa657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f000000000000000000000000ecd072708231bc0cf78c4774b76be472605bd81f6001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f000000000000000000000000ecd072708231bc0cf78c4774b76be472605bd81f6001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203e8687010801db75c020580e12f0ad5f6ac36d9aa984b2347a8646bc871cd42864736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000064de488fc0b1db4ac07d9e8a72448aeb406ca173

-----Decoded View---------------
Arg [0] : marketingWallet (address): 0x64DE488Fc0b1db4Ac07D9e8a72448Aeb406CA173

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000064de488fc0b1db4ac07d9e8a72448aeb406ca173


Deployed Bytecode Sourcemap

25571:22180:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30983:294;;;;;;;;;;-1:-1:-1;30983:294:0;;;;;:::i;:::-;;:::i;:::-;;28677:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29322:161;;;;;;;;;;-1:-1:-1;29322:161:0;;;;;:::i;:::-;;:::i;:::-;;;4353:14:1;;4346:22;4328:41;;4316:2;4301:18;29322:161:0;4188:187:1;33939:87:0;;;;;;;;;;-1:-1:-1;34008:10:0;;33939:87;;;12367:25:1;;;12355:2;12340:18;33939:87:0;12221:177:1;27231:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3532:32:1;;;3514:51;;3502:2;3487:18;27231:51:0;3368:203:1;28900:79:0;;;;;;;;;;-1:-1:-1;28970:7:0;;28900:79;;40144:262;;;;;;;;;;-1:-1:-1;40144:262:0;;;;;:::i;:::-;;:::i;26959:32::-;;;;;;;;;;;;;;;;41536:313;;;;;;;;;;-1:-1:-1;41536:313:0;;;;;:::i;:::-;;:::i;32121:253::-;;;;;;;;;;-1:-1:-1;32121:253:0;;;;;:::i;:::-;;:::i;28827:67::-;;;;;;;;;;-1:-1:-1;28883:9:0;;28827:67;;28883:9;;;;13854:36:1;;13842:2;13827:18;28827:67:0;13712:184:1;33076:479:0;;;;;;;;;;-1:-1:-1;33076:479:0;;;;;:::i;:::-;;:::i;30476:218::-;;;;;;;;;;-1:-1:-1;30476:218:0;;;;;:::i;:::-;;:::i;26779:26::-;;;;;;;;;;;;;;;;31289:378;;;;;;;;;;-1:-1:-1;31289:378:0;;;;;:::i;:::-;;:::i;33563:111::-;;;;;;;;;;-1:-1:-1;33563:111:0;;;;;:::i;:::-;;:::i;31675:438::-;;;;;;;;;;-1:-1:-1;31675:438:0;;;;;:::i;:::-;;:::i;29868:122::-;;;;;;;;;;-1:-1:-1;29868:122:0;;;;;:::i;:::-;;:::i;27289:38::-;;;;;;;;;;;;;;;27362:40;;;;;;;;;;-1:-1:-1;27362:40:0;;;;;;;;;;;30118:350;;;;;;;;;;-1:-1:-1;30118:350:0;;;;;:::i;:::-;;:::i;30006:100::-;;;;;;;;;;-1:-1:-1;30006:100:0;;;;;:::i;:::-;;:::i;32510:558::-;;;;;;;;;;-1:-1:-1;32510:558:0;;;;;:::i;:::-;;:::i;33804:123::-;;;;;;;;;;-1:-1:-1;33804:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;33892:27:0;33868:4;33892:27;;;:18;:27;;;;;;;;;33804:123;47645:103;;;;;;;;;;-1:-1:-1;47645:103:0;;;;;:::i;:::-;;:::i;26860:32::-;;;;;;;;;;;;;;;;29118:198;;;;;;;;;;-1:-1:-1;29118:198:0;;;;;:::i;:::-;;:::i;16184:148::-;;;;;;;;;;;;;:::i;26592:36::-;;;;;;;;;;;;;;;;47539:94;;;;;;;;;;-1:-1:-1;47610:15:0;;;;47539:94;;32382:120;;;;;;;;;;-1:-1:-1;32382:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;32474:20:0;32450:4;32474:20;;;:11;:20;;;;;;;;;32382:120;15548:79;;;;;;;;;;-1:-1:-1;15586:7:0;15613:6;-1:-1:-1;;;;;15613:6:0;15548:79;;29730:122;;;;;;;;;;-1:-1:-1;29730:122:0;;;;;:::i;:::-;;:::i;29491:223::-;;;;;;;;;;-1:-1:-1;29491:223:0;;;;;:::i;:::-;;:::i;28750:71::-;;;;;;;;;;;;;:::i;30702:269::-;;;;;;;;;;-1:-1:-1;30702:269:0;;;;;:::i;:::-;;:::i;17206:305::-;;;;;;;;;;;;;:::i;43896:167::-;;;;;;;;;;-1:-1:-1;43896:167:0;;;;;:::i;:::-;;:::i;16739:89::-;;;;;;;;;;-1:-1:-1;16811:9:0;;16739:89;;34034:171;;;;;;;;;;-1:-1:-1;34034:171:0;;;;;:::i;:::-;;:::i;16904:226::-;;;;;;;;;;-1:-1:-1;16904:226:0;;;;;:::i;:::-;;:::i;28985:127::-;;;;;;;;;;-1:-1:-1;28985:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29083:18:0;;;29066:7;29083:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28985:127;33682:110;;;;;;;;;;-1:-1:-1;33682:110:0;;;;;:::i;:::-;;:::i;16487:244::-;;;;;;;;;;-1:-1:-1;16487:244:0;;;;;:::i;:::-;;:::i;30983:294::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31098:4:0::1;-1:-1:-1::0;;;;;31123:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;31123:30:0::1;31149:4;31123:30;::::0;;31176:94:::1;30983:294:::0;;:::o;28677:67::-;28714:13;28737:5;28730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28677:67;:::o;29322:161::-;29397:4;29414:39;8051:10;29437:7;29446:6;29414:8;:39::i;:::-;-1:-1:-1;29471:4:0;29322:161;;;;;:::o;40144:262::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;40255:3:::1;40235:16;:23;;40227:32;;;::::0;::::1;;40330:16;::::0;40290:21:::1;::::0;-1:-1:-1;;;;;40330:16:0::1;40322:76;40357:40;40393:3;40357:31;40290:21:::0;40371:16;40357:13:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;40322:76;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40216:190;40144:262:::0;:::o;41536:313::-;41634:4;41651:36;41661:6;41669:9;41680:6;41651:9;:36::i;:::-;41698:121;41707:6;8051:10;41729:89;41767:6;41729:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41729:19:0;;;;;;:11;:19;;;;;;;;8051:10;41729:33;;;;;;;;;;:37;:89::i;:::-;41698:8;:121::i;:::-;-1:-1:-1;41837:4:0;41536:313;;;;;:::o;32121:253::-;32187:7;32226;;32215;:18;;32207:73;;;;-1:-1:-1;;;32207:73:0;;5823:2:1;32207:73:0;;;5805:21:1;5862:2;5842:18;;;5835:30;5901:34;5881:18;;;5874:62;-1:-1:-1;;;5952:18:1;;;5945:40;6002:19;;32207:73:0;5621:406:1;32207:73:0;32291:19;32314:10;:8;:10::i;:::-;32291:33;-1:-1:-1;32342:24:0;:7;32291:33;32342:11;:24::i;:::-;32335:31;32121:253;-1:-1:-1;;;32121:253:0:o;33076:479::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33158:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33150:60;;;::::0;-1:-1:-1;;;33150:60:0;;7811:2:1;33150:60:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;33150:60:0::1;7609:351:1::0;33150:60:0::1;33226:9;33221:327;33245:9;:16:::0;33241:20;::::1;33221:327;;;33303:7;-1:-1:-1::0;;;;;33287:23:0::1;:9;33297:1;33287:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33287:12:0::1;:23;33283:254;;;33346:9;33356:16:::0;;:20:::1;::::0;33375:1:::1;::::0;33356:20:::1;:::i;:::-;33346:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33331:9:::1;:12:::0;;-1:-1:-1;;;;;33346:31:0;;::::1;::::0;33341:1;;33331:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33331:46:0::1;-1:-1:-1::0;;;;;33331:46:0;;::::1;;::::0;;33396:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33435:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33435:28:0::1;::::0;;33482:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33482:15:0;;;;;-1:-1:-1;;;;;;33482:15:0::1;::::0;;;;;30983:294;;:::o;33283:254::-:1;33263:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33221:327;;30476:218:::0;8051:10;30564:4;30613:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30613:34:0;;;;;;;;;;30564:4;;30581:83;;30604:7;;30613:50;;30652:10;30613:38;:50::i;31289:378::-;8051:10;31341:14;31390:19;;;:11;:19;;;;;;;;31389:20;31381:77;;;;-1:-1:-1;;;31381:77:0;;11606:2:1;31381:77:0;;;11588:21:1;11645:2;11625:18;;;11618:30;11684:34;11664:18;;;11657:62;-1:-1:-1;;;11735:18:1;;;11728:42;11787:19;;31381:77:0;11404:408:1;31381:77:0;31470:15;31495:19;31506:7;31495:10;:19::i;:::-;-1:-1:-1;;;;;;;;31543:15:0;;;;;;:7;:15;;;;;;31469:45;;-1:-1:-1;31543:28:0;;:15;-1:-1:-1;31469:45:0;;-1:-1:-1;;31543:19:0;:28::i;:::-;-1:-1:-1;;;;;31525:15:0;;;;;;:7;:15;;;;;:46;31592:7;;:20;;31604:7;31592:11;:20::i;:::-;31582:7;:30;31636:10;;:23;;31651:7;31636:14;:23::i;:::-;31623:10;:36;-1:-1:-1;;;31289:378:0:o;33563:111::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33632:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33632:34:0::1;33662:4;33632:34;::::0;;33563:111::o;31675:438::-;31765:7;31804;;31793;:18;;31785:62;;;;-1:-1:-1;;;31785:62:0;;8167:2:1;31785:62:0;;;8149:21:1;8206:2;8186:18;;;8179:30;8245:33;8225:18;;;8218:61;8296:18;;31785:62:0;7965:355:1;31785:62:0;31863:17;31858:248;;31898:15;31923:19;31934:7;31923:10;:19::i;:::-;-1:-1:-1;31897:45:0;;-1:-1:-1;31957:14:0;;-1:-1:-1;;;;;;31957:14:0;31858:248;32006:23;32038:19;32049:7;32038:10;:19::i;:::-;-1:-1:-1;32004:53:0;;-1:-1:-1;32072:22:0;;-1:-1:-1;;;;;;32072:22:0;29868:122;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29954:13:::1;:28:::0;29868:122::o;30118:350::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30224:1:::1;30213:7;:12;;:31;;;;;30240:4;30229:7;:15;;30213:31;30205:40;;;::::0;::::1;;30285:14;30302:33;30327:7;30302:20;30314:7;30302;;:11;;:20;;;;:::i;:33::-;30285:50;;30375:4;30365:7;;:14;;;;:::i;:::-;30354:6;:26;;30346:81;;;::::0;-1:-1:-1;;;30346:81:0;;7400:2:1;30346:81:0::1;::::0;::::1;7382:21:1::0;7439:2;7419:18;;;7412:30;7478:34;7458:18;;;7451:62;-1:-1:-1;;;7529:18:1;;;7522:40;7579:19;;30346:81:0::1;7198:406:1::0;30346:81:0::1;30438:13;:22:::0;-1:-1:-1;;30118:350:0:o;30006:100::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30078:8:::1;:20:::0;30006:100::o;32510:558::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;32603:42:::1;-1:-1:-1::0;;;;;32592:53:0;::::1;;;32584:100;;;::::0;-1:-1:-1;;;32584:100:0;;11203:2:1;32584:100:0::1;::::0;::::1;11185:21:1::0;11242:2;11222:18;;;11215:30;11281:34;11261:18;;;11254:62;-1:-1:-1;;;11332:18:1;;;11325:32;11374:19;;32584:100:0::1;11001:398:1::0;32584:100:0::1;-1:-1:-1::0;;;;;32818:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32817:21;32809:61;;;::::0;-1:-1:-1;;;32809:61:0;;7811:2:1;32809:61:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;32809:61:0::1;7609:351:1::0;32809:61:0::1;-1:-1:-1::0;;;;;32884:16:0;::::1;32903:1;32884:16:::0;;;:7:::1;:16;::::0;;;;;:20;32881:108:::1;;-1:-1:-1::0;;;;;32960:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32940:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32921:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32881:108:::1;-1:-1:-1::0;;;;;32999:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32999:27:0::1;33022:4;32999:27:::0;;::::1;::::0;;;33037:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33037:23:0::1;::::0;;::::1;::::0;;32510:558::o;47645:103::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;47717:15:::1;:23:::0;;-1:-1:-1;;47717:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47645:103::o;29118:198::-;-1:-1:-1;;;;;29208:20:0;;29184:7;29208:20;;;:11;:20;;;;;;;;29204:49;;;-1:-1:-1;;;;;;29237:16:0;;;;;:7;:16;;;;;;;29118:198::o;29204:49::-;-1:-1:-1;;;;;29291:16:0;;;;;;:7;:16;;;;;;29271:37;;:19;:37::i;16184:148::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16291:1:::1;16275:6:::0;;16254:40:::1;::::0;-1:-1:-1;;;;;16275:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16254:40:0;16291:1;;16254:40:::1;16322:1;16305:19:::0;;-1:-1:-1;;;;;;16305:19:0::1;::::0;;16184:148::o;29730:122::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29816:13:::1;:28:::0;29730:122::o;29491:223::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29599:18:::1;29620:33;29645:7;29620:20;29632:7;29620;;:11;;:20;;;;:::i;:33::-;29664:29;:42:::0;-1:-1:-1;;;29491:223:0:o;28750:71::-;28789:13;28812:7;28805:14;;;;;:::i;30702:269::-;30795:4;30812:129;8051:10;30835:7;30844:96;30883:15;30844:96;;;;;;;;;;;;;;;;;8051:10;30844:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30844:34:0;;;;;;;;;;;;:38;:96::i;17206:305::-;17258:14;;-1:-1:-1;;;;;17258:14:0;17276:10;17258:28;17250:76;;;;-1:-1:-1;;;17250:76:0;;12019:2:1;17250:76:0;;;12001:21:1;12058:2;12038:18;;;12031:30;12097:34;12077:18;;;12070:62;-1:-1:-1;;;12148:18:1;;;12141:33;12191:19;;17250:76:0;11817:399:1;17250:76:0;17363:9;;17345:15;:27;17337:72;;;;-1:-1:-1;;;17337:72:0;;10843:2:1;17337:72:0;;;10825:21:1;10882:2;10862:18;;;10855:30;10921:33;10901:18;;;10894:61;10972:18;;17337:72:0;10641:355:1;17337:72:0;17454:14;;;17446:6;;17425:44;;-1:-1:-1;;;;;17454:14:0;;;;17446:6;;;;-1:-1:-1;;;;;;;;;;;17425:44:0;;17489:14;;;17480:23;;-1:-1:-1;;;;;;17480:23:0;-1:-1:-1;;;;;17489:14:0;;;17480:23;;;;;;17206:305::o;43896:167::-;43974:4;43991:42;8051:10;44015:9;44026:6;43991:9;:42::i;34034:171::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;34111:21:::1;:32:::0;;-1:-1:-1;;34111:32:0::1;;::::0;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;34159:38:::1;::::0;4328:41:1;;;34159:38:0::1;::::0;4301:18:1;34159:38:0::1;;;;;;;34034:171:::0;:::o;16904:226::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16985:6:::1;::::0;;;16968:23;;-1:-1:-1;;;;;;16968:23:0;;::::1;-1:-1:-1::0;;;;;16985:6:0;::::1;16968:23;::::0;;;17002:19:::1;::::0;;17044:22:::1;17062:4:::0;17044:15:::1;:22;:::i;:::-;17032:9;:34:::0;17119:1:::1;17103:6:::0;;17082:40:::1;::::0;-1:-1:-1;;;;;17103:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17082:40:0;17119:1;;17082:40:::1;16904:226:::0;:::o;33682:110::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33749:27:0::1;33779:5;33749:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33749:35:0::1;::::0;;33682:110::o;16487:244::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16576:22:0;::::1;16568:73;;;::::0;-1:-1:-1;;;16568:73:0;;6234:2:1;16568:73:0::1;::::0;::::1;6216:21:1::0;6273:2;6253:18;;;6246:30;6312:34;6292:18;;;6285:62;-1:-1:-1;;;6363:18:1;;;6356:36;6409:19;;16568:73:0::1;6032:402:1::0;16568:73:0::1;16678:6;::::0;;16657:38:::1;::::0;-1:-1:-1;;;;;16657:38:0;;::::1;::::0;16678:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16657:38:0;::::1;16706:6;:17:::0;;-1:-1:-1;;;;;;16706:17:0::1;-1:-1:-1::0;;;;;16706:17:0;;;::::1;::::0;;;::::1;::::0;;16487:244::o;38408:337::-;-1:-1:-1;;;;;38501:19:0;;38493:68;;;;-1:-1:-1;;;38493:68:0;;10438:2:1;38493:68:0;;;10420:21:1;10477:2;10457:18;;;10450:30;10516:34;10496:18;;;10489:62;-1:-1:-1;;;10567:18:1;;;10560:34;10611:19;;38493:68:0;10236:400:1;38493:68:0;-1:-1:-1;;;;;38580:21:0;;38572:68;;;;-1:-1:-1;;;38572:68:0;;6641:2:1;38572:68:0;;;6623:21:1;6680:2;6660:18;;;6653:30;6719:34;6699:18;;;6692:62;-1:-1:-1;;;6770:18:1;;;6763:32;6812:19;;38572:68:0;6439:398:1;38572:68:0;-1:-1:-1;;;;;38653:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38705:32;;12367:25:1;;;38705:32:0;;12340:18:1;38705:32:0;;;;;;;38408:337;;;:::o;4832:471::-;4890:7;5135:6;5131:47;;-1:-1:-1;5165:1:0;5158:8;;5131:47;5190:9;5202:5;5206:1;5202;:5;:::i;:::-;5190:17;-1:-1:-1;5235:1:0;5226:5;5230:1;5190:17;5226:5;:::i;:::-;:10;5218:56;;;;-1:-1:-1;;;5218:56:0;;8527:2:1;5218:56:0;;;8509:21:1;8566:2;8546:18;;;8539:30;8605:34;8585:18;;;8578:62;-1:-1:-1;;;8656:18:1;;;8649:31;8697:19;;5218:56:0;8325:397:1;5779:132:0;5837:7;5864:39;5868:1;5871;5864:39;;;;;;;;;;;;;;;;;:3;:39::i;41857:2031::-;-1:-1:-1;;;;;41979:18:0;;41971:68;;;;-1:-1:-1;;;41971:68:0;;10032:2:1;41971:68:0;;;10014:21:1;10071:2;10051:18;;;10044:30;10110:34;10090:18;;;10083:62;-1:-1:-1;;;10161:18:1;;;10154:35;10206:19;;41971:68:0;9830:401:1;41971:68:0;-1:-1:-1;;;;;42058:16:0;;42050:64;;;;-1:-1:-1;;;42050:64:0;;5419:2:1;42050:64:0;;;5401:21:1;5458:2;5438:18;;;5431:30;5497:34;5477:18;;;5470:62;-1:-1:-1;;;5548:18:1;;;5541:33;5591:19;;42050:64:0;5217:399:1;42050:64:0;42142:1;42133:6;:10;42125:64;;;;-1:-1:-1;;;42125:64:0;;9290:2:1;42125:64:0;;;9272:21:1;9329:2;9309:18;;;9302:30;9368:34;9348:18;;;9341:62;-1:-1:-1;;;9419:18:1;;;9412:39;9468:19;;42125:64:0;9088:405:1;42125:64:0;-1:-1:-1;;;;;42208:20:0;;;;;;:14;:20;;;;;;;;:29;42200:46;;;;-1:-1:-1;;;42200:46:0;;;;;;9700:2:1;9682:21;;;9739:1;9719:18;;;9712:29;-1:-1:-1;;;9772:2:1;9757:18;;9750:34;9816:2;9801:18;;9498:327;42200:46:0;-1:-1:-1;;;;;42265:18:0;;;;;;:14;:18;;;;;;;;:27;42257:44;;;;-1:-1:-1;;;42257:44:0;;;;;;9700:2:1;9682:21;;;9739:1;9719:18;;;9712:29;-1:-1:-1;;;9772:2:1;9757:18;;9750:34;9816:2;9801:18;;9498:327;42257:44:0;42324:13;-1:-1:-1;;;;;42316:21:0;:4;-1:-1:-1;;;;;42316:21:0;;:55;;;;;42355:15;-1:-1:-1;;;;;42341:30:0;:2;-1:-1:-1;;;;;42341:30:0;;;42316:55;:82;;;;-1:-1:-1;;;;;;42376:22:0;;;;;;:18;:22;;;;;;;;42375:23;42316:82;:101;;;;-1:-1:-1;42402:15:0;;;;42316:101;42312:525;;;42456:13;;42446:6;:23;;42438:32;;;;;;-1:-1:-1;;;;;42497:15:0;;;;;;:11;:15;;;;;;42515;-1:-1:-1;42489:42:0;;;;;;42588:8;;42568:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42550:15:0;;;;;;:11;:15;;;;;:47;42312:525;;;42638:13;-1:-1:-1;;;;;42630:21:0;:4;-1:-1:-1;;;;;42630:21:0;;:40;;;;-1:-1:-1;42655:15:0;;;;42630:40;:67;;;;-1:-1:-1;;;;;;42675:22:0;;;;;;:18;:22;;;;;;;;42674:23;42630:67;42627:210;;;-1:-1:-1;;;;;42722:18:0;;;;;;:12;:18;;;;;;42744:15;-1:-1:-1;42722:37:0;42714:46;;;;;;42816:8;;42796:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42775:18:0;;;;;;:12;:18;;;;;:50;42627:210;42861:28;42892:24;42910:4;42892:9;:24::i;:::-;42861:55;;42956:29;;42932:20;:53;42929:146;;-1:-1:-1;43034:29:0;;42929:146;43138:29;;43114:53;;;;;;;43196;;-1:-1:-1;43233:16:0;;;;43232:17;43196:53;:91;;;;;43274:13;-1:-1:-1;;;;;43266:21:0;:4;-1:-1:-1;;;;;43266:21:0;;;43196:91;:129;;;;-1:-1:-1;43304:21:0;;;;;;;43196:129;43178:301;;;43387:29;;43364:52;;43431:36;43446:20;43431:14;:36::i;:::-;-1:-1:-1;;;;;43671:24:0;;43552:12;43671:24;;;:18;:24;;;;;;43567:4;;43671:24;;;:50;;-1:-1:-1;;;;;;43699:22:0;;;;;;:18;:22;;;;;;;;43671:50;43668:96;;;-1:-1:-1;43747:5:0;43668:96;43842:38;43857:4;43862:2;43865:6;43872:7;43842:14;:38::i;:::-;41960:1928;;;41857:2031;;;:::o;4381:192::-;4467:7;4503:12;4495:6;;;;4487:29;;;;-1:-1:-1;;;4487:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4527:9:0;4539:5;4543:1;4539;:5;:::i;:::-;4527:17;4381:192;-1:-1:-1;;;;;4381:192:0:o;35911:163::-;35952:7;35973:15;35990;36009:19;:17;:19::i;:::-;35972:56;;-1:-1:-1;35972:56:0;-1:-1:-1;36046:20:0;35972:56;;36046:11;:20::i;:::-;36039:27;;;;35911:163;:::o;3478:181::-;3536:7;;3568:5;3572:1;3568;:5;:::i;:::-;3556:17;;3597:1;3592;:6;;3584:46;;;;-1:-1:-1;;;3584:46:0;;7044:2:1;3584:46:0;;;7026:21:1;7083:2;7063:18;;;7056:30;7122:29;7102:18;;;7095:57;7169:18;;3584:46:0;6842:351:1;34462:472:0;34521:7;34530;34539;34548;34557;34566;34575;34596:23;34621:12;34635:18;34655;34677:20;34689:7;34677:11;:20::i;:::-;34595:102;;;;;;;;34709:15;34726:23;34751:12;34767:62;34779:7;34788:4;34794:10;34806;34818;:8;:10::i;:::-;34767:11;:62::i;:::-;34708:121;;-1:-1:-1;34708:121:0;-1:-1:-1;34708:121:0;-1:-1:-1;34880:15:0;;-1:-1:-1;34897:4:0;;-1:-1:-1;34903:10:0;;-1:-1:-1;34915:10:0;-1:-1:-1;;;;34462:472:0;;;;;;;;;:::o;3942:136::-;4000:7;4027:43;4031:1;4034;4027:43;;;;;;;;;;;;;;;;;:3;:43::i;6407:278::-;6493:7;6528:12;6521:5;6513:28;;;;-1:-1:-1;;;6513:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6552:9:0;6564:5;6568:1;6564;:5;:::i;38876:1260::-;27762:16;:23;;-1:-1:-1;;27762:23:0;27781:4;27762:23;;;:16;39085:27:::1;:20:::0;39110:1:::1;39085:24;:27::i;:::-;39053:59:::0;-1:-1:-1;39123:29:0::1;39155:47;:20:::0;39053:59;39155:24:::1;:47::i;:::-;39123:79:::0;-1:-1:-1;39213:34:0::1;39250:28;39123:79:::0;39276:1:::1;39250:25;:28::i;:::-;39213:65:::0;-1:-1:-1;39289:29:0::1;39321:53;:21:::0;39213:65;39321:25:::1;:53::i;:::-;39289:85:::0;-1:-1:-1;39410:21:0::1;39385:22;39530:53;:26:::0;39561:21;39530:30:::1;:53::i;:::-;39502:81;;39596:35;39613:17;39596:16;:35::i;:::-;39644:18;39665:41;:21;39691:14:::0;39665:25:::1;:41::i;:::-;39644:62:::0;-1:-1:-1;39719:20:0::1;39742:17;39644:62:::0;39757:1:::1;39742:14;:17::i;:::-;39719:40;;39772:49;39785:21;39808:12;39772;:49::i;:::-;39839:79;::::0;;13590:25:1;;;13646:2;13631:18;;13624:34;;;13674:18;;;13667:34;;;39839:79:0::1;::::0;13578:2:1;13563:18;39839:79:0::1;;;;;;;39931:20;39954:28;:10:::0;39969:12;39954:14:::1;:28::i;:::-;40048:16;::::0;:39:::1;::::0;39931:51;;-1:-1:-1;;;;;;40048:16:0::1;::::0;:39;::::1;;;::::0;39931:51;;40048:16:::1;:39:::0;:16;:39;39931:51;40048:16;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40103:25:0::1;::::0;12367::1;;;40103::0::1;::::0;12355:2:1;12340:18;40103:25:0::1;;;;;;;-1:-1:-1::0;;27808:16:0;:24;;-1:-1:-1;;27808:24:0;;;-1:-1:-1;;;;;;;;38876:1260:0:o;44144:818::-;44255:7;44251:40;;44277:14;:12;:14::i;:::-;-1:-1:-1;;;;;44308:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44332:22:0;;;;;;:11;:22;;;;;;;;44331:23;44308:46;44304:597;;;44371:48;44393:6;44401:9;44412:6;44371:21;:48::i;:::-;44304:597;;;-1:-1:-1;;;;;44442:19:0;;;;;;:11;:19;;;;;;;;44441:20;:46;;;;-1:-1:-1;;;;;;44465:22:0;;;;;;:11;:22;;;;;;;;44441:46;44437:464;;;44504:46;44524:6;44532:9;44543:6;44504:19;:46::i;44437:464::-;-1:-1:-1;;;;;44573:19:0;;;;;;:11;:19;;;;;;;;44572:20;:47;;;;-1:-1:-1;;;;;;44597:22:0;;;;;;:11;:22;;;;;;;;44596:23;44572:47;44568:333;;;44636:44;44654:6;44662:9;44673:6;44636:17;:44::i;44568:333::-;-1:-1:-1;;;;;44702:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44725:22:0;;;;;;:11;:22;;;;;;;;44702:45;44698:203;;;44764:48;44786:6;44794:9;44805:6;44764:21;:48::i;44698:203::-;44845:44;44863:6;44871:9;44882:6;44845:17;:44::i;:::-;44917:7;44913:41;;44939:15;38281;;38271:7;:25;38323:21;;38307:13;:37;38371:21;;38355:13;:37;38227:173;44939:15;44144:818;;;;:::o;36082:555::-;36179:7;;36215;;36132;;;;;36233:289;36257:9;:16;36253:20;;36233:289;;;36323:7;36299;:21;36307:9;36317:1;36307:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36307:12:0;36299:21;;;;;;;;;;;;;:31;;:66;;;36358:7;36334;:21;36342:9;36352:1;36342:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36342:12:0;36334:21;;;;;;;;;;;;;:31;36299:66;36295:97;;;36375:7;;36384;;36367:25;;;;;;;36082:555;;:::o;36295:97::-;36417:34;36429:7;:21;36437:9;36447:1;36437:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36437:12:0;36429:21;;;;;;;;;;;;;36417:7;;:11;:34::i;:::-;36407:44;;36476:34;36488:7;:21;36496:9;36506:1;36496:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36496:12:0;36488:21;;;;;;;;;;;;;36476:7;;:11;:34::i;:::-;36466:44;-1:-1:-1;36275:3:0;;;;:::i;:::-;;;;36233:289;;;-1:-1:-1;36558:7:0;;36546;;:20;;:11;:20::i;:::-;36536:7;:30;36532:61;;;36576:7;;36585;;36568:25;;;;;;36082:555;;:::o;36532:61::-;36612:7;;36621;;-1:-1:-1;36082:555:0;-1:-1:-1;36082:555:0:o;34942:429::-;35002:7;35011;35020;35029;35049:12;35064:24;35080:7;35064:15;:24::i;:::-;35049:39;;35099:18;35120:30;35142:7;35120:21;:30::i;:::-;35099:51;;35161:18;35182:30;35204:7;35182:21;:30::i;:::-;35161:51;-1:-1:-1;35223:23:0;35249:49;35287:10;35249:33;35161:51;35249:33;:7;35261:4;35249:11;:17::i;:::-;:21;;:33::i;:49::-;35223:75;35334:4;;-1:-1:-1;35340:10:0;;-1:-1:-1;35340:10:0;-1:-1:-1;34942:429:0;;-1:-1:-1;;;34942:429:0:o;35379:524::-;35514:7;;;;35570:24;:7;35582:11;35570;:24::i;:::-;35552:42;-1:-1:-1;35605:12:0;35620:21;:4;35629:11;35620:8;:21::i;:::-;35605:36;-1:-1:-1;35652:18:0;35673:27;:10;35688:11;35673:14;:27::i;:::-;35652:48;-1:-1:-1;35711:18:0;35732:27;:10;35747:11;35732:14;:27::i;:::-;35711:48;-1:-1:-1;35770:23:0;35796:49;35834:10;35796:33;35711:48;35796:33;:7;35808:4;35796:11;:17::i;:49::-;35864:7;;;;-1:-1:-1;35890:4:0;;-1:-1:-1;35379:524:0;;-1:-1:-1;;;;;;;;;35379:524:0:o;40414:589::-;40564:16;;;40578:1;40564:16;;;;;;;;40540:21;;40564:16;;;;;;;;;;-1:-1:-1;40564:16:0;40540:40;;40609:4;40591;40596:1;40591:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40591:23:0;;;-1:-1:-1;;;;;40591:23:0;;;;;40635:15;-1:-1:-1;;;;;40635:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40625:4;40630:1;40625:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40625:32:0;;;-1:-1:-1;;;;;40625:32:0;;;;;40670:62;40687:4;40702:15;40720:11;40670:8;:62::i;:::-;40771:224;;-1:-1:-1;;;40771:224:0;;-1:-1:-1;;;;;40771:15:0;:66;;;;:224;;40852:11;;40878:1;;40922:4;;40949;;40969:15;;40771:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41011:513;41159:62;41176:4;41191:15;41209:11;41159:8;:62::i;:::-;41264:15;-1:-1:-1;;;;;41264:31:0;;41303:9;41336:4;41356:11;41382:1;41425;41468:7;15586;15613:6;-1:-1:-1;;;;;15613:6:0;;15548:79;41468:7;41264:252;;;;;;-1:-1:-1;;;;;;41264:252:0;;;-1:-1:-1;;;;;3935:15:1;;;41264:252:0;;;3917:34:1;3967:18;;;3960:34;;;;4010:18;;;4003:34;;;;4053:18;;;4046:34;4117:15;;;4096:19;;;4089:44;41490:15:0;4149:19:1;;;4142:35;3851:19;;41264:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41011:513;;:::o;37887:332::-;37933:7;;:12;:34;;;;-1:-1:-1;37949:13:0;;:18;37933:34;:56;;;;-1:-1:-1;37971:13:0;;:18;37933:56;37930:68;;;37887:332::o;37930:68::-;38028:7;;;38010:15;:25;38070:13;;;38046:21;:37;38118:13;;;38094:21;:37;-1:-1:-1;38144:11:0;;;;38166:17;;;;38194;37887:332::o;46193:627::-;46296:15;46313:23;46338:12;46352:23;46377:12;46391:18;46411;46433:19;46444:7;46433:10;:19::i;:::-;46295:157;;;;;;;;;;;;;;46481:28;46501:7;46481;:15;46489:6;-1:-1:-1;;;;;46481:15:0;-1:-1:-1;;;;;46481:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;46463:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46538:7;:15;;;;:28;;46558:7;46538:19;:28::i;:::-;-1:-1:-1;;;;;46520:15:0;;;;;;;:7;:15;;;;;;:46;;;;46598:18;;;;;;;:39;;46621:15;46598:22;:39::i;:::-;-1:-1:-1;;;;;46577:18:0;;;;;;:7;:18;;;;;:60;46648:26;46663:10;46648:14;:26::i;:::-;46692;46707:10;46692:14;:26::i;:::-;46729:23;46741:4;46747;46729:11;:23::i;:::-;46785:9;-1:-1:-1;;;;;46768:44:0;46777:6;-1:-1:-1;;;;;46768:44:0;;46796:15;46768:44;;;;12367:25:1;;12355:2;12340:18;;12221:177;46768:44:0;;;;;;;;46284:536;;;;;;;46193:627;;;:::o;45545:640::-;45646:15;45663:23;45688:12;45702:23;45727:12;45741:18;45761;45783:19;45794:7;45783:10;:19::i;:::-;45645:157;;;;;;;;;;;;;;45831:28;45851:7;45831;:15;45839:6;-1:-1:-1;;;;;45831:15:0;-1:-1:-1;;;;;45831:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;45813:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45891:18;;;;;:7;:18;;;;;:39;;45914:15;45891:22;:39::i;:::-;-1:-1:-1;;;;;45870:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45962:7;:18;;;;:39;;45985:15;45962:22;:39::i;44970:567::-;45069:15;45086:23;45111:12;45125:23;45150:12;45164:18;45184;45206:19;45217:7;45206:10;:19::i;:::-;45068:157;;;;;;;;;;;;;;45254:28;45274:7;45254;:15;45262:6;-1:-1:-1;;;;;45254:15:0;-1:-1:-1;;;;;45254:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;46832:699::-;46935:15;46952:23;46977:12;46991:23;47016:12;47030:18;47050;47072:19;47083:7;47072:10;:19::i;:::-;46934:157;;;;;;;;;;;;;;47120:28;47140:7;47120;:15;47128:6;-1:-1:-1;;;;;47120:15:0;-1:-1:-1;;;;;47120:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;47102:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47177:7;:15;;;;:28;;47197:7;47177:19;:28::i;37379:154::-;37443:7;37470:55;37509:5;37470:20;37482:7;;37470;:11;;:20;;;;:::i;37541:166::-;37611:7;37638:61;37683:5;37638:26;37650:13;;37638:7;:11;;:26;;;;:::i;37713:166::-;37783:7;37810:61;37855:5;37810:26;37822:13;;37810:7;:11;;:26;;;;:::i;36645:355::-;36708:19;36731:10;:8;:10::i;:::-;36708:33;-1:-1:-1;36752:18:0;36773:27;:10;36708:33;36773:14;:27::i;:::-;36852:4;36836:22;;;;:7;:22;;;;;;36752:48;;-1:-1:-1;36836:38:0;;36752:48;36836:26;:38::i;:::-;36827:4;36811:22;;;;:7;:22;;;;;;;;:63;;;;36888:11;:26;;;;;;36885:107;;;36970:4;36954:22;;;;:7;:22;;;;;;:38;;36981:10;36954:26;:38::i;:::-;36945:4;36929:22;;;;:7;:22;;;;;:63;36697:303;;36645:355;:::o;34307:147::-;34385:7;;:17;;34397:4;34385:11;:17::i;:::-;34375:7;:27;34426:10;;:20;;34441:4;34426:14;:20::i;:::-;34413:10;:33;-1:-1:-1;;34307:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;687:388::-;755:6;763;816:2;804:9;795:7;791:23;787:32;784:52;;;832:1;829;822:12;784:52;871:9;858:23;890:31;915:5;890:31;:::i;:::-;940:5;-1:-1:-1;997:2:1;982:18;;969:32;1010:33;969:32;1010:33;:::i;:::-;1062:7;1052:17;;;687:388;;;;;:::o;1080:456::-;1157:6;1165;1173;1226:2;1214:9;1205:7;1201:23;1197:32;1194:52;;;1242:1;1239;1232:12;1194:52;1281:9;1268:23;1300:31;1325:5;1300:31;:::i;:::-;1350:5;-1:-1:-1;1407:2:1;1392:18;;1379:32;1420:33;1379:32;1420:33;:::i;:::-;1080:456;;1472:7;;-1:-1:-1;;;1526:2:1;1511:18;;;;1498:32;;1080:456::o;1541:315::-;1606:6;1614;1667:2;1655:9;1646:7;1642:23;1638:32;1635:52;;;1683:1;1680;1673:12;1635:52;1722:9;1709:23;1741:31;1766:5;1741:31;:::i;:::-;1791:5;-1:-1:-1;1815:35:1;1846:2;1831:18;;1815:35;:::i;:::-;1805:45;;1541:315;;;;;:::o;1861:::-;1929:6;1937;1990:2;1978:9;1969:7;1965:23;1961:32;1958:52;;;2006:1;2003;1996:12;1958:52;2045:9;2032:23;2064:31;2089:5;2064:31;:::i;:::-;2114:5;2166:2;2151:18;;;;2138:32;;-1:-1:-1;;;1861:315:1:o;2181:180::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:26;2345:9;2329:26;:::i;2366:180::-;2425:6;2478:2;2466:9;2457:7;2453:23;2449:32;2446:52;;;2494:1;2491;2484:12;2446:52;-1:-1:-1;2517:23:1;;2366:180;-1:-1:-1;2366:180:1:o;2551:248::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2729:9;2716:23;2706:33;;2758:35;2789:2;2778:9;2774:18;2758:35;:::i;2804:248::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;-1:-1:-1;;2972:23:1;;;3042:2;3027:18;;;3014:32;;-1:-1:-1;2804:248:1:o;3057:306::-;3145:6;3153;3161;3214:2;3202:9;3193:7;3189:23;3185:32;3182:52;;;3230:1;3227;3220:12;3182:52;3259:9;3253:16;3243:26;;3309:2;3298:9;3294:18;3288:25;3278:35;;3353:2;3342:9;3338:18;3332:25;3322:35;;3057:306;;;;;:::o;4615:597::-;4727:4;4756:2;4785;4774:9;4767:21;4817:6;4811:13;4860:6;4855:2;4844:9;4840:18;4833:34;4885:1;4895:140;4909:6;4906:1;4903:13;4895:140;;;5004:14;;;5000:23;;4994:30;4970:17;;;4989:2;4966:26;4959:66;4924:10;;4895:140;;;5053:6;5050:1;5047:13;5044:91;;;5123:1;5118:2;5109:6;5098:9;5094:22;5090:31;5083:42;5044:91;-1:-1:-1;5196:2:1;5175:15;-1:-1:-1;;5171:29:1;5156:45;;;;5203:2;5152:54;;4615:597;-1:-1:-1;;;4615:597:1:o;8727:356::-;8929:2;8911:21;;;8948:18;;;8941:30;9007:34;9002:2;8987:18;;8980:62;9074:2;9059:18;;8727:356::o;12403:980::-;12665:4;12713:3;12702:9;12698:19;12744:6;12733:9;12726:25;12770:2;12808:6;12803:2;12792:9;12788:18;12781:34;12851:3;12846:2;12835:9;12831:18;12824:31;12875:6;12910;12904:13;12941:6;12933;12926:22;12979:3;12968:9;12964:19;12957:26;;13018:2;13010:6;13006:15;12992:29;;13039:1;13049:195;13063:6;13060:1;13057:13;13049:195;;;13128:13;;-1:-1:-1;;;;;13124:39:1;13112:52;;13219:15;;;;13184:12;;;;13160:1;13078:9;13049:195;;;-1:-1:-1;;;;;;;13300:32:1;;;;13295:2;13280:18;;13273:60;-1:-1:-1;;;13364:3:1;13349:19;13342:35;13261:3;12403:980;-1:-1:-1;;;12403:980:1:o;13901:128::-;13941:3;13972:1;13968:6;13965:1;13962:13;13959:39;;;13978:18;;:::i;:::-;-1:-1:-1;14014:9:1;;13901:128::o;14034:217::-;14074:1;14100;14090:132;;14144:10;14139:3;14135:20;14132:1;14125:31;14179:4;14176:1;14169:15;14207:4;14204:1;14197:15;14090:132;-1:-1:-1;14236:9:1;;14034:217::o;14256:168::-;14296:7;14362:1;14358;14354:6;14350:14;14347:1;14344:21;14339:1;14332:9;14325:17;14321:45;14318:71;;;14369:18;;:::i;:::-;-1:-1:-1;14409:9:1;;14256:168::o;14429:125::-;14469:4;14497:1;14494;14491:8;14488:34;;;14502:18;;:::i;:::-;-1:-1:-1;14539:9:1;;14429:125::o;14559:380::-;14638:1;14634:12;;;;14681;;;14702:61;;14756:4;14748:6;14744:17;14734:27;;14702:61;14809:2;14801:6;14798:14;14778:18;14775:38;14772:161;;;14855:10;14850:3;14846:20;14843:1;14836:31;14890:4;14887:1;14880:15;14918:4;14915:1;14908:15;14772:161;;14559:380;;;:::o;14944:135::-;14983:3;-1:-1:-1;;15004:17:1;;15001:43;;;15024:18;;:::i;:::-;-1:-1:-1;15071:1:1;15060:13;;14944:135::o;15084:127::-;15145:10;15140:3;15136:20;15133:1;15126:31;15176:4;15173:1;15166:15;15200:4;15197:1;15190:15;15216:127;15277:10;15272:3;15268:20;15265:1;15258:31;15308:4;15305:1;15298:15;15332:4;15329:1;15322:15;15348:127;15409:10;15404:3;15400:20;15397:1;15390:31;15440:4;15437:1;15430:15;15464:4;15461:1;15454:15;15612:131;-1:-1:-1;;;;;15687:31:1;;15677:42;;15667:70;;15733:1;15730;15723:12;15667:70;15612:131;:::o

Swarm Source

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