ETH Price: $3,254.33 (+2.48%)
Gas: 3 Gwei

Token

Appa Inu (APPA)
 

Overview

Max Total Supply

1,000,000,000,000 APPA

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
32,662,370.543054802 APPA

Value
$0.00
0x7CE636860522bD7f6e3447Cb7044FA504196Cd59
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:
AppaInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-29
*/

/* 
Marketing fee       : 4%    
Holders reward fee  : 3%
Liquidity fee       : 3%

*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

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 payable) {
        return payable(msg.sender);
    }

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


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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * 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 BNB 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;
    }
}


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


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


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


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 AppaInu is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

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

    string private _name = "Appa Inu";
    string private _symbol = "APPA";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 3;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _burnFee = 0;
    uint256 private _previousBurnFee = _burnFee;

    uint256 public _marketingFee = 4;
    address public marketingWallet;
    uint256 private _previousMarketingFee = _marketingFee;

    uint256 public _maxTxAmount = 100 * 10**6 * 10**9;

    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 private numTokensSellToAddToLiquidity = 1 * 10**9 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address _marketingWallet) {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        /* Create a Pancakeswap pair for this new token */
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        /* Set the rest of the contract variables */
        uniswapV2Router = _uniswapV2Router;
        
        /* Exclude owner and this contract from fee */
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        marketingWallet = _marketingWallet;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

    function excludeFromReward(address account) public onlyOwner() {
        require(account != 0x10ED43C718714eb63d5aA57B78B54704E256024E, 'We can not exclude Pancake 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 _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    

    
    /* To recieve BNB from uniswapV2Router when swaping */
    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 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

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

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

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).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 && _burnFee==0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousBurnFee = _burnFee;
        _previousMarketingFee = _marketingFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _burnFee = 0;
    }
    
    function restoreAllFee() private {
       _taxFee = _previousTaxFee;
       _liquidityFee = _previousLiquidityFee;
       _burnFee = _previousBurnFee;
       _marketingFee = _previousMarketingFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        /* 
        - Is the token balance of this contract address over the min number of
        - Tokens that we need to initiate a swap + liquidity lock?
        - Also, don't get caught in a circular liquidity event.
        - Also, don't swap & liquify if sender is Pancakeswap pair. 
        */

        uint256 contractTokenBalance = balanceOf(address(this));        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            /* Add liquidity */
            swapAndLiquify(contractTokenBalance);
        }
        
        /* Transfer amount, it will take tax, burn, liquidity fee */
        _tokenTransfer(from,to,amount);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        /* Split the contract balance into halves */
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        /* 
        - Capture the contract's current BNB balance.
        - This is so that we can capture exactly the amount of BNB that the
        - Swap creates, and not make the liquidity event include any BNB that
        - Has been manually sent to the contract 
        */
        uint256 initialBalance = address(this).balance;

        /* Swap tokens for BNB */
        swapTokensForEth(half); // <- This breaks the BNB -> HATE swap when swap+liquify is triggered

        /* How much BNB did we just swap into? */
        uint256 newBalance = address(this).balance.sub(initialBalance);

        /* Add liquidity to Pancakeswap */
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        /* Generate the Pancakeswap pair path of token -> wbnb */
        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 BNB
            path,
            address(this),
            block.timestamp
        );
    }

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

        /* Add the liquidity */
        uniswapV2Router.addLiquidityETH{value: bnbAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    /* This method is responsible for taking all fee, if takeFee is true */
    function _tokenTransfer(address sender, address recipient, uint256 amount) private {
        if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
            removeAllFee();
        }
        
        /* Calculate burn amount and marketing amount */
        uint256 burnAmt = amount.mul(_burnFee).div(100);
        uint256 marketingAmount = amount.mul(_marketingFee).div(100);

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmount)));
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmount)));
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmount)));
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmount)));
        } else {
            _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmount)));
        }
        
        /* Temporarily remove fees to transfer to burn address and marketing wallet */
        _taxFee = 0;
        _liquidityFee = 0;


        _transferStandard(sender, address(0), burnAmt);
        _transferStandard(sender, marketingWallet, marketingAmount);

        /* Restore tax and liquidity fees */
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;


        if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient])
            restoreAllFee();
    }

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

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

    function disableAllFees() external onlyOwner() {
        _taxFee = 0;
        _previousTaxFee = _taxFee;
        _liquidityFee = 0;
        _previousLiquidityFee = _liquidityFee;
        _burnFee = 0;
        _previousBurnFee = _taxFee;
        _marketingFee = 0;
        _previousMarketingFee = _marketingFee;
        inSwapAndLiquify = false;
        emit SwapAndLiquifyEnabledUpdated(false);
    }

    function enableAllFees() external onlyOwner() {
        _taxFee = 3;
        _previousTaxFee = _taxFee;
        _liquidityFee = 3;
        _previousLiquidityFee = _liquidityFee;
        _burnFee = 0;
        _previousBurnFee = _taxFee;
        _marketingFee = 4;
        _previousMarketingFee = _marketingFee;
        inSwapAndLiquify = true;
        emit SwapAndLiquifyEnabledUpdated(true);
    }
    
    function setMarketingWallet(address newWallet) external onlyOwner() {
        marketingWallet = newWallet;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }
    
    function setBurnFeePercent(uint256 burnFee) external onlyOwner() {
        _burnFee = burnFee;
    }

    function setMinSell(uint256 amount) external onlyOwner() {
        numTokensSellToAddToLiquidity = amount;
    }

    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _maxTxAmount = maxTxAmount * 10**9;
    }

    function prepareForPreSale() external onlyOwner {
        setSwapAndLiquifyEnabled(false);
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _maxTxAmount = 1 * 10**12 * 10**9;
    }
    
    function afterPreSale() external onlyOwner {
        setSwapAndLiquifyEnabled(true);
        _taxFee = 3;
        _liquidityFee = 3;
        _marketingFee = 4;
        _maxTxAmount = 100 * 10**6 * 10**9;
    }
    
    /* 
    New Pancakeswap router version?
    No problem, just change it! 
    */
    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newPancakeRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this), _newPancakeRouter.WETH());
        uniswapV2Router = _newPancakeRouter;
    }
    
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
}

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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"afterPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"disableAllFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllFees","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepareForPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","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":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052683635c9adc5dea0000060098190556200002190600019620004b2565b6200002f90600019620004d5565b600a55604080518082019091526008808252674170706120496e7560c01b60209092019182526200006391600c916200040c565b50604080518082019091526004808252634150504160e01b60209092019182526200009191600d916200040c565b50600e805460ff191660091790556003600f81905560108190556011819055601255600060138190556014556004601581905560175567016345785d8a0000601855601a805460ff60a81b1916600160a81b179055670de0b6b3a7640000601b55348015620000ff57600080fd5b50604051620033de380380620033de8339810160408190526200012291620004fb565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a543360009081526003602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b158015620001c557600080fd5b505afa158015620001da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002009190620004fb565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024957600080fd5b505afa1580156200025e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002849190620004fb565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002cd57600080fd5b505af1158015620002e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003089190620004fb565b601a80546001600160a01b03199081166001600160a01b039384161790915560198054909116918316919091179055600160066000620003506000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600690935291208054909216600117909155601680549184166001600160a01b0319909216919091179055620003b43390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600954604051620003fc91815260200190565b60405180910390a350506200056a565b8280546200041a906200052d565b90600052602060002090601f0160209004810192826200043e576000855562000489565b82601f106200045957805160ff191683800117855562000489565b8280016001018555821562000489579182015b82811115620004895782518255916020019190600101906200046c565b50620004979291506200049b565b5090565b5b808211156200049757600081556001016200049c565b600082620004d057634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620004f657634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200050e57600080fd5b81516001600160a01b03811681146200052657600080fd5b9392505050565b600181811c908216806200054257607f821691505b602082108114156200056457634e487b7160e01b600052602260045260246000fd5b50919050565b612e64806200057a6000396000f3fe6080604052600436106102b25760003560e01c80635d098b3811610175578063a69df4b5116100dc578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610861578063ec28438a14610881578063f2fde38b146108a1578063ffc78635146108c157600080fd5b8063dd467064146107db578063dd62ed3e146107fb578063ded5b7ed1461084157600080fd5b8063a69df4b51461073b578063a9059cbb14610750578063b6c5232414610770578063c0b0fda214610785578063c49b9a801461079b578063cea26958146107bb57600080fd5b80637d1db4a51161012e5780637d1db4a51461067957806388f820201461068f5780638da5cb5b146106c85780638ee88c53146106e657806395d89b4114610706578063a457c2d71461071b57600080fd5b80635d098b38146105d95780636bc87c3a146105f957806370a082311461060f578063715018a61461062f578063741af87f1461064457806375f0a8741461065957600080fd5b80633950935111610219578063457c194c116101d2578063457c194c1461050a57806349bd5a5e1461052a5780634a74bb021461054a5780635134f6ab1461056b57806352390c02146105805780635342acb4146105a057600080fd5b806339509351146104545780633b124fe7146104745780633bd5d1731461048a57806341cb87fc146104aa578063437823ec146104ca5780634549b039146104ea57600080fd5b806318160ddd1161026b57806318160ddd146103a757806322976e0d146103bc57806323b872dd146103d25780632d838119146103f2578063313ce567146104125780633685d4191461043457600080fd5b8063061c82d0146102be57806306fdde03146102e057806307efbfdc1461030b578063095ea7b31461032057806313114a9d146103505780631694505e1461036f57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612a23565b6108d6565b005b3480156102ec57600080fd5b506102f561090e565b6040516103029190612a3c565b60405180910390f35b34801561031757600080fd5b506102de6109a0565b34801561032c57600080fd5b5061034061033b366004612aa9565b6109f1565b6040519015158152602001610302565b34801561035c57600080fd5b50600b545b604051908152602001610302565b34801561037b57600080fd5b5060195461038f906001600160a01b031681565b6040516001600160a01b039091168152602001610302565b3480156103b357600080fd5b50600954610361565b3480156103c857600080fd5b5061036160155481565b3480156103de57600080fd5b506103406103ed366004612ad5565b610a08565b3480156103fe57600080fd5b5061036161040d366004612a23565b610a71565b34801561041e57600080fd5b50600e5460405160ff9091168152602001610302565b34801561044057600080fd5b506102de61044f366004612b16565b610af5565b34801561046057600080fd5b5061034061046f366004612aa9565b610cac565b34801561048057600080fd5b50610361600f5481565b34801561049657600080fd5b506102de6104a5366004612a23565b610ce2565b3480156104b657600080fd5b506102de6104c5366004612b16565b610dcc565b3480156104d657600080fd5b506102de6104e5366004612b16565b610f9e565b3480156104f657600080fd5b50610361610505366004612b48565b610fec565b34801561051657600080fd5b506102de610525366004612a23565b611079565b34801561053657600080fd5b50601a5461038f906001600160a01b031681565b34801561055657600080fd5b50601a5461034090600160a81b900460ff1681565b34801561057757600080fd5b506102de6110a8565b34801561058c57600080fd5b506102de61059b366004612b16565b6110fa565b3480156105ac57600080fd5b506103406105bb366004612b16565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105e557600080fd5b506102de6105f4366004612b16565b6112c5565b34801561060557600080fd5b5061036160115481565b34801561061b57600080fd5b5061036161062a366004612b16565b611311565b34801561063b57600080fd5b506102de611370565b34801561065057600080fd5b506102de6113d2565b34801561066557600080fd5b5060165461038f906001600160a01b031681565b34801561068557600080fd5b5061036160185481565b34801561069b57600080fd5b506103406106aa366004612b16565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156106d457600080fd5b506000546001600160a01b031661038f565b3480156106f257600080fd5b506102de610701366004612a23565b611469565b34801561071257600080fd5b506102f5611498565b34801561072757600080fd5b50610340610736366004612aa9565b6114a7565b34801561074757600080fd5b506102de6114f6565b34801561075c57600080fd5b5061034061076b366004612aa9565b6115fc565b34801561077c57600080fd5b50600254610361565b34801561079157600080fd5b5061036160135481565b3480156107a757600080fd5b506102de6107b6366004612b74565b611609565b3480156107c757600080fd5b506102de6107d6366004612a23565b61168b565b3480156107e757600080fd5b506102de6107f6366004612a23565b6116ba565b34801561080757600080fd5b50610361610816366004612b8f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561084d57600080fd5b506102de61085c366004612a23565b61173f565b34801561086d57600080fd5b506102de61087c366004612b16565b61176e565b34801561088d57600080fd5b506102de61089c366004612a23565b6117b9565b3480156108ad57600080fd5b506102de6108bc366004612b16565b6117f7565b3480156108cd57600080fd5b506102de6118cf565b6000546001600160a01b031633146109095760405162461bcd60e51b815260040161090090612bc8565b60405180910390fd5b600f55565b6060600c805461091d90612bfd565b80601f016020809104026020016040519081016040528092919081815260200182805461094990612bfd565b80156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b6000546001600160a01b031633146109ca5760405162461bcd60e51b815260040161090090612bc8565b6109d46001611609565b6003600f819055601155600460155567016345785d8a0000601855565b60006109fe338484611965565b5060015b92915050565b6000610a15848484611a89565b610a678433610a6285604051806060016040528060288152602001612dc2602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611c63565b611965565b5060019392505050565b6000600a54821115610ad85760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610900565b6000610ae2611c9d565b9050610aee8382611cc0565b9392505050565b6000546001600160a01b03163314610b1f5760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b03811660009081526007602052604090205460ff16610b875760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610900565b60005b600854811015610ca857816001600160a01b031660088281548110610bb157610bb1612c38565b6000918252602090912001546001600160a01b03161415610c965760088054610bdc90600190612c64565b81548110610bec57610bec612c38565b600091825260209091200154600880546001600160a01b039092169183908110610c1857610c18612c38565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c7057610c70612c7b565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610ca081612c91565b915050610b8a565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916109fe918590610a629086611d02565b3360008181526007602052604090205460ff1615610d575760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610900565b6000610d6283611d61565b505050506001600160a01b038416600090815260036020526040902054919250610d8e91905082611db0565b6001600160a01b038316600090815260036020526040902055600a54610db49082611db0565b600a55600b54610dc49084611d02565b600b55505050565b6000546001600160a01b03163314610df65760405162461bcd60e51b815260040161090090612bc8565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3457600080fd5b505afa158015610e48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6c9190612cac565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610eb457600080fd5b505afa158015610ec8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eec9190612cac565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6c9190612cac565b601a80546001600160a01b039283166001600160a01b0319918216179091556019805493909216921691909117905550565b6000546001600160a01b03163314610fc85760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60006009548311156110405760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610900565b8161105f57600061105084611d61565b50939550610a02945050505050565b600061106a84611d61565b50929550610a02945050505050565b6000546001600160a01b031633146110a35760405162461bcd60e51b815260040161090090612bc8565b601555565b6000546001600160a01b031633146110d25760405162461bcd60e51b815260040161090090612bc8565b6110dc6000611609565b6000600f8190556011819055601555683635c9adc5dea00000601855565b6000546001600160a01b031633146111245760405162461bcd60e51b815260040161090090612bc8565b7310ed43c718714eb63d5aa57b78b54704e256024e6001600160a01b038216141561119c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c7564652050616e63616b6520726f757465604482015261391760f11b6064820152608401610900565b6001600160a01b03811660009081526007602052604090205460ff16156112055760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610900565b6001600160a01b0381166000908152600360205260409020541561125f576001600160a01b03811660009081526003602052604090205461124590610a71565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146112ef5760405162461bcd60e51b815260040161090090612bc8565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff161561134e57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610a0290610a71565b6000546001600160a01b0316331461139a5760405162461bcd60e51b815260040161090090612bc8565b600080546040516001600160a01b0390911690600080516020612dea833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113fc5760405162461bcd60e51b815260040161090090612bc8565b6000600f8190556010819055601181905560128190556013819055601481905560158190556017819055601a805460ff60a01b191690556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906020015b60405180910390a1565b6000546001600160a01b031633146114935760405162461bcd60e51b815260040161090090612bc8565b601155565b6060600d805461091d90612bfd565b60006109fe3384610a6285604051806060016040528060258152602001612e0a602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611c63565b6001546001600160a01b0316331461155c5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610900565b60025442116115ad5760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610900565b600154600080546040516001600160a01b039384169390911691600080516020612dea83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109fe338484611a89565b6000546001600160a01b031633146116335760405162461bcd60e51b815260040161090090612bc8565b601a8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061168090831515815260200190565b60405180910390a150565b6000546001600160a01b031633146116b55760405162461bcd60e51b815260040161090090612bc8565b601355565b6000546001600160a01b031633146116e45760405162461bcd60e51b815260040161090090612bc8565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117138142612cc9565b600255600080546040516001600160a01b0390911690600080516020612dea833981519152908390a350565b6000546001600160a01b031633146117695760405162461bcd60e51b815260040161090090612bc8565b601b55565b6000546001600160a01b031633146117985760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146117e35760405162461bcd60e51b815260040161090090612bc8565b6117f181633b9aca00612ce1565b60185550565b6000546001600160a01b031633146118215760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b0381166118865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610900565b600080546040516001600160a01b0380851693921691600080516020612dea83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146118f95760405162461bcd60e51b815260040161090090612bc8565b6003600f819055601081905560118190556012819055600060135560145560046015819055601755601a805460ff60a01b1916600160a01b179055604051600181527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599060200161145f565b6001600160a01b0383166119c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610900565b6001600160a01b038216611a285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610900565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611aed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610900565b60008111611b4f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610900565b6000546001600160a01b03848116911614801590611b7b57506000546001600160a01b03838116911614155b15611be357601854811115611be35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610900565b6000611bee30611311565b601b5490915081108015908190611c0f5750601a54600160a01b900460ff16155b8015611c295750601a546001600160a01b03868116911614155b8015611c3e5750601a54600160a81b900460ff165b15611c5157601b549150611c5182611df2565b611c5c858585611e99565b5050505050565b60008184841115611c875760405162461bcd60e51b81526004016109009190612a3c565b506000611c948486612c64565b95945050505050565b6000806000611caa61215b565b9092509050611cb98282611cc0565b9250505090565b6000610aee83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122dd565b600080611d0f8385612cc9565b905083811015610aee5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610900565b6000806000806000806000806000611d788a61230b565b9250925092506000806000611d968d8686611d91611c9d565b612347565b919f909e50909c50959a5093985091965092945050505050565b6000610aee83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c63565b601a805460ff60a01b1916600160a01b1790556000611e12826002611cc0565b90506000611e208383611db0565b905047611e2c83612397565b6000611e384783611db0565b9050611e448382612500565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601a805460ff60a01b19169055505050565b6001600160a01b03831660009081526006602052604090205460ff1680611ed857506001600160a01b03821660009081526006602052604090205460ff165b15611ee557611ee56125dd565b6000611f076064611f016013548561263990919063ffffffff16565b90611cc0565b90506000611f256064611f016015548661263990919063ffffffff16565b6001600160a01b03861660009081526007602052604090205490915060ff168015611f6957506001600160a01b03841660009081526007602052604090205460ff16155b15611f9157611f8c8585611f8784611f818888611db0565b90611db0565b6126b8565b6120be565b6001600160a01b03851660009081526007602052604090205460ff16158015611fd257506001600160a01b03841660009081526007602052604090205460ff165b15611fef57611f8c8585611fea84611f818888611db0565b6127de565b6001600160a01b03851660009081526007602052604090205460ff1615801561203157506001600160a01b03841660009081526007602052604090205460ff16155b1561204e57611f8c858561204984611f818888611db0565b612887565b6001600160a01b03851660009081526007602052604090205460ff16801561208e57506001600160a01b03841660009081526007602052604090205460ff165b156120ab57611f8c85856120a684611f818888611db0565b6128cb565b6120be858561204984611f818888611db0565b6000600f81905560118190556120d690869084612887565b6016546120ee9086906001600160a01b031683612887565b601054600f556012546011556001600160a01b03851660009081526006602052604090205460ff168061213957506001600160a01b03841660009081526006602052604090205460ff165b15611c5c57611c5c601054600f55601254601155601454601355601754601555565b600a546009546000918291825b6008548110156122ad5782600360006008848154811061218a5761218a612c38565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121f557508160046000600884815481106121ce576121ce612c38565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561220b57600a54600954945094505050509091565b612251600360006008848154811061222557612225612c38565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611db0565b9250612299600460006008848154811061226d5761226d612c38565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611db0565b9150806122a581612c91565b915050612168565b50600954600a546122bd91611cc0565b8210156122d457600a546009549350935050509091565b90939092509050565b600081836122fe5760405162461bcd60e51b81526004016109009190612a3c565b506000611c948486612d00565b60008060008061231a8561293e565b905060006123278661295a565b9050600061233982611f818986611db0565b979296509094509092505050565b60008080806123568886612639565b905060006123648887612639565b905060006123728888612639565b9050600061238482611f818686611db0565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123cc576123cc612c38565b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561242057600080fd5b505afa158015612434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124589190612cac565b8160018151811061246b5761246b612c38565b6001600160a01b0392831660209182029290920101526019546124919130911684611965565b60195460405163791ac94760e01b81526001600160a01b039091169063791ac947906124ca908590600090869030904290600401612d22565b600060405180830381600087803b1580156124e457600080fd5b505af11580156124f8573d6000803e3d6000fd5b505050505050565b6019546125189030906001600160a01b031684611965565b6019546001600160a01b031663f305d7198230856000806125416000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b1580156125a457600080fd5b505af11580156125b8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c5c9190612d93565b600f541580156125ed5750601154155b80156125f95750601554155b80156126055750601354155b1561260c57565b600f8054601055601180546012556013805460145560158054601755600093849055918390559082905555565b60008261264857506000610a02565b60006126548385612ce1565b9050826126618583612d00565b14610aee5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610900565b6000806000806000806126ca87611d61565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126fc9088611db0565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461272b9087611db0565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461275a9086611d02565b6001600160a01b03891660009081526003602052604090205561277c81612976565b61278684836129ff565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127cb91815260200190565b60405180910390a3505050505050505050565b6000806000806000806127f087611d61565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506128229087611db0565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546128589084611d02565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461275a9086611d02565b60008060008060008061289987611d61565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061272b9087611db0565b6000806000806000806128dd87611d61565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061290f9088611db0565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546128229087611db0565b6000610a026064611f01600f548561263990919063ffffffff16565b6000610a026064611f016011548561263990919063ffffffff16565b6000612980611c9d565b9050600061298e8383612639565b306000908152600360205260409020549091506129ab9082611d02565b3060009081526003602090815260408083209390935560079052205460ff16156129fa57306000908152600460205260409020546129e99084611d02565b306000908152600460205260409020555b505050565b600a54612a0c9083611db0565b600a55600b54612a1c9082611d02565b600b555050565b600060208284031215612a3557600080fd5b5035919050565b600060208083528351808285015260005b81811015612a6957858101830151858201604001528201612a4d565b81811115612a7b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612aa657600080fd5b50565b60008060408385031215612abc57600080fd5b8235612ac781612a91565b946020939093013593505050565b600080600060608486031215612aea57600080fd5b8335612af581612a91565b92506020840135612b0581612a91565b929592945050506040919091013590565b600060208284031215612b2857600080fd5b8135610aee81612a91565b80358015158114612b4357600080fd5b919050565b60008060408385031215612b5b57600080fd5b82359150612b6b60208401612b33565b90509250929050565b600060208284031215612b8657600080fd5b610aee82612b33565b60008060408385031215612ba257600080fd5b8235612bad81612a91565b91506020830135612bbd81612a91565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c1157607f821691505b60208210811415612c3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612c7657612c76612c4e565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612ca557612ca5612c4e565b5060010190565b600060208284031215612cbe57600080fd5b8151610aee81612a91565b60008219821115612cdc57612cdc612c4e565b500190565b6000816000190483118215151615612cfb57612cfb612c4e565b500290565b600082612d1d57634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d725784516001600160a01b031683529383019391830191600101612d4d565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612da857600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122072fe83ce6868dc2674ce041fb8efd8695c4f97790ef64ad4c83dc54091b6750364736f6c634300080900330000000000000000000000007135ab20796eb0395e1fda38624cfaebae568398

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80635d098b3811610175578063a69df4b5116100dc578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610861578063ec28438a14610881578063f2fde38b146108a1578063ffc78635146108c157600080fd5b8063dd467064146107db578063dd62ed3e146107fb578063ded5b7ed1461084157600080fd5b8063a69df4b51461073b578063a9059cbb14610750578063b6c5232414610770578063c0b0fda214610785578063c49b9a801461079b578063cea26958146107bb57600080fd5b80637d1db4a51161012e5780637d1db4a51461067957806388f820201461068f5780638da5cb5b146106c85780638ee88c53146106e657806395d89b4114610706578063a457c2d71461071b57600080fd5b80635d098b38146105d95780636bc87c3a146105f957806370a082311461060f578063715018a61461062f578063741af87f1461064457806375f0a8741461065957600080fd5b80633950935111610219578063457c194c116101d2578063457c194c1461050a57806349bd5a5e1461052a5780634a74bb021461054a5780635134f6ab1461056b57806352390c02146105805780635342acb4146105a057600080fd5b806339509351146104545780633b124fe7146104745780633bd5d1731461048a57806341cb87fc146104aa578063437823ec146104ca5780634549b039146104ea57600080fd5b806318160ddd1161026b57806318160ddd146103a757806322976e0d146103bc57806323b872dd146103d25780632d838119146103f2578063313ce567146104125780633685d4191461043457600080fd5b8063061c82d0146102be57806306fdde03146102e057806307efbfdc1461030b578063095ea7b31461032057806313114a9d146103505780631694505e1461036f57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612a23565b6108d6565b005b3480156102ec57600080fd5b506102f561090e565b6040516103029190612a3c565b60405180910390f35b34801561031757600080fd5b506102de6109a0565b34801561032c57600080fd5b5061034061033b366004612aa9565b6109f1565b6040519015158152602001610302565b34801561035c57600080fd5b50600b545b604051908152602001610302565b34801561037b57600080fd5b5060195461038f906001600160a01b031681565b6040516001600160a01b039091168152602001610302565b3480156103b357600080fd5b50600954610361565b3480156103c857600080fd5b5061036160155481565b3480156103de57600080fd5b506103406103ed366004612ad5565b610a08565b3480156103fe57600080fd5b5061036161040d366004612a23565b610a71565b34801561041e57600080fd5b50600e5460405160ff9091168152602001610302565b34801561044057600080fd5b506102de61044f366004612b16565b610af5565b34801561046057600080fd5b5061034061046f366004612aa9565b610cac565b34801561048057600080fd5b50610361600f5481565b34801561049657600080fd5b506102de6104a5366004612a23565b610ce2565b3480156104b657600080fd5b506102de6104c5366004612b16565b610dcc565b3480156104d657600080fd5b506102de6104e5366004612b16565b610f9e565b3480156104f657600080fd5b50610361610505366004612b48565b610fec565b34801561051657600080fd5b506102de610525366004612a23565b611079565b34801561053657600080fd5b50601a5461038f906001600160a01b031681565b34801561055657600080fd5b50601a5461034090600160a81b900460ff1681565b34801561057757600080fd5b506102de6110a8565b34801561058c57600080fd5b506102de61059b366004612b16565b6110fa565b3480156105ac57600080fd5b506103406105bb366004612b16565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105e557600080fd5b506102de6105f4366004612b16565b6112c5565b34801561060557600080fd5b5061036160115481565b34801561061b57600080fd5b5061036161062a366004612b16565b611311565b34801561063b57600080fd5b506102de611370565b34801561065057600080fd5b506102de6113d2565b34801561066557600080fd5b5060165461038f906001600160a01b031681565b34801561068557600080fd5b5061036160185481565b34801561069b57600080fd5b506103406106aa366004612b16565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156106d457600080fd5b506000546001600160a01b031661038f565b3480156106f257600080fd5b506102de610701366004612a23565b611469565b34801561071257600080fd5b506102f5611498565b34801561072757600080fd5b50610340610736366004612aa9565b6114a7565b34801561074757600080fd5b506102de6114f6565b34801561075c57600080fd5b5061034061076b366004612aa9565b6115fc565b34801561077c57600080fd5b50600254610361565b34801561079157600080fd5b5061036160135481565b3480156107a757600080fd5b506102de6107b6366004612b74565b611609565b3480156107c757600080fd5b506102de6107d6366004612a23565b61168b565b3480156107e757600080fd5b506102de6107f6366004612a23565b6116ba565b34801561080757600080fd5b50610361610816366004612b8f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561084d57600080fd5b506102de61085c366004612a23565b61173f565b34801561086d57600080fd5b506102de61087c366004612b16565b61176e565b34801561088d57600080fd5b506102de61089c366004612a23565b6117b9565b3480156108ad57600080fd5b506102de6108bc366004612b16565b6117f7565b3480156108cd57600080fd5b506102de6118cf565b6000546001600160a01b031633146109095760405162461bcd60e51b815260040161090090612bc8565b60405180910390fd5b600f55565b6060600c805461091d90612bfd565b80601f016020809104026020016040519081016040528092919081815260200182805461094990612bfd565b80156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b6000546001600160a01b031633146109ca5760405162461bcd60e51b815260040161090090612bc8565b6109d46001611609565b6003600f819055601155600460155567016345785d8a0000601855565b60006109fe338484611965565b5060015b92915050565b6000610a15848484611a89565b610a678433610a6285604051806060016040528060288152602001612dc2602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611c63565b611965565b5060019392505050565b6000600a54821115610ad85760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610900565b6000610ae2611c9d565b9050610aee8382611cc0565b9392505050565b6000546001600160a01b03163314610b1f5760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b03811660009081526007602052604090205460ff16610b875760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610900565b60005b600854811015610ca857816001600160a01b031660088281548110610bb157610bb1612c38565b6000918252602090912001546001600160a01b03161415610c965760088054610bdc90600190612c64565b81548110610bec57610bec612c38565b600091825260209091200154600880546001600160a01b039092169183908110610c1857610c18612c38565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c7057610c70612c7b565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610ca081612c91565b915050610b8a565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916109fe918590610a629086611d02565b3360008181526007602052604090205460ff1615610d575760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610900565b6000610d6283611d61565b505050506001600160a01b038416600090815260036020526040902054919250610d8e91905082611db0565b6001600160a01b038316600090815260036020526040902055600a54610db49082611db0565b600a55600b54610dc49084611d02565b600b55505050565b6000546001600160a01b03163314610df65760405162461bcd60e51b815260040161090090612bc8565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3457600080fd5b505afa158015610e48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6c9190612cac565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610eb457600080fd5b505afa158015610ec8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eec9190612cac565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6c9190612cac565b601a80546001600160a01b039283166001600160a01b0319918216179091556019805493909216921691909117905550565b6000546001600160a01b03163314610fc85760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60006009548311156110405760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610900565b8161105f57600061105084611d61565b50939550610a02945050505050565b600061106a84611d61565b50929550610a02945050505050565b6000546001600160a01b031633146110a35760405162461bcd60e51b815260040161090090612bc8565b601555565b6000546001600160a01b031633146110d25760405162461bcd60e51b815260040161090090612bc8565b6110dc6000611609565b6000600f8190556011819055601555683635c9adc5dea00000601855565b6000546001600160a01b031633146111245760405162461bcd60e51b815260040161090090612bc8565b7310ed43c718714eb63d5aa57b78b54704e256024e6001600160a01b038216141561119c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c7564652050616e63616b6520726f757465604482015261391760f11b6064820152608401610900565b6001600160a01b03811660009081526007602052604090205460ff16156112055760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610900565b6001600160a01b0381166000908152600360205260409020541561125f576001600160a01b03811660009081526003602052604090205461124590610a71565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146112ef5760405162461bcd60e51b815260040161090090612bc8565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff161561134e57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610a0290610a71565b6000546001600160a01b0316331461139a5760405162461bcd60e51b815260040161090090612bc8565b600080546040516001600160a01b0390911690600080516020612dea833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113fc5760405162461bcd60e51b815260040161090090612bc8565b6000600f8190556010819055601181905560128190556013819055601481905560158190556017819055601a805460ff60a01b191690556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906020015b60405180910390a1565b6000546001600160a01b031633146114935760405162461bcd60e51b815260040161090090612bc8565b601155565b6060600d805461091d90612bfd565b60006109fe3384610a6285604051806060016040528060258152602001612e0a602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611c63565b6001546001600160a01b0316331461155c5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610900565b60025442116115ad5760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610900565b600154600080546040516001600160a01b039384169390911691600080516020612dea83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109fe338484611a89565b6000546001600160a01b031633146116335760405162461bcd60e51b815260040161090090612bc8565b601a8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061168090831515815260200190565b60405180910390a150565b6000546001600160a01b031633146116b55760405162461bcd60e51b815260040161090090612bc8565b601355565b6000546001600160a01b031633146116e45760405162461bcd60e51b815260040161090090612bc8565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117138142612cc9565b600255600080546040516001600160a01b0390911690600080516020612dea833981519152908390a350565b6000546001600160a01b031633146117695760405162461bcd60e51b815260040161090090612bc8565b601b55565b6000546001600160a01b031633146117985760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146117e35760405162461bcd60e51b815260040161090090612bc8565b6117f181633b9aca00612ce1565b60185550565b6000546001600160a01b031633146118215760405162461bcd60e51b815260040161090090612bc8565b6001600160a01b0381166118865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610900565b600080546040516001600160a01b0380851693921691600080516020612dea83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146118f95760405162461bcd60e51b815260040161090090612bc8565b6003600f819055601081905560118190556012819055600060135560145560046015819055601755601a805460ff60a01b1916600160a01b179055604051600181527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599060200161145f565b6001600160a01b0383166119c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610900565b6001600160a01b038216611a285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610900565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611aed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610900565b60008111611b4f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610900565b6000546001600160a01b03848116911614801590611b7b57506000546001600160a01b03838116911614155b15611be357601854811115611be35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610900565b6000611bee30611311565b601b5490915081108015908190611c0f5750601a54600160a01b900460ff16155b8015611c295750601a546001600160a01b03868116911614155b8015611c3e5750601a54600160a81b900460ff165b15611c5157601b549150611c5182611df2565b611c5c858585611e99565b5050505050565b60008184841115611c875760405162461bcd60e51b81526004016109009190612a3c565b506000611c948486612c64565b95945050505050565b6000806000611caa61215b565b9092509050611cb98282611cc0565b9250505090565b6000610aee83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122dd565b600080611d0f8385612cc9565b905083811015610aee5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610900565b6000806000806000806000806000611d788a61230b565b9250925092506000806000611d968d8686611d91611c9d565b612347565b919f909e50909c50959a5093985091965092945050505050565b6000610aee83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c63565b601a805460ff60a01b1916600160a01b1790556000611e12826002611cc0565b90506000611e208383611db0565b905047611e2c83612397565b6000611e384783611db0565b9050611e448382612500565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601a805460ff60a01b19169055505050565b6001600160a01b03831660009081526006602052604090205460ff1680611ed857506001600160a01b03821660009081526006602052604090205460ff165b15611ee557611ee56125dd565b6000611f076064611f016013548561263990919063ffffffff16565b90611cc0565b90506000611f256064611f016015548661263990919063ffffffff16565b6001600160a01b03861660009081526007602052604090205490915060ff168015611f6957506001600160a01b03841660009081526007602052604090205460ff16155b15611f9157611f8c8585611f8784611f818888611db0565b90611db0565b6126b8565b6120be565b6001600160a01b03851660009081526007602052604090205460ff16158015611fd257506001600160a01b03841660009081526007602052604090205460ff165b15611fef57611f8c8585611fea84611f818888611db0565b6127de565b6001600160a01b03851660009081526007602052604090205460ff1615801561203157506001600160a01b03841660009081526007602052604090205460ff16155b1561204e57611f8c858561204984611f818888611db0565b612887565b6001600160a01b03851660009081526007602052604090205460ff16801561208e57506001600160a01b03841660009081526007602052604090205460ff165b156120ab57611f8c85856120a684611f818888611db0565b6128cb565b6120be858561204984611f818888611db0565b6000600f81905560118190556120d690869084612887565b6016546120ee9086906001600160a01b031683612887565b601054600f556012546011556001600160a01b03851660009081526006602052604090205460ff168061213957506001600160a01b03841660009081526006602052604090205460ff165b15611c5c57611c5c601054600f55601254601155601454601355601754601555565b600a546009546000918291825b6008548110156122ad5782600360006008848154811061218a5761218a612c38565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121f557508160046000600884815481106121ce576121ce612c38565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561220b57600a54600954945094505050509091565b612251600360006008848154811061222557612225612c38565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611db0565b9250612299600460006008848154811061226d5761226d612c38565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611db0565b9150806122a581612c91565b915050612168565b50600954600a546122bd91611cc0565b8210156122d457600a546009549350935050509091565b90939092509050565b600081836122fe5760405162461bcd60e51b81526004016109009190612a3c565b506000611c948486612d00565b60008060008061231a8561293e565b905060006123278661295a565b9050600061233982611f818986611db0565b979296509094509092505050565b60008080806123568886612639565b905060006123648887612639565b905060006123728888612639565b9050600061238482611f818686611db0565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123cc576123cc612c38565b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561242057600080fd5b505afa158015612434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124589190612cac565b8160018151811061246b5761246b612c38565b6001600160a01b0392831660209182029290920101526019546124919130911684611965565b60195460405163791ac94760e01b81526001600160a01b039091169063791ac947906124ca908590600090869030904290600401612d22565b600060405180830381600087803b1580156124e457600080fd5b505af11580156124f8573d6000803e3d6000fd5b505050505050565b6019546125189030906001600160a01b031684611965565b6019546001600160a01b031663f305d7198230856000806125416000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b1580156125a457600080fd5b505af11580156125b8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611c5c9190612d93565b600f541580156125ed5750601154155b80156125f95750601554155b80156126055750601354155b1561260c57565b600f8054601055601180546012556013805460145560158054601755600093849055918390559082905555565b60008261264857506000610a02565b60006126548385612ce1565b9050826126618583612d00565b14610aee5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610900565b6000806000806000806126ca87611d61565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126fc9088611db0565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461272b9087611db0565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461275a9086611d02565b6001600160a01b03891660009081526003602052604090205561277c81612976565b61278684836129ff565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127cb91815260200190565b60405180910390a3505050505050505050565b6000806000806000806127f087611d61565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506128229087611db0565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546128589084611d02565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461275a9086611d02565b60008060008060008061289987611d61565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061272b9087611db0565b6000806000806000806128dd87611d61565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061290f9088611db0565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546128229087611db0565b6000610a026064611f01600f548561263990919063ffffffff16565b6000610a026064611f016011548561263990919063ffffffff16565b6000612980611c9d565b9050600061298e8383612639565b306000908152600360205260409020549091506129ab9082611d02565b3060009081526003602090815260408083209390935560079052205460ff16156129fa57306000908152600460205260409020546129e99084611d02565b306000908152600460205260409020555b505050565b600a54612a0c9083611db0565b600a55600b54612a1c9082611d02565b600b555050565b600060208284031215612a3557600080fd5b5035919050565b600060208083528351808285015260005b81811015612a6957858101830151858201604001528201612a4d565b81811115612a7b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612aa657600080fd5b50565b60008060408385031215612abc57600080fd5b8235612ac781612a91565b946020939093013593505050565b600080600060608486031215612aea57600080fd5b8335612af581612a91565b92506020840135612b0581612a91565b929592945050506040919091013590565b600060208284031215612b2857600080fd5b8135610aee81612a91565b80358015158114612b4357600080fd5b919050565b60008060408385031215612b5b57600080fd5b82359150612b6b60208401612b33565b90509250929050565b600060208284031215612b8657600080fd5b610aee82612b33565b60008060408385031215612ba257600080fd5b8235612bad81612a91565b91506020830135612bbd81612a91565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c1157607f821691505b60208210811415612c3257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612c7657612c76612c4e565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612ca557612ca5612c4e565b5060010190565b600060208284031215612cbe57600080fd5b8151610aee81612a91565b60008219821115612cdc57612cdc612c4e565b500190565b6000816000190483118215151615612cfb57612cfb612c4e565b500290565b600082612d1d57634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d725784516001600160a01b031683529383019391830191600101612d4d565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612da857600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122072fe83ce6868dc2674ce041fb8efd8695c4f97790ef64ad4c83dc54091b6750364736f6c63430008090033

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

0000000000000000000000007135ab20796eb0395e1fda38624cfaebae568398

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x7135aB20796eb0395e1Fda38624cFAEBae568398

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007135ab20796eb0395e1fda38624cfaebae568398


Deployed Bytecode Sourcemap

25477:21506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45185:98;;;;;;;;;;-1:-1:-1;45185:98:0;;;;;:::i;:::-;;:::i;:::-;;28131:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46154:215;;;;;;;;;;;;;:::i;29043:161::-;;;;;;;;;;-1:-1:-1;29043:161:0;;;;;:::i;:::-;;:::i;:::-;;;1422:14:1;;1415:22;1397:41;;1385:2;1370:18;29043:161:0;1257:187:1;30164:87:0;;;;;;;;;;-1:-1:-1;30233:10:0;;30164:87;;;1595:25:1;;;1583:2;1568:18;30164:87:0;1449:177:1;26707:42:0;;;;;;;;;;-1:-1:-1;26707:42:0;;;;-1:-1:-1;;;;;26707:42:0;;;;;;-1:-1:-1;;;;;1822:32:1;;;1804:51;;1792:2;1777:18;26707:42:0;1631:230:1;28408:95:0;;;;;;;;;;-1:-1:-1;28488:7:0;;28408:95;;26511:32;;;;;;;;;;;;;;;;29212:313;;;;;;;;;;-1:-1:-1;29212:313:0;;;;;:::i;:::-;;:::i;31088:253::-;;;;;;;;;;-1:-1:-1;31088:253:0;;;;;:::i;:::-;;:::i;28317:83::-;;;;;;;;;;-1:-1:-1;28383:9:0;;28317:83;;28383:9;;;;2469:36:1;;2457:2;2442:18;28317:83:0;2327:184:1;31801:479:0;;;;;;;;;;-1:-1:-1;31801:479:0;;;;;:::i;:::-;;:::i;29533:218::-;;;;;;;;;;-1:-1:-1;29533:218:0;;;;;:::i;:::-;;:::i;26237:26::-;;;;;;;;;;;;;;;;30259:377;;;;;;;;;;-1:-1:-1;30259:377:0;;;;;:::i;:::-;;:::i;46469:322::-;;;;;;;;;;-1:-1:-1;46469:322:0;;;;;:::i;:::-;;:::i;43973:111::-;;;;;;;;;;-1:-1:-1;43973:111:0;;;;;:::i;:::-;;:::i;30644:436::-;;;;;;;;;;-1:-1:-1;30644:436:0;;;;;:::i;:::-;;:::i;45429:122::-;;;;;;;;;;-1:-1:-1;45429:122:0;;;;;:::i;:::-;;:::i;26756:29::-;;;;;;;;;;-1:-1:-1;26756:29:0;;;;-1:-1:-1;;;;;26756:29:0;;;26826:40;;;;;;;;;;-1:-1:-1;26826:40:0;;;;-1:-1:-1;;;26826:40:0;;;;;;45922:220;;;;;;;;;;;;;:::i;31349:444::-;;;;;;;;;;-1:-1:-1;31349:444:0;;;;;:::i;:::-;;:::i;36508:123::-;;;;;;;;;;-1:-1:-1;36508:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;36596:27:0;36572:4;36596:27;;;:18;:27;;;;;;;;;36508:123;45059:114;;;;;;;;;;-1:-1:-1;45059:114:0;;;;;:::i;:::-;;:::i;26324:32::-;;;;;;;;;;;;;;;;28511:198;;;;;;;;;;-1:-1:-1;28511:198:0;;;;;:::i;:::-;;:::i;16297:148::-;;;;;;;;;;;;;:::i;44220:411::-;;;;;;;;;;;;;:::i;26550:30::-;;;;;;;;;;-1:-1:-1;26550:30:0;;;;-1:-1:-1;;;;;26550:30:0;;;26649:49;;;;;;;;;;;;;;;;30036:120;;;;;;;;;;-1:-1:-1;30036:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30128:20:0;30104:4;30128:20;;;:11;:20;;;;;;;;;30036:120;15654:79;;;;;;;;;;-1:-1:-1;15692:7:0;15719:6;-1:-1:-1;;;;;15719:6:0;15654:79;;45295:122;;;;;;;;;;-1:-1:-1;45295:122:0;;;;;:::i;:::-;;:::i;28222:87::-;;;;;;;;;;;;;:::i;29759:269::-;;;;;;;;;;-1:-1:-1;29759:269:0;;;;;:::i;:::-;;:::i;17327:305::-;;;;;;;;;;;;;:::i;28717:167::-;;;;;;;;;;-1:-1:-1;28717:167:0;;;;;:::i;:::-;;:::i;16852:89::-;;;;;;;;;;-1:-1:-1;16924:9:0;;16852:89;;26425:27;;;;;;;;;;;;;;;;46803:171;;;;;;;;;;-1:-1:-1;46803:171:0;;;;;:::i;:::-;;:::i;45563:102::-;;;;;;;;;;-1:-1:-1;45563:102:0;;;;;:::i;:::-;;:::i;17021:226::-;;;;;;;;;;-1:-1:-1;17021:226:0;;;;;:::i;:::-;;:::i;28892:143::-;;;;;;;;;;-1:-1:-1;28892:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;29000:18:0;;;28973:7;29000:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28892:143;45673:114;;;;;;;;;;-1:-1:-1;45673:114:0;;;;;:::i;:::-;;:::i;44096:110::-;;;;;;;;;;-1:-1:-1;44096:110:0;;;;;:::i;:::-;;:::i;45795:119::-;;;;;;;;;;-1:-1:-1;45795:119:0;;;;;:::i;:::-;;:::i;16600:244::-;;;;;;;;;;-1:-1:-1;16600:244:0;;;;;:::i;:::-;;:::i;44639:408::-;;;;;;;;;;;;;:::i;45185:98::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;;;;;;;;;45259:7:::1;:16:::0;45185:98::o;28131:83::-;28168:13;28201:5;28194:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28131:83;:::o;46154:215::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;46208:30:::1;46233:4;46208:24;:30::i;:::-;46259:1;46249:7;:11:::0;;;46271:13:::1;:17:::0;46315:1:::1;46299:13;:17:::0;46342:19:::1;46327:12;:34:::0;46154:215::o;29043:161::-;29118:4;29135:39;8157:10;29158:7;29167:6;29135:8;:39::i;:::-;-1:-1:-1;29192:4:0;29043:161;;;;;:::o;29212:313::-;29310:4;29327:36;29337:6;29345:9;29356:6;29327:9;:36::i;:::-;29374:121;29383:6;8157:10;29405:89;29443:6;29405:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29405:19:0;;;;;;:11;:19;;;;;;;;8157:10;29405:33;;;;;;;;;;:37;:89::i;:::-;29374:8;:121::i;:::-;-1:-1:-1;29513:4:0;29212:313;;;;;:::o;31088:253::-;31154:7;31193;;31182;:18;;31174:73;;;;-1:-1:-1;;;31174:73:0;;4920:2:1;31174:73:0;;;4902:21:1;4959:2;4939:18;;;4932:30;4998:34;4978:18;;;4971:62;-1:-1:-1;;;5049:18:1;;;5042:40;5099:19;;31174:73:0;4718:406:1;31174:73:0;31258:19;31281:10;:8;:10::i;:::-;31258:33;-1:-1:-1;31309:24:0;:7;31258:33;31309:11;:24::i;:::-;31302:31;31088:253;-1:-1:-1;;;31088:253:0:o;31801:479::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31883:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31875:60;;;::::0;-1:-1:-1;;;31875:60:0;;5331:2:1;31875:60:0::1;::::0;::::1;5313:21:1::0;5370:2;5350:18;;;5343:30;5409:29;5389:18;;;5382:57;5456:18;;31875:60:0::1;5129:351:1::0;31875:60:0::1;31951:9;31946:327;31970:9;:16:::0;31966:20;::::1;31946:327;;;32028:7;-1:-1:-1::0;;;;;32012:23:0::1;:9;32022:1;32012:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32012:12:0::1;:23;32008:254;;;32071:9;32081:16:::0;;:20:::1;::::0;32100:1:::1;::::0;32081:20:::1;:::i;:::-;32071:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;32056:9:::1;:12:::0;;-1:-1:-1;;;;;32071:31:0;;::::1;::::0;32066:1;;32056:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32056:46:0::1;-1:-1:-1::0;;;;;32056:46:0;;::::1;;::::0;;32121:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32160:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32160:28:0::1;::::0;;32207:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32207:15:0;;;;;-1:-1:-1;;;;;;32207:15:0::1;::::0;;;;;31946:327:::1;31801:479:::0;:::o;32008:254::-:1;31988:3:::0;::::1;::::0;::::1;:::i;:::-;;;;31946:327;;;;31801:479:::0;:::o;29533:218::-;8157:10;29621:4;29670:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29670:34:0;;;;;;;;;;29621:4;;29638:83;;29661:7;;29670:50;;29709:10;29670:38;:50::i;30259:377::-;8157:10;30311:14;30360:19;;;:11;:19;;;;;;;;30359:20;30351:77;;;;-1:-1:-1;;;30351:77:0;;6353:2:1;30351:77:0;;;6335:21:1;6392:2;6372:18;;;6365:30;6431:34;6411:18;;;6404:62;-1:-1:-1;;;6482:18:1;;;6475:42;6534:19;;30351:77:0;6151:408:1;30351:77:0;30440:15;30464:19;30475:7;30464:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30512:15:0;;;;;;:7;:15;;;;;;30439:44;;-1:-1:-1;30512:28:0;;:15;-1:-1:-1;30439:44:0;30512:19;:28::i;:::-;-1:-1:-1;;;;;30494:15:0;;;;;;:7;:15;;;;;:46;30561:7;;:20;;30573:7;30561:11;:20::i;:::-;30551:7;:30;30605:10;;:23;;30620:7;30605:14;:23::i;:::-;30592:10;:36;-1:-1:-1;;;30259:377:0:o;46469:322::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;46544:36:::1;46602:9;46544:68;;46657:17;-1:-1:-1::0;;;;;46657:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46639:57:0::1;;46705:4;46712:17;-1:-1:-1::0;;;;;46712:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46639:98;::::0;-1:-1:-1;;;;;;46639:98:0::1;::::0;;;;;;-1:-1:-1;;;;;7050:15:1;;;46639:98:0::1;::::0;::::1;7032:34:1::0;7102:15;;7082:18;;;7075:43;6967:18;;46639:98:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46623:13;:114:::0;;-1:-1:-1;;;;;46623:114:0;;::::1;-1:-1:-1::0;;;;;;46623:114:0;;::::1;;::::0;;;46748:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;46469:322:0:o;43973:111::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44042:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;44042:34:0::1;44072:4;44042:34;::::0;;43973:111::o;30644:436::-;30734:7;30773;;30762;:18;;30754:62;;;;-1:-1:-1;;;30754:62:0;;7331:2:1;30754:62:0;;;7313:21:1;7370:2;7350:18;;;7343:30;7409:33;7389:18;;;7382:61;7460:18;;30754:62:0;7129:355:1;30754:62:0;30832:17;30827:246;;30867:15;30891:19;30902:7;30891:10;:19::i;:::-;-1:-1:-1;30866:44:0;;-1:-1:-1;30925:14:0;;-1:-1:-1;;;;;30925:14:0;30827:246;30974:23;31005:19;31016:7;31005:10;:19::i;:::-;-1:-1:-1;30972:52:0;;-1:-1:-1;31039:22:0;;-1:-1:-1;;;;;31039:22:0;45429:122;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;45515:13:::1;:28:::0;45429:122::o;45922:220::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;45981:31:::1;46006:5;45981:24;:31::i;:::-;46033:1;46023:7;:11:::0;;;46045:13:::1;:17:::0;;;46073:13:::1;:17:::0;46116:18:::1;46101:12;:33:::0;45922:220::o;31349:444::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;31442:42:::1;-1:-1:-1::0;;;;;31431:53:0;::::1;;;31423:100;;;::::0;-1:-1:-1;;;31423:100:0;;7691:2:1;31423:100:0::1;::::0;::::1;7673:21:1::0;7730:2;7710:18;;;7703:30;7769:34;7749:18;;;7742:62;-1:-1:-1;;;7820:18:1;;;7813:32;7862:19;;31423:100:0::1;7489:398:1::0;31423:100:0::1;-1:-1:-1::0;;;;;31543:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31542:21;31534:61;;;::::0;-1:-1:-1;;;31534:61:0;;5331:2:1;31534:61:0::1;::::0;::::1;5313:21:1::0;5370:2;5350:18;;;5343:30;5409:29;5389:18;;;5382:57;5456:18;;31534:61:0::1;5129:351:1::0;31534:61:0::1;-1:-1:-1::0;;;;;31609:16:0;::::1;31628:1;31609:16:::0;;;:7:::1;:16;::::0;;;;;:20;31606:108:::1;;-1:-1:-1::0;;;;;31685:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31665:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31646:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31606:108:::1;-1:-1:-1::0;;;;;31724:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31724:27:0::1;31747:4;31724:27:::0;;::::1;::::0;;;31762:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31762:23:0::1;::::0;;::::1;::::0;;31349:444::o;45059:114::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;45138:15:::1;:27:::0;;-1:-1:-1;;;;;;45138:27:0::1;-1:-1:-1::0;;;;;45138:27:0;;;::::1;::::0;;;::::1;::::0;;45059:114::o;28511:198::-;-1:-1:-1;;;;;28601:20:0;;28577:7;28601:20;;;:11;:20;;;;;;;;28597:49;;;-1:-1:-1;;;;;;28630:16:0;;;;;:7;:16;;;;;;;28511:198::o;28597:49::-;-1:-1:-1;;;;;28684:16:0;;;;;;:7;:16;;;;;;28664:37;;:19;:37::i;16297:148::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;16404:1:::1;16388:6:::0;;16367:40:::1;::::0;-1:-1:-1;;;;;16388:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16367:40:0;16404:1;;16367:40:::1;16435:1;16418:19:::0;;-1:-1:-1;;;;;;16418:19:0::1;::::0;;16297:148::o;44220:411::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;44288:1:::1;44278:7;:11:::0;;;44300:15:::1;:25:::0;;;44336:13:::1;:17:::0;;;44364:21:::1;:37:::0;;;44412:8:::1;:12:::0;;;44435:16:::1;:26:::0;;;44472:13:::1;:17:::0;;;44500:21:::1;:37:::0;;;44548:16:::1;:24:::0;;-1:-1:-1;;;;44548:24:0::1;::::0;;44588:35:::1;::::0;1397:41:1;;;44588:35:0::1;::::0;1385:2:1;1370:18;44588:35:0::1;;;;;;;;44220:411::o:0;45295:122::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;45381:13:::1;:28:::0;45295:122::o;28222:87::-;28261:13;28294:7;28287:14;;;;;:::i;29759:269::-;29852:4;29869:129;8157:10;29892:7;29901:96;29940:15;29901:96;;;;;;;;;;;;;;;;;8157:10;29901:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29901:34:0;;;;;;;;;;;;:38;:96::i;17327:305::-;17379:14;;-1:-1:-1;;;;;17379:14:0;17397:10;17379:28;17371:76;;;;-1:-1:-1;;;17371:76:0;;8094:2:1;17371:76:0;;;8076:21:1;8133:2;8113:18;;;8106:30;8172:34;8152:18;;;8145:62;-1:-1:-1;;;8223:18:1;;;8216:33;8266:19;;17371:76:0;7892:399:1;17371:76:0;17484:9;;17466:15;:27;17458:72;;;;-1:-1:-1;;;17458:72:0;;8498:2:1;17458:72:0;;;8480:21:1;8537:2;8517:18;;;8510:30;8576:33;8556:18;;;8549:61;8627:18;;17458:72:0;8296:355:1;17458:72:0;17575:14;;;17567:6;;17546:44;;-1:-1:-1;;;;;17575:14:0;;;;17567:6;;;;-1:-1:-1;;;;;;;;;;;17546:44:0;;17610:14;;;17601:23;;-1:-1:-1;;;;;;17601:23:0;-1:-1:-1;;;;;17610:14:0;;;17601:23;;;;;;17327:305::o;28717:167::-;28795:4;28812:42;8157:10;28836:9;28847:6;28812:9;:42::i;46803:171::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;46880:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;46880:32:0::1;-1:-1:-1::0;;;;46880:32:0;;::::1;;::::0;;46928:38:::1;::::0;::::1;::::0;::::1;::::0;46904:8;1422:14:1;1415:22;1397:41;;1385:2;1370:18;;1257:187;46928:38:0::1;;;;;;;;46803:171:::0;:::o;45563:102::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;45639:8:::1;:18:::0;45563:102::o;17021:226::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;17102:6:::1;::::0;;;17085:23;;-1:-1:-1;;;;;;17085:23:0;;::::1;-1:-1:-1::0;;;;;17102:6:0;::::1;17085:23;::::0;;;17119:19:::1;::::0;;17161:22:::1;17179:4:::0;17161:15:::1;:22;:::i;:::-;17149:9;:34:::0;17236:1:::1;17220:6:::0;;17199:40:::1;::::0;-1:-1:-1;;;;;17220:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17199:40:0;17236:1;;17199:40:::1;17021:226:::0;:::o;45673:114::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;45741:29:::1;:38:::0;45673:114::o;44096:110::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44163:27:0::1;44193:5;44163:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;44163:35:0::1;::::0;;44096:110::o;45795:119::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;45887:19:::1;:11:::0;45901:5:::1;45887:19;:::i;:::-;45872:12;:34:::0;-1:-1:-1;45795:119:0:o;16600:244::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16689:22:0;::::1;16681:73;;;::::0;-1:-1:-1;;;16681:73:0;;9164:2:1;16681:73:0::1;::::0;::::1;9146:21:1::0;9203:2;9183:18;;;9176:30;9242:34;9222:18;;;9215:62;-1:-1:-1;;;9293:18:1;;;9286:36;9339:19;;16681:73:0::1;8962:402:1::0;16681:73:0::1;16791:6;::::0;;16770:38:::1;::::0;-1:-1:-1;;;;;16770:38:0;;::::1;::::0;16791:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16770:38:0;::::1;16819:6;:17:::0;;-1:-1:-1;;;;;;16819:17:0::1;-1:-1:-1::0;;;;;16819:17:0;;;::::1;::::0;;;::::1;::::0;;16600:244::o;44639:408::-;15866:6;;-1:-1:-1;;;;;15866:6:0;8157:10;15866:22;15858:67;;;;-1:-1:-1;;;15858:67:0;;;;;;;:::i;:::-;44706:1:::1;44696:7;:11:::0;;;44718:15:::1;:25:::0;;;44754:13:::1;:17:::0;;;44782:21:::1;:37:::0;;;-1:-1:-1;44830:8:0::1;:12:::0;44853:16:::1;:26:::0;44906:1:::1;44890:13;:17:::0;;;44918:21:::1;:37:::0;44966:16:::1;:23:::0;;-1:-1:-1;;;;44966:23:0::1;-1:-1:-1::0;;;44966:23:0::1;::::0;;45005:34:::1;::::0;-1:-1:-1;1397:41:1;;45005:34:0::1;::::0;1385:2:1;1370:18;45005:34:0::1;1257:187:1::0;36639:337:0;-1:-1:-1;;;;;36732:19:0;;36724:68;;;;-1:-1:-1;;;36724:68:0;;9571:2:1;36724:68:0;;;9553:21:1;9610:2;9590:18;;;9583:30;9649:34;9629:18;;;9622:62;-1:-1:-1;;;9700:18:1;;;9693:34;9744:19;;36724:68:0;9369:400:1;36724:68:0;-1:-1:-1;;;;;36811:21:0;;36803:68;;;;-1:-1:-1;;;36803:68:0;;9976:2:1;36803:68:0;;;9958:21:1;10015:2;9995:18;;;9988:30;10054:34;10034:18;;;10027:62;-1:-1:-1;;;10105:18:1;;;10098:32;10147:19;;36803:68:0;9774:398:1;36803:68:0;-1:-1:-1;;;;;36884:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36936:32;;1595:25:1;;;36936:32:0;;1568:18:1;36936:32:0;;;;;;;36639:337;;;:::o;36984:1344::-;-1:-1:-1;;;;;37106:18:0;;37098:68;;;;-1:-1:-1;;;37098:68:0;;10379:2:1;37098:68:0;;;10361:21:1;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;-1:-1:-1;;;10508:18:1;;;10501:35;10553:19;;37098:68:0;10177:401:1;37098:68:0;37194:1;37185:6;:10;37177:64;;;;-1:-1:-1;;;37177:64:0;;10785:2:1;37177:64:0;;;10767:21:1;10824:2;10804:18;;;10797:30;10863:34;10843:18;;;10836:62;-1:-1:-1;;;10914:18:1;;;10907:39;10963:19;;37177:64:0;10583:405:1;37177:64:0;15692:7;15719:6;-1:-1:-1;;;;;37255:15:0;;;15719:6;;37255:15;;;;:32;;-1:-1:-1;15692:7:0;15719:6;-1:-1:-1;;;;;37274:13:0;;;15719:6;;37274:13;;37255:32;37252:139;;;37322:12;;37312:6;:22;;37304:75;;;;-1:-1:-1;;;37304:75:0;;11195:2:1;37304:75:0;;;11177:21:1;11234:2;11214:18;;;11207:30;11273:34;11253:18;;;11246:62;-1:-1:-1;;;11324:18:1;;;11317:38;11372:19;;37304:75:0;10993:404:1;37304:75:0;37713:28;37744:24;37762:4;37744:9;:24::i;:::-;37838:29;;37713:55;;-1:-1:-1;37814:53:0;;;;;;;37896;;-1:-1:-1;37933:16:0;;-1:-1:-1;;;37933:16:0;;;;37932:17;37896:53;:91;;;;-1:-1:-1;37974:13:0;;-1:-1:-1;;;;;37966:21:0;;;37974:13;;37966:21;;37896:91;:129;;;;-1:-1:-1;38004:21:0;;-1:-1:-1;;;38004:21:0;;;;37896:129;37878:322;;;38075:29;;38052:52;;38152:36;38167:20;38152:14;:36::i;:::-;38290:30;38305:4;38310:2;38313:6;38290:14;:30::i;:::-;37087:1241;;36984:1344;;;:::o;4471:192::-;4557:7;4593:12;4585:6;;;;4577:29;;;;-1:-1:-1;;;4577:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4617:9:0;4629:5;4633:1;4629;:5;:::i;:::-;4617:17;4471:192;-1:-1:-1;;;;;4471:192:0:o;34404:163::-;34445:7;34466:15;34483;34502:19;:17;:19::i;:::-;34465:56;;-1:-1:-1;34465:56:0;-1:-1:-1;34539:20:0;34465:56;;34539:11;:20::i;:::-;34532:27;;;;34404:163;:::o;5869:132::-;5927:7;5954:39;5958:1;5961;5954:39;;;;;;;;;;;;;;;;;:3;:39::i;3568:181::-;3626:7;;3658:5;3662:1;3658;:5;:::i;:::-;3646:17;;3687:1;3682;:6;;3674:46;;;;-1:-1:-1;;;3674:46:0;;11604:2:1;3674:46:0;;;11586:21:1;11643:2;11623:18;;;11616:30;11682:29;11662:18;;;11655:57;11729:18;;3674:46:0;11402:351:1;33202:419:0;33261:7;33270;33279;33288;33297;33306;33327:23;33352:12;33366:18;33388:20;33400:7;33388:11;:20::i;:::-;33326:82;;;;;;33420:15;33437:23;33462:12;33478:50;33490:7;33499:4;33505:10;33517;:8;:10::i;:::-;33478:11;:50::i;:::-;33419:109;;;;-1:-1:-1;33419:109:0;;-1:-1:-1;33579:15:0;;-1:-1:-1;33596:4:0;;-1:-1:-1;33602:10:0;;-1:-1:-1;33202:419:0;;-1:-1:-1;;;;;33202:419:0:o;4032:136::-;4090:7;4117:43;4121:1;4124;4117:43;;;;;;;;;;;;;;;;;:3;:43::i;38336:1023::-;27247:16;:23;;-1:-1:-1;;;;27247:23:0;-1:-1:-1;;;27247:23:0;;;;38490:27:::1;:20:::0;38515:1:::1;38490:24;:27::i;:::-;38475:42:::0;-1:-1:-1;38528:17:0::1;38548:30;:20:::0;38475:42;38548:24:::1;:30::i;:::-;38528:50:::0;-1:-1:-1;38903:21:0::1;38972:22;38989:4:::0;38972:16:::1;:22::i;:::-;39128:18;39149:41;:21;39175:14:::0;39149:25:::1;:41::i;:::-;39128:62;;39247:35;39260:9;39271:10;39247:12;:35::i;:::-;39308:43;::::0;;11960:25:1;;;12016:2;12001:18;;11994:34;;;12044:18;;;12037:34;;;39308:43:0::1;::::0;11948:2:1;11933:18;39308:43:0::1;;;;;;;-1:-1:-1::0;;27293:16:0;:24;;-1:-1:-1;;;;27293:24:0;;;-1:-1:-1;;;38336:1023:0:o;40578:1709::-;-1:-1:-1;;;;;40675:26:0;;;;;;:18;:26;;;;;;;;;:59;;-1:-1:-1;;;;;;40705:29:0;;;;;;:18;:29;;;;;;;;40675:59;40672:104;;;40750:14;:12;:14::i;:::-;40854:15;40872:29;40897:3;40872:20;40883:8;;40872:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;40854:47;;40912:23;40938:34;40968:3;40938:25;40949:13;;40938:6;:10;;:25;;;;:::i;:34::-;-1:-1:-1;;;;;40989:19:0;;;;;;:11;:19;;;;;;40912:60;;-1:-1:-1;40989:19:0;;:46;;;;-1:-1:-1;;;;;;41013:22:0;;;;;;:11;:22;;;;;;;;41012:23;40989:46;40985:777;;;41052:84;41074:6;41082:9;41094:40;41118:15;41094:19;:6;41105:7;41094:10;:19::i;:::-;:23;;:40::i;:::-;41052:21;:84::i;:::-;40985:777;;;-1:-1:-1;;;;;41159:19:0;;;;;;:11;:19;;;;;;;;41158:20;:46;;;;-1:-1:-1;;;;;;41182:22:0;;;;;;:11;:22;;;;;;;;41158:46;41154:608;;;41221:82;41241:6;41249:9;41261:40;41285:15;41261:19;:6;41272:7;41261:10;:19::i;:40::-;41221:19;:82::i;41154:608::-;-1:-1:-1;;;;;41326:19:0;;;;;;:11;:19;;;;;;;;41325:20;:47;;;;-1:-1:-1;;;;;;41350:22:0;;;;;;:11;:22;;;;;;;;41349:23;41325:47;41321:441;;;41389:80;41407:6;41415:9;41427:40;41451:15;41427:19;:6;41438:7;41427:10;:19::i;:40::-;41389:17;:80::i;41321:441::-;-1:-1:-1;;;;;41491:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41514:22:0;;;;;;:11;:22;;;;;;;;41491:45;41487:275;;;41553:84;41575:6;41583:9;41595:40;41619:15;41595:19;:6;41606:7;41595:10;:19::i;:40::-;41553:21;:84::i;41487:275::-;41670:80;41688:6;41696:9;41708:40;41732:15;41708:19;:6;41719:7;41708:10;:19::i;41670:80::-;41880:1;41870:7;:11;;;41892:13;:17;;;41924:46;;41942:6;;41962:7;41924:17;:46::i;:::-;42007:15;;41981:59;;41999:6;;-1:-1:-1;;;;;42007:15:0;42024;41981:17;:59::i;:::-;42109:15;;42099:7;:25;42151:21;;42135:13;:37;-1:-1:-1;;;;;42190:26:0;;-1:-1:-1;42190:26:0;;;:18;:26;;;;;;;;;:59;;-1:-1:-1;;;;;;42220:29:0;;;;;;:18;:29;;;;;;;;42190:59;42187:92;;;42264:15;36342;;36332:7;:25;36383:21;;36367:13;:37;36425:16;;36414:8;:27;36467:21;;36451:13;:37;36289:207;34575:561;34672:7;;34708;;34625;;;;;34732:289;34756:9;:16;34752:20;;34732:289;;;34822:7;34798;:21;34806:9;34816:1;34806:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34806:12:0;34798:21;;;;;;;;;;;;;:31;;:66;;;34857:7;34833;:21;34841:9;34851:1;34841:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34841:12:0;34833:21;;;;;;;;;;;;;:31;34798:66;34794:97;;;34874:7;;34883;;34866:25;;;;;;;34575:561;;:::o;34794:97::-;34916:34;34928:7;:21;34936:9;34946:1;34936:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34936:12:0;34928:21;;;;;;;;;;;;;34916:7;;:11;:34::i;:::-;34906:44;;34975:34;34987:7;:21;34995:9;35005:1;34995:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34995:12:0;34987:21;;;;;;;;;;;;;34975:7;;:11;:34::i;:::-;34965:44;-1:-1:-1;34774:3:0;;;;:::i;:::-;;;;34732:289;;;-1:-1:-1;35057:7:0;;35045;;:20;;:11;:20::i;:::-;35035:7;:30;35031:61;;;35075:7;;35084;;35067:25;;;;;;34575:561;;:::o;35031:61::-;35111:7;;35120;;-1:-1:-1;34575:561:0;-1:-1:-1;34575:561:0:o;6497:278::-;6583:7;6618:12;6611:5;6603:28;;;;-1:-1:-1;;;6603:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6642:9:0;6654:5;6658:1;6654;:5;:::i;33629:330::-;33689:7;33698;33707;33727:12;33742:24;33758:7;33742:15;:24::i;:::-;33727:39;;33777:18;33798:30;33820:7;33798:21;:30::i;:::-;33777:51;-1:-1:-1;33839:23:0;33865:33;33777:51;33865:17;:7;33877:4;33865:11;:17::i;:33::-;33839:59;33934:4;;-1:-1:-1;33940:10:0;;-1:-1:-1;33629:330:0;;-1:-1:-1;;;33629:330:0:o;33967:429::-;34082:7;;;;34138:24;:7;34150:11;34138;:24::i;:::-;34120:42;-1:-1:-1;34173:12:0;34188:21;:4;34197:11;34188:8;:21::i;:::-;34173:36;-1:-1:-1;34220:18:0;34241:27;:10;34256:11;34241:14;:27::i;:::-;34220:48;-1:-1:-1;34279:23:0;34305:33;34220:48;34305:17;:7;34317:4;34305:11;:17::i;:33::-;34357:7;;;;-1:-1:-1;34383:4:0;;-1:-1:-1;33967:429:0;;-1:-1:-1;;;;;;;33967:429:0:o;39367:599::-;39524:16;;;39538:1;39524:16;;;;;;;;39500:21;;39524:16;;;;;;;;;;-1:-1:-1;39524:16:0;39500:40;;39569:4;39551;39556:1;39551:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39551:23:0;;;:7;;;;;;;;;;:23;;;;39595:15;;:22;;;-1:-1:-1;;;39595:22:0;;;;:15;;;;;:20;;:22;;;;;39551:7;;39595:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39585:4;39590:1;39585:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39585:32:0;;;:7;;;;;;;;;:32;39662:15;;39630:62;;39647:4;;39662:15;39680:11;39630:8;:62::i;:::-;39734:15;;:224;;-1:-1:-1;;;39734:224:0;;-1:-1:-1;;;;;39734:15:0;;;;:66;;:224;;39815:11;;39734:15;;39885:4;;39912;;39932:15;;39734:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39422:544;39367:599;:::o;39974:519::-;40157:15;;40125:62;;40142:4;;-1:-1:-1;;;;;40157:15:0;40175:11;40125:8;:62::i;:::-;40233:15;;-1:-1:-1;;;;;40233:15:0;:31;40272:9;40305:4;40325:11;40233:15;;40437:7;15692;15719:6;-1:-1:-1;;;;;15719:6:0;;15654:79;40437:7;40233:252;;;;;;-1:-1:-1;;;;;;40233:252:0;;;-1:-1:-1;;;;;13780:15:1;;;40233:252:0;;;13762:34:1;13812:18;;;13805:34;;;;13855:18;;;13848:34;;;;13898:18;;;13891:34;13962:15;;;13941:19;;;13934:44;40459:15:0;13994:19:1;;;13987:35;13696:19;;40233:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;35855:422::-;35901:7;;:12;:34;;;;-1:-1:-1;35917:13:0;;:18;35901:34;:54;;;;-1:-1:-1;35939:13:0;;:16;35901:54;:69;;;;-1:-1:-1;35959:8:0;;:11;35901:69;35898:81;;;35855:422::o;35898:81::-;36017:7;;;35999:15;:25;36059:13;;;36035:21;:37;36102:8;;;36083:16;:27;36145:13;;;36121:21;:37;-1:-1:-1;36179:11:0;;;;36201:17;;;;36229;;;;36257:12;35855:422::o;4922:471::-;4980:7;5225:6;5221:47;;-1:-1:-1;5255:1:0;5248:8;;5221:47;5280:9;5292:5;5296:1;5292;:5;:::i;:::-;5280:17;-1:-1:-1;5325:1:0;5316:5;5320:1;5280:17;5316:5;:::i;:::-;:10;5308:56;;;;-1:-1:-1;;;5308:56:0;;14546:2:1;5308:56:0;;;14528:21:1;14585:2;14565:18;;;14558:30;14624:34;14604:18;;;14597:62;-1:-1:-1;;;14675:18:1;;;14668:31;14716:19;;5308:56:0;14344:397:1;43399:566:0;43502:15;43519:23;43544:12;43558:23;43583:12;43597:18;43619:19;43630:7;43619:10;:19::i;:::-;-1:-1:-1;;;;;43667:15:0;;;;;;:7;:15;;;;;;43501:137;;-1:-1:-1;43501:137:0;;-1:-1:-1;43501:137:0;;-1:-1:-1;43501:137:0;-1:-1:-1;43501:137:0;-1:-1:-1;43501:137:0;-1:-1:-1;43667:28:0;;43687:7;43667:19;:28::i;:::-;-1:-1:-1;;;;;43649:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43724:7;:15;;;;:28;;43744:7;43724:19;:28::i;:::-;-1:-1:-1;;;;;43706:15:0;;;;;;;:7;:15;;;;;;:46;;;;43784:18;;;;;;;:39;;43807:15;43784:22;:39::i;:::-;-1:-1:-1;;;;;43763:18:0;;;;;;:7;:18;;;;;:60;43837:26;43852:10;43837:14;:26::i;:::-;43874:23;43886:4;43892;43874:11;:23::i;:::-;43930:9;-1:-1:-1;;;;;43913:44:0;43922:6;-1:-1:-1;;;;;43913:44:0;;43941:15;43913:44;;;;1595:25:1;;1583:2;1568:18;;1449:177;43913:44:0;;;;;;;;43490:475;;;;;;43399:566;;;:::o;42805:586::-;42906:15;42923:23;42948:12;42962:23;42987:12;43001:18;43023:19;43034:7;43023:10;:19::i;:::-;-1:-1:-1;;;;;43071:15:0;;;;;;:7;:15;;;;;;42905:137;;-1:-1:-1;42905:137:0;;-1:-1:-1;42905:137:0;;-1:-1:-1;42905:137:0;-1:-1:-1;42905:137:0;-1:-1:-1;42905:137:0;-1:-1:-1;43071:28:0;;42905:137;43071:19;:28::i;:::-;-1:-1:-1;;;;;43053:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43131:18;;;;;:7;:18;;;;;:39;;43154:15;43131:22;:39::i;:::-;-1:-1:-1;;;;;43110:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43202:7;:18;;;;:39;;43225:15;43202:22;:39::i;42295:502::-;42394:15;42411:23;42436:12;42450:23;42475:12;42489:18;42511:19;42522:7;42511:10;:19::i;:::-;-1:-1:-1;;;;;42559:15:0;;;;;;:7;:15;;;;;;42393:137;;-1:-1:-1;42393:137:0;;-1:-1:-1;42393:137:0;;-1:-1:-1;42393:137:0;-1:-1:-1;42393:137:0;-1:-1:-1;42393:137:0;-1:-1:-1;42559:28:0;;42393:137;42559:19;:28::i;32288:642::-;32391:15;32408:23;32433:12;32447:23;32472:12;32486:18;32508:19;32519:7;32508:10;:19::i;:::-;-1:-1:-1;;;;;32556:15:0;;;;;;:7;:15;;;;;;32390:137;;-1:-1:-1;32390:137:0;;-1:-1:-1;32390:137:0;;-1:-1:-1;32390:137:0;-1:-1:-1;32390:137:0;-1:-1:-1;32390:137:0;-1:-1:-1;32556:28:0;;32576:7;32556:19;:28::i;:::-;-1:-1:-1;;;;;32538:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32613:7;:15;;;;:28;;32633:7;32613:19;:28::i;35515:154::-;35579:7;35606:55;35645:5;35606:20;35618:7;;35606;:11;;:20;;;;:::i;35677:166::-;35747:7;35774:61;35819:5;35774:26;35786:13;;35774:7;:11;;:26;;;;:::i;35148:355::-;35211:19;35234:10;:8;:10::i;:::-;35211:33;-1:-1:-1;35255:18:0;35276:27;:10;35211:33;35276:14;:27::i;:::-;35355:4;35339:22;;;;:7;:22;;;;;;35255:48;;-1:-1:-1;35339:38:0;;35255:48;35339:26;:38::i;:::-;35330:4;35314:22;;;;:7;:22;;;;;;;;:63;;;;35391:11;:26;;;;;;35388:107;;;35473:4;35457:22;;;;:7;:22;;;;;;:38;;35484:10;35457:26;:38::i;:::-;35448:4;35432:22;;;;:7;:22;;;;;:63;35388:107;35200:303;;35148:355;:::o;33047:147::-;33125:7;;:17;;33137:4;33125:11;:17::i;:::-;33115:7;:27;33166:10;;:20;;33181:4;33166:14;:20::i;:::-;33153:10;:33;-1:-1:-1;;33047:147:0:o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:597::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;637:6;634:1;631:13;628:91;;;707:1;702:2;693:6;682:9;678:22;674:31;667:42;628:91;-1:-1:-1;780:2:1;759:15;-1:-1:-1;;755:29:1;740:45;;;;787:2;736:54;;199:597;-1:-1:-1;;;199:597:1:o;801:131::-;-1:-1:-1;;;;;876:31:1;;866:42;;856:70;;922:1;919;912:12;856:70;801:131;:::o;937:315::-;1005:6;1013;1066:2;1054:9;1045:7;1041:23;1037:32;1034:52;;;1082:1;1079;1072:12;1034:52;1121:9;1108:23;1140:31;1165:5;1140:31;:::i;:::-;1190:5;1242:2;1227:18;;;;1214:32;;-1:-1:-1;;;937:315:1:o;1866:456::-;1943:6;1951;1959;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2067:9;2054:23;2086:31;2111:5;2086:31;:::i;:::-;2136:5;-1:-1:-1;2193:2:1;2178:18;;2165:32;2206:33;2165:32;2206:33;:::i;:::-;1866:456;;2258:7;;-1:-1:-1;;;2312:2:1;2297:18;;;;2284:32;;1866:456::o;2516:247::-;2575:6;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2683:9;2670:23;2702:31;2727:5;2702:31;:::i;2768:160::-;2833:20;;2889:13;;2882:21;2872:32;;2862:60;;2918:1;2915;2908:12;2862:60;2768:160;;;:::o;2933:248::-;2998:6;3006;3059:2;3047:9;3038:7;3034:23;3030:32;3027:52;;;3075:1;3072;3065:12;3027:52;3111:9;3098:23;3088:33;;3140:35;3171:2;3160:9;3156:18;3140:35;:::i;:::-;3130:45;;2933:248;;;;;:::o;3394:180::-;3450:6;3503:2;3491:9;3482:7;3478:23;3474:32;3471:52;;;3519:1;3516;3509:12;3471:52;3542:26;3558:9;3542:26;:::i;3579:388::-;3647:6;3655;3708:2;3696:9;3687:7;3683:23;3679:32;3676:52;;;3724:1;3721;3714:12;3676:52;3763:9;3750:23;3782:31;3807:5;3782:31;:::i;:::-;3832:5;-1:-1:-1;3889:2:1;3874:18;;3861:32;3902:33;3861:32;3902:33;:::i;:::-;3954:7;3944:17;;;3579:388;;;;;:::o;3972:356::-;4174:2;4156:21;;;4193:18;;;4186:30;4252:34;4247:2;4232:18;;4225:62;4319:2;4304:18;;3972:356::o;4333:380::-;4412:1;4408:12;;;;4455;;;4476:61;;4530:4;4522:6;4518:17;4508:27;;4476:61;4583:2;4575:6;4572:14;4552:18;4549:38;4546:161;;;4629:10;4624:3;4620:20;4617:1;4610:31;4664:4;4661:1;4654:15;4692:4;4689:1;4682:15;4546:161;;4333:380;;;:::o;5485:127::-;5546:10;5541:3;5537:20;5534:1;5527:31;5577:4;5574:1;5567:15;5601:4;5598:1;5591:15;5617:127;5678:10;5673:3;5669:20;5666:1;5659:31;5709:4;5706:1;5699:15;5733:4;5730:1;5723:15;5749:125;5789:4;5817:1;5814;5811:8;5808:34;;;5822:18;;:::i;:::-;-1:-1:-1;5859:9:1;;5749:125::o;5879:127::-;5940:10;5935:3;5931:20;5928:1;5921:31;5971:4;5968:1;5961:15;5995:4;5992:1;5985:15;6011:135;6050:3;-1:-1:-1;;6071:17:1;;6068:43;;;6091:18;;:::i;:::-;-1:-1:-1;6138:1:1;6127:13;;6011:135::o;6564:251::-;6634:6;6687:2;6675:9;6666:7;6662:23;6658:32;6655:52;;;6703:1;6700;6693:12;6655:52;6735:9;6729:16;6754:31;6779:5;6754:31;:::i;8656:128::-;8696:3;8727:1;8723:6;8720:1;8717:13;8714:39;;;8733:18;;:::i;:::-;-1:-1:-1;8769:9:1;;8656:128::o;8789:168::-;8829:7;8895:1;8891;8887:6;8883:14;8880:1;8877:21;8872:1;8865:9;8858:17;8854:45;8851:71;;;8902:18;;:::i;:::-;-1:-1:-1;8942:9:1;;8789:168::o;12082:217::-;12122:1;12148;12138:132;;12192:10;12187:3;12183:20;12180:1;12173:31;12227:4;12224:1;12217:15;12255:4;12252:1;12245:15;12138:132;-1:-1:-1;12284:9:1;;12082:217::o;12436:980::-;12698:4;12746:3;12735:9;12731:19;12777:6;12766:9;12759:25;12803:2;12841:6;12836:2;12825:9;12821:18;12814:34;12884:3;12879:2;12868:9;12864:18;12857:31;12908:6;12943;12937:13;12974:6;12966;12959:22;13012:3;13001:9;12997:19;12990:26;;13051:2;13043:6;13039:15;13025:29;;13072:1;13082:195;13096:6;13093:1;13090:13;13082:195;;;13161:13;;-1:-1:-1;;;;;13157:39:1;13145:52;;13252:15;;;;13217:12;;;;13193:1;13111:9;13082:195;;;-1:-1:-1;;;;;;;13333:32:1;;;;13328:2;13313:18;;13306:60;-1:-1:-1;;;13397:3:1;13382:19;13375:35;13294:3;12436:980;-1:-1:-1;;;12436:980:1:o;14033:306::-;14121:6;14129;14137;14190:2;14178:9;14169:7;14165:23;14161:32;14158:52;;;14206:1;14203;14196:12;14158:52;14235:9;14229:16;14219:26;;14285:2;14274:9;14270:18;14264:25;14254:35;;14329:2;14318:9;14314:18;14308:25;14298:35;;14033:306;;;;;:::o

Swarm Source

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