ETH Price: $3,403.13 (-0.44%)
Gas: 19 Gwei

Token

DODO (DODO)
 

Overview

Max Total Supply

1,000,000,000 DODO

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,198,615.752509327 DODO

Value
$0.00
0x567cf7713d04f8f3671450145c5a25bbd319361d
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:
DODO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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

    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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



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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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


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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

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


// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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

contract DODO is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    address deadAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "DODO";
    string private _symbol = "DODO";
    uint8 private _decimals = 9;    
    uint256 private initialsupply = 1_000_000_000;
    uint256 private _tTotal = initialsupply * 10 ** _decimals;
    address payable private _marketingWallet;
    
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping(address => uint256) private buycooldown;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isBlacklisted;
    address[] private _excluded;
    bool private cooldownEnabled = true;
    uint256 public cooldown = 30 seconds;
    
    uint256 private constant MAX = ~uint256(0);
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    uint256 public _liquidityFee = 0;
    uint256 private _previousLiquidityFee = _liquidityFee;
    uint256 public _marketingFee = 0;
    uint256 private _previousMarketingFee = _marketingFee;
    
    uint256 _sellLiquidityFee;
    uint256 _sellMarketingFee;
    uint256 _sellTaxFee;
    uint256 _buyLiquidtyFee;
    uint256 _buyMarketingFee;
    uint256 _buytaxFee;
    uint256 _transferTaxFee;
    uint256 _transferMarketingFee;
    uint256 _transferLiquidityFee;


    uint256 private maxBuyPercent = 1;
    uint256 private maxBuyDivisor = 100;
    uint256 private _maxBuyAmount = (_tTotal * maxBuyPercent) / maxBuyDivisor;
   
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 private numTokensSellToAddToLiquidity = _tTotal / 100; // 1%
    
    event ToMarketing(uint256 bnbSent);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor (address marketingWallet) {
        _rOwned[_msgSender()] = _rTotal;
         _marketingWallet = payable(marketingWallet);
        // Pancake Swap V2 address
        // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
        // uniswap address
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWallet] = true;
        _sellLiquidityFee = 2;
        _sellMarketingFee = 18;
        _transferMarketingFee = 5;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }


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

    function setNumTokensSellToAddToLiquidity(uint256 percent, uint256 divisor) external onlyOwner() {
        uint256 swapAmount = _tTotal.mul(percent).div(divisor);
        numTokensSellToAddToLiquidity = swapAmount;
    }
        
    function setLiquidityFeePercent(uint256 buyLiquidtyFee, uint256 sellLiquidityFee, uint256 transferLiquidityFee) external onlyOwner() {
        _buyLiquidtyFee = buyLiquidtyFee;
        _sellLiquidityFee = sellLiquidityFee;
        _transferLiquidityFee = transferLiquidityFee;
    }    
    
    function setMarketingFeePercent(uint256 buyMarketingFee, uint256 sellMarketingFee, uint256 transferMarketingfee) external onlyOwner() {
        _buyMarketingFee = buyMarketingFee;
        _sellMarketingFee = sellMarketingFee;
        _transferMarketingFee = transferMarketingfee;
    }    
    
    function setTaxFeePercent(uint256 buyTaxFee, uint256 sellTaxFee, uint256 transferTaxFee) external onlyOwner() {
        _buytaxFee = buyTaxFee;
        _sellTaxFee = sellTaxFee;
        _transferTaxFee = transferTaxFee;
    }

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

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
    
    function setBlacklistStatus(address account, bool Blacklisted) external onlyOwner {
            if (Blacklisted = true) {
                _isBlacklisted[account] = true; 
            } else if(Blacklisted = false) {
                _isBlacklisted[account] = false;
                }
    }
    
    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

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

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

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

    function excludeFromReward(address account) public onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        // require(account != 0x10ED43C718714eb63d5aA57B78B54704E256024E, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        swapTokensForEth(tokensToSwapToBNB);

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

        uint256 bnbToLiquify = bnbSwapped.div(3);

        addLiquidity(tokenBalanceToLiquify, bnbToLiquify);

        emit SwapAndLiquify(tokenBalanceToLiquifyAsBNB, bnbToLiquify, tokenBalanceToLiquify);

        uint256 marketingBNB = bnbSwapped.sub(bnbToLiquify);

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

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

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }
    
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(_isBlacklisted[from] == false, "Hehe");
        require(_isBlacklisted[to] == false, "Hehe");
        if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) {
                require(amount <= _maxBuyAmount);
                require(buycooldown[to] < block.timestamp);
                buycooldown[to] = block.timestamp.add(cooldown);        
        }
            
        uint256 contractTokenBalance = balanceOf(address(this));

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

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

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

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        if(from == uniswapV2Pair) {
            _liquidityFee = _buyLiquidtyFee;
            _marketingFee = _buyMarketingFee;
            _taxFee = _buytaxFee;
        } else if(to == uniswapV2Pair){
            _liquidityFee = _sellLiquidityFee;
            _marketingFee = _sellMarketingFee;
            _taxFee = _sellTaxFee;
        } else {
            _liquidityFee = _transferLiquidityFee;
            _marketingFee = _transferMarketingFee;
            _taxFee = _transferTaxFee;
        }

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

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

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

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

        if(!takeFee)
            restoreAllFee();
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"bnbSent","type":"uint256"}],"name":"ToMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountPercentage","type":"uint256"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"Blacklisted","type":"bool"}],"name":"setBlacklistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyLiquidtyFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"transferLiquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"transferMarketingfee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setMaxBuyPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTaxFee","type":"uint256"},{"internalType":"uint256","name":"sellTaxFee","type":"uint256"},{"internalType":"uint256","name":"transferTaxFee","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"}]

600380546001600160a01b03191661dead179055610100604052600460c081905263444f444f60e01b60e09081526200003a91908162000470565b5060408051808201909152600480825263444f444f60e01b6020909201918252620000689160059162000470565b506006805460ff19166009908117909155633b9aca006007556200008e90600a620005a8565b6007546200009d919062000669565b60088190556012805460ff19166001179055601e601355620000c290600019620006e2565b620000d0906000196200068b565b601455600060165560165460175560006018556018546019556000601a55601a54601b556001602555606460265560265460255460085462000113919062000669565b6200011f919062000548565b6027556028805461ff001916610100179055600854620001429060649062000548565b6029553480156200015257600080fd5b506040516200375638038062003756833981016040819052620001759162000516565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601454336000908152600a602090815260409182902092909255600980546001600160a01b0319166001600160a01b038516179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200023357600080fd5b505afa15801562000248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026e919062000516565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b757600080fd5b505afa158015620002cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f2919062000516565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200033b57600080fd5b505af115801562000350573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000376919062000516565b6001600160601b0319606091821b811660a0529082901b166080526001600e6000620003aa6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600e9093528183208054851660019081179091556009549091168352912080549092161790556002601c556012601d556005602355620004183390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200046091815260200190565b60405180910390a3505062000725565b8280546200047e90620006a5565b90600052602060002090601f016020900481019282620004a25760008555620004ed565b82601f10620004bd57805160ff1916838001178555620004ed565b82800160010185558215620004ed579182015b82811115620004ed578251825591602001919060010190620004d0565b50620004fb929150620004ff565b5090565b5b80821115620004fb576000815560010162000500565b6000602082840312156200052957600080fd5b81516001600160a01b03811681146200054157600080fd5b9392505050565b6000826200055a576200055a6200070f565b500490565b600181815b80851115620005a0578160001904821115620005845762000584620006f9565b808516156200059257918102915b93841c939080029062000564565b509250929050565b60006200054160ff841683600082620005c45750600162000663565b81620005d35750600062000663565b8160018114620005ec5760028114620005f75762000617565b600191505062000663565b60ff8411156200060b576200060b620006f9565b50506001821b62000663565b5060208310610133831016604e8410600b84101617156200063c575081810a62000663565b6200064883836200055f565b80600019048211156200065f576200065f620006f9565b0290505b92915050565b6000816000190483118215151615620006865762000686620006f9565b500290565b600082821015620006a057620006a0620006f9565b500390565b600181811c90821680620006ba57607f821691505b60208210811415620006dc57634e487b7160e01b600052602260045260246000fd5b50919050565b600082620006f457620006f46200070f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60805160601c60a05160601c612fbf62000797600039600081816104df01528181611ab201528181611bf101528181611c990152611cea01526000818161033001528181611aee015281816124520152818161251a01528181612556015281816125c801526125ef0152612fbf6000f3fe6080604052600436106102765760003560e01c80635342acb41161014f578063a2b81a46116100c1578063d59f385b1161007a578063d59f385b14610788578063dd467064146107a8578063dd62ed3e146107c8578063ea2f0b371461080e578063f2fde38b1461082e578063fc7522771461084e57600080fd5b8063a2b81a46146106de578063a457c2d7146106fe578063a69df4b51461071e578063a9059cbb14610733578063b6c5232414610753578063c49b9a801461076857600080fd5b8063787a08a611610113578063787a08a614610624578063809157c51461063a57806388f82020146106525780638da5cb5b1461068b5780638fcc250d146106a957806395d89b41146106c957600080fd5b80635342acb4146105805780635932ead1146105b95780636bc87c3a146105d957806370a08231146105ef578063715018a61461060f57600080fd5b80633685d419116101e85780634549b039116101ac5780634549b039146104ad57806349bd5a5e146104cd5780634a74bb02146105015780634f662566146105205780634fc3f41a1461054057806352390c021461056057600080fd5b80633685d4191461041757806339509351146104375780633b124fe7146104575780633bd5d1731461046d578063437823ec1461048d57600080fd5b806318160ddd1161023a57806318160ddd1461036a5780631da1db5e1461037f57806322976e0d1461039f57806323b872dd146103b55780632d838119146103d5578063313ce567146103f557600080fd5b806303d29d281461028257806306fdde03146102a4578063095ea7b3146102cf57806313114a9d146102ff5780631694505e1461031e57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612bcd565b61086e565b005b3480156102b057600080fd5b506102b96108cc565b6040516102c69190612d01565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004612c02565b61095e565b60405190151581526020016102c6565b34801561030b57600080fd5b506015545b6040519081526020016102c6565b34801561032a57600080fd5b506103527f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c6565b34801561037657600080fd5b50600854610310565b34801561038b57600080fd5b506102a261039a366004612c49565b610975565b3480156103ab57600080fd5b50610310601a5481565b3480156103c157600080fd5b506102ef6103d0366004612b8c565b610a00565b3480156103e157600080fd5b506103106103f0366004612c49565b610a69565b34801561040157600080fd5b5060065460405160ff90911681526020016102c6565b34801561042357600080fd5b506102a2610432366004612b19565b610aed565b34801561044357600080fd5b506102ef610452366004612c02565b610ca0565b34801561046357600080fd5b5061031060165481565b34801561047957600080fd5b506102a2610488366004612c49565b610cd6565b34801561049957600080fd5b506102a26104a8366004612b19565b610dc2565b3480156104b957600080fd5b506103106104c8366004612c62565b610e10565b3480156104d957600080fd5b506103527f000000000000000000000000000000000000000000000000000000000000000081565b34801561050d57600080fd5b506028546102ef90610100900460ff1681565b34801561052c57600080fd5b506102a261053b366004612c85565b610e9f565b34801561054c57600080fd5b506102a261055b366004612c49565b610f7b565b34801561056c57600080fd5b506102a261057b366004612b19565b610faa565b34801561058c57600080fd5b506102ef61059b366004612b19565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156105c557600080fd5b506102a26105d4366004612c2e565b611175565b3480156105e557600080fd5b5061031060185481565b3480156105fb57600080fd5b5061031061060a366004612b19565b6111b2565b34801561061b57600080fd5b506102a2611211565b34801561063057600080fd5b5061031060135481565b34801561064657600080fd5b5060125460ff166102ef565b34801561065e57600080fd5b506102ef61066d366004612b19565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561069757600080fd5b506000546001600160a01b0316610352565b3480156106b557600080fd5b506102a26106c4366004612c85565b611273565b3480156106d557600080fd5b506102b96112c0565b3480156106ea57600080fd5b506102a26106f9366004612ca7565b6112cf565b34801561070a57600080fd5b506102ef610719366004612c02565b611307565b34801561072a57600080fd5b506102a2611356565b34801561073f57600080fd5b506102ef61074e366004612c02565b61145c565b34801561075f57600080fd5b50600254610310565b34801561077457600080fd5b506102a2610783366004612c2e565b611469565b34801561079457600080fd5b506102a26107a3366004612ca7565b6114e7565b3480156107b457600080fd5b506102a26107c3366004612c49565b61151f565b3480156107d457600080fd5b506103106107e3366004612b53565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561081a57600080fd5b506102a2610829366004612b19565b6115a4565b34801561083a57600080fd5b506102a2610849366004612b19565b6115ef565b34801561085a57600080fd5b506102a2610869366004612ca7565b6116c7565b6000546001600160a01b031633146108a15760405162461bcd60e51b815260040161089890612d56565b60405180910390fd5b5060016001600160a01b0382166000908152601060205260409020805460ff191660011790555b5050565b6060600480546108db90612e6c565b80601f016020809104026020016040519081016040528092919081815260200182805461090790612e6c565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096b3384846116ff565b5060015b92915050565b6000546001600160a01b0316331461099f5760405162461bcd60e51b815260040161089890612d56565b60648111156109ad57600080fd5b60095447906001600160a01b03166108fc6109d360646109cd8587611823565b906118a2565b6040518115909202916000818181858888f193505050501580156109fb573d6000803e3d6000fd5b505050565b6000610a0d8484846118e4565b610a5f8433610a5a85604051806060016040528060288152602001612f1d602891396001600160a01b038a166000908152600d602090815260408083203384529091529020549190611d60565b6116ff565b5060019392505050565b6000601454821115610ad05760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610898565b6000610ada611d9a565b9050610ae683826118a2565b9392505050565b6000546001600160a01b03163314610b175760405162461bcd60e51b815260040161089890612d56565b6001600160a01b0381166000908152600f602052604090205460ff16610b7f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b60005b6011548110156108c857816001600160a01b031660118281548110610ba957610ba9612eee565b6000918252602090912001546001600160a01b03161415610c8e5760118054610bd490600190612e55565b81548110610be457610be4612eee565b600091825260209091200154601180546001600160a01b039092169183908110610c1057610c10612eee565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055600f90925220805460ff191690556011805480610c6857610c68612ed8565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c9881612ea7565b915050610b82565b336000818152600d602090815260408083206001600160a01b0387168452909152812054909161096b918590610a5a9086611dbd565b336000818152600f602052604090205460ff1615610d4b5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610898565b6000610d5683611e1c565b5050506001600160a01b0386166000908152600a6020526040902054939450610d8493925084915050611e77565b6001600160a01b0383166000908152600a6020526040902055601454610daa9082611e77565b601455601554610dba9084611dbd565b601555505050565b6000546001600160a01b03163314610dec5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b6000600854831115610e645760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610898565b81610e84576000610e7484611e1c565b5094965061096f95505050505050565b6000610e8f84611e1c565b5093965061096f95505050505050565b6000546001600160a01b03163314610ec95760405162461bcd60e51b815260040161089890612d56565b60018210158015610edc57506103e88111155b610ee557600080fd5b6000610f00826109cd8560085461182390919063ffffffff16565b90506103e8600854610f129190612e14565b811015610f745760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b6064820152608401610898565b6027555050565b6000546001600160a01b03163314610fa55760405162461bcd60e51b815260040161089890612d56565b601355565b6000546001600160a01b03163314610fd45760405162461bcd60e51b815260040161089890612d56565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561104c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b6064820152608401610898565b6001600160a01b0381166000908152600f602052604090205460ff16156110b55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b6001600160a01b0381166000908152600a60205260409020541561110f576001600160a01b0381166000908152600a60205260409020546110f590610a69565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152600f60205260408120805460ff191660019081179091556011805491820181559091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b0319169091179055565b6000546001600160a01b0316331461119f5760405162461bcd60e51b815260040161089890612d56565b6012805460ff1916911515919091179055565b6001600160a01b0381166000908152600f602052604081205460ff16156111ef57506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461096f90610a69565b6000546001600160a01b0316331461123b5760405162461bcd60e51b815260040161089890612d56565b600080546040516001600160a01b0390911690600080516020612f45833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260040161089890612d56565b60006112b8826109cd8560085461182390919063ffffffff16565b602955505050565b6060600580546108db90612e6c565b6000546001600160a01b031633146112f95760405162461bcd60e51b815260040161089890612d56565b601f92909255601c55602455565b600061096b3384610a5a85604051806060016040528060258152602001612f6560259139336000908152600d602090815260408083206001600160a01b038d1684529091529020549190611d60565b6001546001600160a01b031633146113bc5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610898565b600254421161140d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610898565b600154600080546040516001600160a01b039384169390911691600080516020612f4583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061096b3384846118e4565b6000546001600160a01b031633146114935760405162461bcd60e51b815260040161089890612d56565b602880548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114dc90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115115760405162461bcd60e51b815260040161089890612d56565b602192909255601e55602255565b6000546001600160a01b031633146115495760405162461bcd60e51b815260040161089890612d56565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115788142612dfc565b600255600080546040516001600160a01b0390911690600080516020612f45833981519152908390a350565b6000546001600160a01b031633146115ce5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6000546001600160a01b031633146116195760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03811661167e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b600080546040516001600160a01b0380851693921691600080516020612f4583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116f15760405162461bcd60e51b815260040161089890612d56565b602092909255601d55602355565b6001600160a01b0383166117615760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b0382166117c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b038381166000818152600d602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826118325750600061096f565b600061183e8385612e36565b90508261184b8583612e14565b14610ae65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610898565b6000610ae683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611eb9565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610898565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610898565b60008111611a0c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610898565b6001600160a01b03831660009081526010602052604090205460ff1615611a5e5760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526010602052604090205460ff1615611ab05760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611b2357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611b4857506001600160a01b0382166000908152600e602052604090205460ff16155b8015611b56575060125460ff165b15611bb657602754811115611b6a57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b8e57600080fd5b601354611b9c904290611dbd565b6001600160a01b0383166000908152600c60205260409020555b6000611bc1306111b2565b90506029548110611bd157506029545b60295481108015908190611be8575060285460ff16155b8015611c2657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611c395750602854610100900460ff165b15611c4c576029549150611c4c82611ee7565b6001600160a01b0385166000908152600e602052604090205460019060ff1680611c8e57506001600160a01b0385166000908152600e602052604090205460ff165b15611c97575060005b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161415611ce857601f54601855602054601a55602154601655611d4c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03161415611d3957601c54601855601d54601a55601e54601655611d4c565b602454601855602354601a556022546016555b611d588686868461203f565b505050505050565b60008184841115611d845760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e55565b95945050505050565b6000806000611da76121c2565b9092509050611db682826118a2565b9250505090565b600080611dca8385612dfc565b905083811015610ae65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610898565b6000806000806000806000806000806000611e368c612344565b93509350935093506000806000611e578f878787611e52611d9a565b612399565b919f509d509b509599509397509195509350505050919395979092949650565b6000610ae683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d60565b60008183611eda5760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e14565b6028805460ff191660011790556000611f018260026118a2565b90506000611f0f8383611e77565b90506000611f1e8260026118a2565b90506000611f2c8383611e77565b9050476000611f3b8487611dbd565b9050611f46816123fb565b6000611f524784611e77565b90506000611f618260036118a2565b9050611f6d85826125c2565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611fba8383611e77565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611ff5573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506028805460ff191690555050505050505050565b8061204c5761204c6126d7565b6001600160a01b0384166000908152600f602052604090205460ff16801561208d57506001600160a01b0383166000908152600f602052604090205460ff16155b156120a25761209d84848461271c565b6121a0565b6001600160a01b0384166000908152600f602052604090205460ff161580156120e357506001600160a01b0383166000908152600f602052604090205460ff165b156120f35761209d848484612862565b6001600160a01b0384166000908152600f602052604090205460ff1615801561213557506001600160a01b0383166000908152600f602052604090205460ff16155b156121455761209d848484612921565b6001600160a01b0384166000908152600f602052604090205460ff16801561218557506001600160a01b0383166000908152600f602052604090205460ff165b156121955761209d84848461297b565b6121a0848484612921565b806121bc576121bc601754601655601b54601a55601954601855565b50505050565b6014546008546000918291825b6011548110156123145782600a6000601184815481106121f1576121f1612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061225c575081600b60006011848154811061223557612235612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561227257601454600854945094505050509091565b6122b8600a60006011848154811061228c5761228c612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e77565b9250612300600b6000601184815481106122d4576122d4612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e77565b91508061230c81612ea7565b9150506121cf565b50600854601454612324916118a2565b82101561233b576014546008549350935050509091565b90939092509050565b600080600080600061235586612a04565b9050600061236287612a20565b9050600061236f88612a3c565b905060006123898361238384818d89611e77565b90611e77565b9993985091965094509092505050565b60008080806123a88986611823565b905060006123b68987611823565b905060006123c48888611823565b905060006123d28a89611823565b905060006123e68361238384818989611e77565b949d949c50929a509298505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061243057612430612eee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124a957600080fd5b505afa1580156124bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e19190612b36565b816001815181106124f4576124f4612eee565b60200260200101906001600160a01b031690816001600160a01b03168152505061253f307f0000000000000000000000000000000000000000000000000000000000000000846116ff565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612594908590600090869030904290600401612d8b565b600060405180830381600087803b1580156125ae57600080fd5b505af1158015611d58573d6000803e3d6000fd5b6125ed307f0000000000000000000000000000000000000000000000000000000000000000846116ff565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806126346000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561269757600080fd5b505af11580156126ab573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126d09190612cd3565b5050505050565b6016541580156126e75750601854155b80156126f35750601a54155b156126fa57565b60168054601755601a8054601b55601880546019556000928390559082905555565b600080600080600080600061273088611e1c565b965096509650965096509650965061277688600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127a59088611e77565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127d49087611dbd565b6001600160a01b038a166000908152600a60205260409020556127f682612a58565b6127ff81612a58565b6128098584612ae0565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161284e91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061287688611e1c565b96509650965096509650965096506128bc87600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b90915220546128f29085611dbd565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127d49087611dbd565b600080600080600080600061293588611e1c565b96509650965096509650965096506127a587600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b600080600080600080600061298f88611e1c565b96509650965096509650965096506129d588600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128bc9088611e77565b600061096f60646109cd6016548561182390919063ffffffff16565b600061096f60646109cd601a548561182390919063ffffffff16565b600061096f60646109cd6018548561182390919063ffffffff16565b6000612a62611d9a565b90506000612a708383611823565b306000908152600a6020526040902054909150612a8d9082611dbd565b306000908152600a6020908152604080832093909355600f9052205460ff16156109fb57306000908152600b6020526040902054612acb9084611dbd565b306000908152600b6020526040902055505050565b601454612aed9083611e77565b601455601554612afd9082611dbd565b6015555050565b80358015158114612b1457600080fd5b919050565b600060208284031215612b2b57600080fd5b8135610ae681612f04565b600060208284031215612b4857600080fd5b8151610ae681612f04565b60008060408385031215612b6657600080fd5b8235612b7181612f04565b91506020830135612b8181612f04565b809150509250929050565b600080600060608486031215612ba157600080fd5b8335612bac81612f04565b92506020840135612bbc81612f04565b929592945050506040919091013590565b60008060408385031215612be057600080fd5b8235612beb81612f04565b9150612bf960208401612b04565b90509250929050565b60008060408385031215612c1557600080fd5b8235612c2081612f04565b946020939093013593505050565b600060208284031215612c4057600080fd5b610ae682612b04565b600060208284031215612c5b57600080fd5b5035919050565b60008060408385031215612c7557600080fd5b82359150612bf960208401612b04565b60008060408385031215612c9857600080fd5b50508035926020909101359150565b600080600060608486031215612cbc57600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612ce857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612d2e57858101830151858201604001528201612d12565b81811115612d40576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ddb5784516001600160a01b031683529383019391830191600101612db6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612e0f57612e0f612ec2565b500190565b600082612e3157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612e5057612e50612ec2565b500290565b600082821015612e6757612e67612ec2565b500390565b600181811c90821680612e8057607f821691505b60208210811415612ea157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ebb57612ebb612ec2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612f1957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122054a5ad1269411355ce09467135631c1761fb9e15bff98c0ac29d61c1d840e98a64736f6c63430008070033000000000000000000000000841213baab00ec44cba80064d493fd77ecdcb1df

Deployed Bytecode

0x6080604052600436106102765760003560e01c80635342acb41161014f578063a2b81a46116100c1578063d59f385b1161007a578063d59f385b14610788578063dd467064146107a8578063dd62ed3e146107c8578063ea2f0b371461080e578063f2fde38b1461082e578063fc7522771461084e57600080fd5b8063a2b81a46146106de578063a457c2d7146106fe578063a69df4b51461071e578063a9059cbb14610733578063b6c5232414610753578063c49b9a801461076857600080fd5b8063787a08a611610113578063787a08a614610624578063809157c51461063a57806388f82020146106525780638da5cb5b1461068b5780638fcc250d146106a957806395d89b41146106c957600080fd5b80635342acb4146105805780635932ead1146105b95780636bc87c3a146105d957806370a08231146105ef578063715018a61461060f57600080fd5b80633685d419116101e85780634549b039116101ac5780634549b039146104ad57806349bd5a5e146104cd5780634a74bb02146105015780634f662566146105205780634fc3f41a1461054057806352390c021461056057600080fd5b80633685d4191461041757806339509351146104375780633b124fe7146104575780633bd5d1731461046d578063437823ec1461048d57600080fd5b806318160ddd1161023a57806318160ddd1461036a5780631da1db5e1461037f57806322976e0d1461039f57806323b872dd146103b55780632d838119146103d5578063313ce567146103f557600080fd5b806303d29d281461028257806306fdde03146102a4578063095ea7b3146102cf57806313114a9d146102ff5780631694505e1461031e57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612bcd565b61086e565b005b3480156102b057600080fd5b506102b96108cc565b6040516102c69190612d01565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004612c02565b61095e565b60405190151581526020016102c6565b34801561030b57600080fd5b506015545b6040519081526020016102c6565b34801561032a57600080fd5b506103527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c6565b34801561037657600080fd5b50600854610310565b34801561038b57600080fd5b506102a261039a366004612c49565b610975565b3480156103ab57600080fd5b50610310601a5481565b3480156103c157600080fd5b506102ef6103d0366004612b8c565b610a00565b3480156103e157600080fd5b506103106103f0366004612c49565b610a69565b34801561040157600080fd5b5060065460405160ff90911681526020016102c6565b34801561042357600080fd5b506102a2610432366004612b19565b610aed565b34801561044357600080fd5b506102ef610452366004612c02565b610ca0565b34801561046357600080fd5b5061031060165481565b34801561047957600080fd5b506102a2610488366004612c49565b610cd6565b34801561049957600080fd5b506102a26104a8366004612b19565b610dc2565b3480156104b957600080fd5b506103106104c8366004612c62565b610e10565b3480156104d957600080fd5b506103527f00000000000000000000000045e2d2a1eff7efed0f26165aafbf2de2c903d85581565b34801561050d57600080fd5b506028546102ef90610100900460ff1681565b34801561052c57600080fd5b506102a261053b366004612c85565b610e9f565b34801561054c57600080fd5b506102a261055b366004612c49565b610f7b565b34801561056c57600080fd5b506102a261057b366004612b19565b610faa565b34801561058c57600080fd5b506102ef61059b366004612b19565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156105c557600080fd5b506102a26105d4366004612c2e565b611175565b3480156105e557600080fd5b5061031060185481565b3480156105fb57600080fd5b5061031061060a366004612b19565b6111b2565b34801561061b57600080fd5b506102a2611211565b34801561063057600080fd5b5061031060135481565b34801561064657600080fd5b5060125460ff166102ef565b34801561065e57600080fd5b506102ef61066d366004612b19565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561069757600080fd5b506000546001600160a01b0316610352565b3480156106b557600080fd5b506102a26106c4366004612c85565b611273565b3480156106d557600080fd5b506102b96112c0565b3480156106ea57600080fd5b506102a26106f9366004612ca7565b6112cf565b34801561070a57600080fd5b506102ef610719366004612c02565b611307565b34801561072a57600080fd5b506102a2611356565b34801561073f57600080fd5b506102ef61074e366004612c02565b61145c565b34801561075f57600080fd5b50600254610310565b34801561077457600080fd5b506102a2610783366004612c2e565b611469565b34801561079457600080fd5b506102a26107a3366004612ca7565b6114e7565b3480156107b457600080fd5b506102a26107c3366004612c49565b61151f565b3480156107d457600080fd5b506103106107e3366004612b53565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561081a57600080fd5b506102a2610829366004612b19565b6115a4565b34801561083a57600080fd5b506102a2610849366004612b19565b6115ef565b34801561085a57600080fd5b506102a2610869366004612ca7565b6116c7565b6000546001600160a01b031633146108a15760405162461bcd60e51b815260040161089890612d56565b60405180910390fd5b5060016001600160a01b0382166000908152601060205260409020805460ff191660011790555b5050565b6060600480546108db90612e6c565b80601f016020809104026020016040519081016040528092919081815260200182805461090790612e6c565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096b3384846116ff565b5060015b92915050565b6000546001600160a01b0316331461099f5760405162461bcd60e51b815260040161089890612d56565b60648111156109ad57600080fd5b60095447906001600160a01b03166108fc6109d360646109cd8587611823565b906118a2565b6040518115909202916000818181858888f193505050501580156109fb573d6000803e3d6000fd5b505050565b6000610a0d8484846118e4565b610a5f8433610a5a85604051806060016040528060288152602001612f1d602891396001600160a01b038a166000908152600d602090815260408083203384529091529020549190611d60565b6116ff565b5060019392505050565b6000601454821115610ad05760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610898565b6000610ada611d9a565b9050610ae683826118a2565b9392505050565b6000546001600160a01b03163314610b175760405162461bcd60e51b815260040161089890612d56565b6001600160a01b0381166000908152600f602052604090205460ff16610b7f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b60005b6011548110156108c857816001600160a01b031660118281548110610ba957610ba9612eee565b6000918252602090912001546001600160a01b03161415610c8e5760118054610bd490600190612e55565b81548110610be457610be4612eee565b600091825260209091200154601180546001600160a01b039092169183908110610c1057610c10612eee565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055600f90925220805460ff191690556011805480610c6857610c68612ed8565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c9881612ea7565b915050610b82565b336000818152600d602090815260408083206001600160a01b0387168452909152812054909161096b918590610a5a9086611dbd565b336000818152600f602052604090205460ff1615610d4b5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610898565b6000610d5683611e1c565b5050506001600160a01b0386166000908152600a6020526040902054939450610d8493925084915050611e77565b6001600160a01b0383166000908152600a6020526040902055601454610daa9082611e77565b601455601554610dba9084611dbd565b601555505050565b6000546001600160a01b03163314610dec5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b6000600854831115610e645760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610898565b81610e84576000610e7484611e1c565b5094965061096f95505050505050565b6000610e8f84611e1c565b5093965061096f95505050505050565b6000546001600160a01b03163314610ec95760405162461bcd60e51b815260040161089890612d56565b60018210158015610edc57506103e88111155b610ee557600080fd5b6000610f00826109cd8560085461182390919063ffffffff16565b90506103e8600854610f129190612e14565b811015610f745760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b6064820152608401610898565b6027555050565b6000546001600160a01b03163314610fa55760405162461bcd60e51b815260040161089890612d56565b601355565b6000546001600160a01b03163314610fd45760405162461bcd60e51b815260040161089890612d56565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561104c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b6064820152608401610898565b6001600160a01b0381166000908152600f602052604090205460ff16156110b55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610898565b6001600160a01b0381166000908152600a60205260409020541561110f576001600160a01b0381166000908152600a60205260409020546110f590610a69565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152600f60205260408120805460ff191660019081179091556011805491820181559091527f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c680180546001600160a01b0319169091179055565b6000546001600160a01b0316331461119f5760405162461bcd60e51b815260040161089890612d56565b6012805460ff1916911515919091179055565b6001600160a01b0381166000908152600f602052604081205460ff16156111ef57506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461096f90610a69565b6000546001600160a01b0316331461123b5760405162461bcd60e51b815260040161089890612d56565b600080546040516001600160a01b0390911690600080516020612f45833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461129d5760405162461bcd60e51b815260040161089890612d56565b60006112b8826109cd8560085461182390919063ffffffff16565b602955505050565b6060600580546108db90612e6c565b6000546001600160a01b031633146112f95760405162461bcd60e51b815260040161089890612d56565b601f92909255601c55602455565b600061096b3384610a5a85604051806060016040528060258152602001612f6560259139336000908152600d602090815260408083206001600160a01b038d1684529091529020549190611d60565b6001546001600160a01b031633146113bc5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610898565b600254421161140d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610898565b600154600080546040516001600160a01b039384169390911691600080516020612f4583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061096b3384846118e4565b6000546001600160a01b031633146114935760405162461bcd60e51b815260040161089890612d56565b602880548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906114dc90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146115115760405162461bcd60e51b815260040161089890612d56565b602192909255601e55602255565b6000546001600160a01b031633146115495760405162461bcd60e51b815260040161089890612d56565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115788142612dfc565b600255600080546040516001600160a01b0390911690600080516020612f45833981519152908390a350565b6000546001600160a01b031633146115ce5760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6000546001600160a01b031633146116195760405162461bcd60e51b815260040161089890612d56565b6001600160a01b03811661167e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610898565b600080546040516001600160a01b0380851693921691600080516020612f4583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116f15760405162461bcd60e51b815260040161089890612d56565b602092909255601d55602355565b6001600160a01b0383166117615760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610898565b6001600160a01b0382166117c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610898565b6001600160a01b038381166000818152600d602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826118325750600061096f565b600061183e8385612e36565b90508261184b8583612e14565b14610ae65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610898565b6000610ae683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611eb9565b6001600160a01b0383166119485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610898565b6001600160a01b0382166119aa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610898565b60008111611a0c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610898565b6001600160a01b03831660009081526010602052604090205460ff1615611a5e5760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526010602052604090205460ff1615611ab05760405162461bcd60e51b8152600401610898906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000045e2d2a1eff7efed0f26165aafbf2de2c903d8556001600160a01b0316836001600160a01b0316148015611b2357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611b4857506001600160a01b0382166000908152600e602052604090205460ff16155b8015611b56575060125460ff165b15611bb657602754811115611b6a57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b8e57600080fd5b601354611b9c904290611dbd565b6001600160a01b0383166000908152600c60205260409020555b6000611bc1306111b2565b90506029548110611bd157506029545b60295481108015908190611be8575060285460ff16155b8015611c2657507f00000000000000000000000045e2d2a1eff7efed0f26165aafbf2de2c903d8556001600160a01b0316856001600160a01b031614155b8015611c395750602854610100900460ff165b15611c4c576029549150611c4c82611ee7565b6001600160a01b0385166000908152600e602052604090205460019060ff1680611c8e57506001600160a01b0385166000908152600e602052604090205460ff165b15611c97575060005b7f00000000000000000000000045e2d2a1eff7efed0f26165aafbf2de2c903d8556001600160a01b0316866001600160a01b03161415611ce857601f54601855602054601a55602154601655611d4c565b7f00000000000000000000000045e2d2a1eff7efed0f26165aafbf2de2c903d8556001600160a01b0316856001600160a01b03161415611d3957601c54601855601d54601a55601e54601655611d4c565b602454601855602354601a556022546016555b611d588686868461203f565b505050505050565b60008184841115611d845760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e55565b95945050505050565b6000806000611da76121c2565b9092509050611db682826118a2565b9250505090565b600080611dca8385612dfc565b905083811015610ae65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610898565b6000806000806000806000806000806000611e368c612344565b93509350935093506000806000611e578f878787611e52611d9a565b612399565b919f509d509b509599509397509195509350505050919395979092949650565b6000610ae683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d60565b60008183611eda5760405162461bcd60e51b81526004016108989190612d01565b506000611d918486612e14565b6028805460ff191660011790556000611f018260026118a2565b90506000611f0f8383611e77565b90506000611f1e8260026118a2565b90506000611f2c8383611e77565b9050476000611f3b8487611dbd565b9050611f46816123fb565b6000611f524784611e77565b90506000611f618260036118a2565b9050611f6d85826125c2565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611fba8383611e77565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611ff5573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506028805460ff191690555050505050505050565b8061204c5761204c6126d7565b6001600160a01b0384166000908152600f602052604090205460ff16801561208d57506001600160a01b0383166000908152600f602052604090205460ff16155b156120a25761209d84848461271c565b6121a0565b6001600160a01b0384166000908152600f602052604090205460ff161580156120e357506001600160a01b0383166000908152600f602052604090205460ff165b156120f35761209d848484612862565b6001600160a01b0384166000908152600f602052604090205460ff1615801561213557506001600160a01b0383166000908152600f602052604090205460ff16155b156121455761209d848484612921565b6001600160a01b0384166000908152600f602052604090205460ff16801561218557506001600160a01b0383166000908152600f602052604090205460ff165b156121955761209d84848461297b565b6121a0848484612921565b806121bc576121bc601754601655601b54601a55601954601855565b50505050565b6014546008546000918291825b6011548110156123145782600a6000601184815481106121f1576121f1612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061225c575081600b60006011848154811061223557612235612eee565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561227257601454600854945094505050509091565b6122b8600a60006011848154811061228c5761228c612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e77565b9250612300600b6000601184815481106122d4576122d4612eee565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e77565b91508061230c81612ea7565b9150506121cf565b50600854601454612324916118a2565b82101561233b576014546008549350935050509091565b90939092509050565b600080600080600061235586612a04565b9050600061236287612a20565b9050600061236f88612a3c565b905060006123898361238384818d89611e77565b90611e77565b9993985091965094509092505050565b60008080806123a88986611823565b905060006123b68987611823565b905060006123c48888611823565b905060006123d28a89611823565b905060006123e68361238384818989611e77565b949d949c50929a509298505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061243057612430612eee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156124a957600080fd5b505afa1580156124bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e19190612b36565b816001815181106124f4576124f4612eee565b60200260200101906001600160a01b031690816001600160a01b03168152505061253f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ff565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612594908590600090869030904290600401612d8b565b600060405180830381600087803b1580156125ae57600080fd5b505af1158015611d58573d6000803e3d6000fd5b6125ed307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116ff565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806126346000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561269757600080fd5b505af11580156126ab573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126d09190612cd3565b5050505050565b6016541580156126e75750601854155b80156126f35750601a54155b156126fa57565b60168054601755601a8054601b55601880546019556000928390559082905555565b600080600080600080600061273088611e1c565b965096509650965096509650965061277688600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127a59088611e77565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127d49087611dbd565b6001600160a01b038a166000908152600a60205260409020556127f682612a58565b6127ff81612a58565b6128098584612ae0565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161284e91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061287688611e1c565b96509650965096509650965096506128bc87600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b90915220546128f29085611dbd565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127d49087611dbd565b600080600080600080600061293588611e1c565b96509650965096509650965096506127a587600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b600080600080600080600061298f88611e1c565b96509650965096509650965096506129d588600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e7790919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128bc9088611e77565b600061096f60646109cd6016548561182390919063ffffffff16565b600061096f60646109cd601a548561182390919063ffffffff16565b600061096f60646109cd6018548561182390919063ffffffff16565b6000612a62611d9a565b90506000612a708383611823565b306000908152600a6020526040902054909150612a8d9082611dbd565b306000908152600a6020908152604080832093909355600f9052205460ff16156109fb57306000908152600b6020526040902054612acb9084611dbd565b306000908152600b6020526040902055505050565b601454612aed9083611e77565b601455601554612afd9082611dbd565b6015555050565b80358015158114612b1457600080fd5b919050565b600060208284031215612b2b57600080fd5b8135610ae681612f04565b600060208284031215612b4857600080fd5b8151610ae681612f04565b60008060408385031215612b6657600080fd5b8235612b7181612f04565b91506020830135612b8181612f04565b809150509250929050565b600080600060608486031215612ba157600080fd5b8335612bac81612f04565b92506020840135612bbc81612f04565b929592945050506040919091013590565b60008060408385031215612be057600080fd5b8235612beb81612f04565b9150612bf960208401612b04565b90509250929050565b60008060408385031215612c1557600080fd5b8235612c2081612f04565b946020939093013593505050565b600060208284031215612c4057600080fd5b610ae682612b04565b600060208284031215612c5b57600080fd5b5035919050565b60008060408385031215612c7557600080fd5b82359150612bf960208401612b04565b60008060408385031215612c9857600080fd5b50508035926020909101359150565b600080600060608486031215612cbc57600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612ce857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612d2e57858101830151858201604001528201612d12565b81811115612d40576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612ddb5784516001600160a01b031683529383019391830191600101612db6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612e0f57612e0f612ec2565b500190565b600082612e3157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612e5057612e50612ec2565b500290565b600082821015612e6757612e67612ec2565b500390565b600181811c90821680612e8057607f821691505b60208210811415612ea157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ebb57612ebb612ec2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612f1957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122054a5ad1269411355ce09467135631c1761fb9e15bff98c0ac29d61c1d840e98a64736f6c63430008070033

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

000000000000000000000000841213baab00ec44cba80064d493fd77ecdcb1df

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000841213baab00ec44cba80064d493fd77ecdcb1df


Deployed Bytecode Sourcemap

25571:23343:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31855:294;;;;;;;;;;-1:-1:-1;31855:294:0;;;;;:::i;:::-;;:::i;:::-;;28981:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29626:161;;;;;;;;;;-1:-1:-1;29626:161:0;;;;;:::i;:::-;;:::i;:::-;;;4674:14:1;;4667:22;4649:41;;4637:2;4622:18;29626:161:0;4509:187:1;34811:87:0;;;;;;;;;;-1:-1:-1;34880:10:0;;34811:87;;;12688:25:1;;;12676:2;12661:18;34811:87:0;12542:177:1;27434:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3853:32:1;;;3835:51;;3823:2;3808:18;27434:51:0;3689:203:1;29204:79:0;;;;;;;;;;-1:-1:-1;29274:7:0;;29204:79;;41016:262;;;;;;;;;;-1:-1:-1;41016:262:0;;;;;:::i;:::-;;:::i;26880:32::-;;;;;;;;;;;;;;;;42408:313;;;;;;;;;;-1:-1:-1;42408:313:0;;;;;:::i;:::-;;:::i;32993:253::-;;;;;;;;;;-1:-1:-1;32993:253:0;;;;;:::i;:::-;;:::i;29131:67::-;;;;;;;;;;-1:-1:-1;29187:9:0;;29131:67;;29187:9;;;;14175:36:1;;14163:2;14148:18;29131:67:0;14033:184:1;33948:479:0;;;;;;;;;;-1:-1:-1;33948:479:0;;;;;:::i;:::-;;:::i;31348:218::-;;;;;;;;;;-1:-1:-1;31348:218:0;;;;;:::i;:::-;;:::i;26700:26::-;;;;;;;;;;;;;;;;32161:378;;;;;;;;;;-1:-1:-1;32161:378:0;;;;;:::i;:::-;;:::i;34435:111::-;;;;;;;;;;-1:-1:-1;34435:111:0;;;;;:::i;:::-;;:::i;32547:438::-;;;;;;;;;;-1:-1:-1;32547:438:0;;;;;:::i;:::-;;:::i;27492:38::-;;;;;;;;;;;;;;;27565:40;;;;;;;;;;-1:-1:-1;27565:40:0;;;;;;;;;;;30990:350;;;;;;;;;;-1:-1:-1;30990:350:0;;;;;:::i;:::-;;:::i;30878:100::-;;;;;;;;;;-1:-1:-1;30878:100:0;;;;;:::i;:::-;;:::i;33382:558::-;;;;;;;;;;-1:-1:-1;33382:558:0;;;;;:::i;:::-;;:::i;34676:123::-;;;;;;;;;;-1:-1:-1;34676:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;34764:27:0;34740:4;34764:27;;;:18;:27;;;;;;;;;34676:123;48808:103;;;;;;;;;;-1:-1:-1;48808:103:0;;;;;:::i;:::-;;:::i;26781:32::-;;;;;;;;;;;;;;;;29422:198;;;;;;;;;;-1:-1:-1;29422:198:0;;;;;:::i;:::-;;:::i;16184:148::-;;;;;;;;;;;;;:::i;26513:36::-;;;;;;;;;;;;;;;;48702:94;;;;;;;;;;-1:-1:-1;48773:15:0;;;;48702:94;;33254:120;;;;;;;;;;-1:-1:-1;33254:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;33346:20:0;33322:4;33346:20;;;:11;:20;;;;;;;;;33254:120;15548:79;;;;;;;;;;-1:-1:-1;15586:7:0;15613:6;-1:-1:-1;;;;;15613:6:0;15548:79;;29795:223;;;;;;;;;;-1:-1:-1;29795:223:0;;;;;:::i;:::-;;:::i;29054:71::-;;;;;;;;;;;;;:::i;30034:286::-;;;;;;;;;;-1:-1:-1;30034:286:0;;;;;:::i;:::-;;:::i;31574:269::-;;;;;;;;;;-1:-1:-1;31574:269:0;;;;;:::i;:::-;;:::i;17206:305::-;;;;;;;;;;;;;:::i;45059:167::-;;;;;;;;;;-1:-1:-1;45059:167:0;;;;;:::i;:::-;;:::i;16739:89::-;;;;;;;;;;-1:-1:-1;16811:9:0;;16739:89;;34906:171;;;;;;;;;;-1:-1:-1;34906:171:0;;;;;:::i;:::-;;:::i;30641:229::-;;;;;;;;;;-1:-1:-1;30641:229:0;;;;;:::i;:::-;;:::i;16904:226::-;;;;;;;;;;-1:-1:-1;16904:226:0;;;;;:::i;:::-;;:::i;29289:127::-;;;;;;;;;;-1:-1:-1;29289:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29387:18:0;;;29370:7;29387:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29289:127;34554:110;;;;;;;;;;-1:-1:-1;34554:110:0;;;;;:::i;:::-;;:::i;16487:244::-;;;;;;;;;;-1:-1:-1;16487:244:0;;;;;:::i;:::-;;:::i;30336:289::-;;;;;;;;;;-1:-1:-1;30336:289:0;;;;;:::i;:::-;;:::i;31855:294::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31970:4:0::1;-1:-1:-1::0;;;;;31995:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;31995:30:0::1;32021:4;31995:30;::::0;;32048:94:::1;31855:294:::0;;:::o;28981:67::-;29018:13;29041:5;29034:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28981:67;:::o;29626:161::-;29701:4;29718:39;8051:10;29741:7;29750:6;29718:8;:39::i;:::-;-1:-1:-1;29775:4:0;29626:161;;;;;:::o;41016:262::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;41127:3:::1;41107:16;:23;;41099:32;;;::::0;::::1;;41202:16;::::0;41162:21:::1;::::0;-1:-1:-1;;;;;41202:16:0::1;41194:76;41229:40;41265:3;41229:31;41162:21:::0;41243:16;41229:13:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;41194:76;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41088:190;41016:262:::0;:::o;42408:313::-;42506:4;42523:36;42533:6;42541:9;42552:6;42523:9;:36::i;:::-;42570:121;42579:6;8051:10;42601:89;42639:6;42601:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42601:19:0;;;;;;:11;:19;;;;;;;;8051:10;42601:33;;;;;;;;;;:37;:89::i;:::-;42570:8;:121::i;:::-;-1:-1:-1;42709:4:0;42408:313;;;;;:::o;32993:253::-;33059:7;33098;;33087;:18;;33079:73;;;;-1:-1:-1;;;33079:73:0;;6144:2:1;33079:73:0;;;6126:21:1;6183:2;6163:18;;;6156:30;6222:34;6202:18;;;6195:62;-1:-1:-1;;;6273:18:1;;;6266:40;6323:19;;33079:73:0;5942:406:1;33079:73:0;33163:19;33186:10;:8;:10::i;:::-;33163:33;-1:-1:-1;33214:24:0;:7;33163:33;33214:11;:24::i;:::-;33207:31;32993:253;-1:-1:-1;;;32993:253:0:o;33948:479::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34030:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34022:60;;;::::0;-1:-1:-1;;;34022:60:0;;8132:2:1;34022:60:0::1;::::0;::::1;8114:21:1::0;8171:2;8151:18;;;8144:30;8210:29;8190:18;;;8183:57;8257:18;;34022:60:0::1;7930:351:1::0;34022:60:0::1;34098:9;34093:327;34117:9;:16:::0;34113:20;::::1;34093:327;;;34175:7;-1:-1:-1::0;;;;;34159:23:0::1;:9;34169:1;34159:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34159:12:0::1;:23;34155:254;;;34218:9;34228:16:::0;;:20:::1;::::0;34247:1:::1;::::0;34228:20:::1;:::i;:::-;34218:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;34203:9:::1;:12:::0;;-1:-1:-1;;;;;34218:31:0;;::::1;::::0;34213:1;;34203:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34203:46:0::1;-1:-1:-1::0;;;;;34203:46:0;;::::1;;::::0;;34268:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34307:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34307:28:0::1;::::0;;34354:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34354:15:0;;;;;-1:-1:-1;;;;;;34354:15:0::1;::::0;;;;;31855:294;;:::o;34155:254::-:1;34135:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34093:327;;31348:218:::0;8051:10;31436:4;31485:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31485:34:0;;;;;;;;;;31436:4;;31453:83;;31476:7;;31485:50;;31524:10;31485:38;:50::i;32161:378::-;8051:10;32213:14;32262:19;;;:11;:19;;;;;;;;32261:20;32253:77;;;;-1:-1:-1;;;32253:77:0;;11927:2:1;32253:77:0;;;11909:21:1;11966:2;11946:18;;;11939:30;12005:34;11985:18;;;11978:62;-1:-1:-1;;;12056:18:1;;;12049:42;12108:19;;32253:77:0;11725:408:1;32253:77:0;32342:15;32367:19;32378:7;32367:10;:19::i;:::-;-1:-1:-1;;;;;;;;32415:15:0;;;;;;:7;:15;;;;;;32341:45;;-1:-1:-1;32415:28:0;;:15;-1:-1:-1;32341:45:0;;-1:-1:-1;;32415:19:0;:28::i;:::-;-1:-1:-1;;;;;32397:15:0;;;;;;:7;:15;;;;;:46;32464:7;;:20;;32476:7;32464:11;:20::i;:::-;32454:7;:30;32508:10;;:23;;32523:7;32508:14;:23::i;:::-;32495:10;:36;-1:-1:-1;;;32161:378:0:o;34435:111::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34504:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34504:34:0::1;34534:4;34504:34;::::0;;34435:111::o;32547:438::-;32637:7;32676;;32665;:18;;32657:62;;;;-1:-1:-1;;;32657:62:0;;8488:2:1;32657:62:0;;;8470:21:1;8527:2;8507:18;;;8500:30;8566:33;8546:18;;;8539:61;8617:18;;32657:62:0;8286:355:1;32657:62:0;32735:17;32730:248;;32770:15;32795:19;32806:7;32795:10;:19::i;:::-;-1:-1:-1;32769:45:0;;-1:-1:-1;32829:14:0;;-1:-1:-1;;;;;;32829:14:0;32730:248;32878:23;32910:19;32921:7;32910:10;:19::i;:::-;-1:-1:-1;32876:53:0;;-1:-1:-1;32944:22:0;;-1:-1:-1;;;;;;32944:22:0;30990:350;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;31096:1:::1;31085:7;:12;;:31;;;;;31112:4;31101:7;:15;;31085:31;31077:40;;;::::0;::::1;;31157:14;31174:33;31199:7;31174:20;31186:7;31174;;:11;;:20;;;;:::i;:33::-;31157:50;;31247:4;31237:7;;:14;;;;:::i;:::-;31226:6;:26;;31218:81;;;::::0;-1:-1:-1;;;31218:81:0;;7721:2:1;31218:81:0::1;::::0;::::1;7703:21:1::0;7760:2;7740:18;;;7733:30;7799:34;7779:18;;;7772:62;-1:-1:-1;;;7850:18:1;;;7843:40;7900:19;;31218:81:0::1;7519:406:1::0;31218:81:0::1;31310:13;:22:::0;-1:-1:-1;;30990:350:0:o;30878:100::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30950:8:::1;:20:::0;30878:100::o;33382:558::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;33475:42:::1;-1:-1:-1::0;;;;;33464:53:0;::::1;;;33456:100;;;::::0;-1:-1:-1;;;33456:100:0;;11524:2:1;33456:100:0::1;::::0;::::1;11506:21:1::0;11563:2;11543:18;;;11536:30;11602:34;11582:18;;;11575:62;-1:-1:-1;;;11653:18:1;;;11646:32;11695:19;;33456:100:0::1;11322:398:1::0;33456:100:0::1;-1:-1:-1::0;;;;;33690:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33689:21;33681:61;;;::::0;-1:-1:-1;;;33681:61:0;;8132:2:1;33681:61:0::1;::::0;::::1;8114:21:1::0;8171:2;8151:18;;;8144:30;8210:29;8190:18;;;8183:57;8257:18;;33681:61:0::1;7930:351:1::0;33681:61:0::1;-1:-1:-1::0;;;;;33756:16:0;::::1;33775:1;33756:16:::0;;;:7:::1;:16;::::0;;;;;:20;33753:108:::1;;-1:-1:-1::0;;;;;33832:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33812:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33793:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33753:108:::1;-1:-1:-1::0;;;;;33871:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33871:27:0::1;33894:4;33871:27:::0;;::::1;::::0;;;33909:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33909:23:0::1;::::0;;::::1;::::0;;33382:558::o;48808:103::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;48880:15:::1;:23:::0;;-1:-1:-1;;48880:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48808:103::o;29422:198::-;-1:-1:-1;;;;;29512:20:0;;29488:7;29512:20;;;:11;:20;;;;;;;;29508:49;;;-1:-1:-1;;;;;;29541:16:0;;;;;:7;:16;;;;;;;29422:198::o;29508:49::-;-1:-1:-1;;;;;29595:16:0;;;;;;:7;:16;;;;;;29575:37;;:19;:37::i;16184:148::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16291:1:::1;16275:6:::0;;16254:40:::1;::::0;-1:-1:-1;;;;;16275:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16254:40:0;16291:1;;16254:40:::1;16322:1;16305:19:::0;;-1:-1:-1;;;;;;16305:19:0::1;::::0;;16184:148::o;29795:223::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29903:18:::1;29924:33;29949:7;29924:20;29936:7;29924;;:11;;:20;;;;:::i;:33::-;29968:29;:42:::0;-1:-1:-1;;;29795:223:0:o;29054:71::-;29093:13;29116:7;29109:14;;;;;:::i;30034:286::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30178:15:::1;:32:::0;;;;30221:17:::1;:36:::0;30268:21:::1;:44:::0;30034:286::o;31574:269::-;31667:4;31684:129;8051:10;31707:7;31716:96;31755:15;31716:96;;;;;;;;;;;;;;;;;8051:10;31716:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31716:34:0;;;;;;;;;;;;:38;:96::i;17206:305::-;17258:14;;-1:-1:-1;;;;;17258:14:0;17276:10;17258:28;17250:76;;;;-1:-1:-1;;;17250:76:0;;12340:2:1;17250:76:0;;;12322:21:1;12379:2;12359:18;;;12352:30;12418:34;12398:18;;;12391:62;-1:-1:-1;;;12469:18:1;;;12462:33;12512:19;;17250:76:0;12138:399:1;17250:76:0;17363:9;;17345:15;:27;17337:72;;;;-1:-1:-1;;;17337:72:0;;11164:2:1;17337:72:0;;;11146:21:1;11203:2;11183:18;;;11176:30;11242:33;11222:18;;;11215:61;11293:18;;17337:72:0;10962:355:1;17337:72:0;17454:14;;;17446:6;;17425:44;;-1:-1:-1;;;;;17454:14:0;;;;17446:6;;;;-1:-1:-1;;;;;;;;;;;17425:44:0;;17489:14;;;17480:23;;-1:-1:-1;;;;;;17480:23:0;-1:-1:-1;;;;;17489:14:0;;;17480:23;;;;;;17206:305::o;45059:167::-;45137:4;45154:42;8051:10;45178:9;45189:6;45154:9;:42::i;34906:171::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;34983:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;34983:32:0;;::::1;;::::0;;35031:38:::1;::::0;::::1;::::0;::::1;::::0;35007:8;4674:14:1;4667:22;4649:41;;4637:2;4622:18;;4509:187;35031:38:0::1;;;;;;;;34906:171:::0;:::o;30641:229::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30762:10:::1;:22:::0;;;;30795:11:::1;:24:::0;30830:15:::1;:32:::0;30641:229::o;16904:226::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16985:6:::1;::::0;;;16968:23;;-1:-1:-1;;;;;;16968:23:0;;::::1;-1:-1:-1::0;;;;;16985:6:0;::::1;16968:23;::::0;;;17002:19:::1;::::0;;17044:22:::1;17062:4:::0;17044:15:::1;:22;:::i;:::-;17032:9;:34:::0;17119:1:::1;17103:6:::0;;17082:40:::1;::::0;-1:-1:-1;;;;;17103:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17082:40:0;17119:1;;17082:40:::1;16904:226:::0;:::o;34554:110::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34621:27:0::1;34651:5;34621:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34621:35:0::1;::::0;;34554:110::o;16487:244::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16576:22:0;::::1;16568:73;;;::::0;-1:-1:-1;;;16568:73:0;;6555:2:1;16568:73:0::1;::::0;::::1;6537:21:1::0;6594:2;6574:18;;;6567:30;6633:34;6613:18;;;6606:62;-1:-1:-1;;;6684:18:1;;;6677:36;6730:19;;16568:73:0::1;6353:402:1::0;16568:73:0::1;16678:6;::::0;;16657:38:::1;::::0;-1:-1:-1;;;;;16657:38:0;;::::1;::::0;16678:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16657:38:0;::::1;16706:6;:17:::0;;-1:-1:-1;;;;;;16706:17:0::1;-1:-1:-1::0;;;;;16706:17:0;;;::::1;::::0;;;::::1;::::0;;16487:244::o;30336:289::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30481:16:::1;:34:::0;;;;30526:17:::1;:36:::0;30573:21:::1;:44:::0;30336:289::o;39280:337::-;-1:-1:-1;;;;;39373:19:0;;39365:68;;;;-1:-1:-1;;;39365:68:0;;10759:2:1;39365:68:0;;;10741:21:1;10798:2;10778:18;;;10771:30;10837:34;10817:18;;;10810:62;-1:-1:-1;;;10888:18:1;;;10881:34;10932:19;;39365:68:0;10557:400:1;39365:68:0;-1:-1:-1;;;;;39452:21:0;;39444:68;;;;-1:-1:-1;;;39444:68:0;;6962:2:1;39444:68:0;;;6944:21:1;7001:2;6981:18;;;6974:30;7040:34;7020:18;;;7013:62;-1:-1:-1;;;7091:18:1;;;7084:32;7133:19;;39444:68:0;6760:398:1;39444:68:0;-1:-1:-1;;;;;39525:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39577:32;;12688:25:1;;;39577:32:0;;12661:18:1;39577:32:0;;;;;;;39280:337;;;:::o;4832:471::-;4890:7;5135:6;5131:47;;-1:-1:-1;5165:1:0;5158:8;;5131:47;5190:9;5202:5;5206:1;5202;:5;:::i;:::-;5190:17;-1:-1:-1;5235:1:0;5226:5;5230:1;5190:17;5226:5;:::i;:::-;:10;5218:56;;;;-1:-1:-1;;;5218:56:0;;8848:2:1;5218:56:0;;;8830:21:1;8887:2;8867:18;;;8860:30;8926:34;8906:18;;;8899:62;-1:-1:-1;;;8977:18:1;;;8970:31;9018:19;;5218:56:0;8646:397:1;5779:132:0;5837:7;5864:39;5868:1;5871;5864:39;;;;;;;;;;;;;;;;;:3;:39::i;42729:2322::-;-1:-1:-1;;;;;42851:18:0;;42843:68;;;;-1:-1:-1;;;42843:68:0;;10353:2:1;42843:68:0;;;10335:21:1;10392:2;10372:18;;;10365:30;10431:34;10411:18;;;10404:62;-1:-1:-1;;;10482:18:1;;;10475:35;10527:19;;42843:68:0;10151:401:1;42843:68:0;-1:-1:-1;;;;;42930:16:0;;42922:64;;;;-1:-1:-1;;;42922:64:0;;5740:2:1;42922:64:0;;;5722:21:1;5779:2;5759:18;;;5752:30;5818:34;5798:18;;;5791:62;-1:-1:-1;;;5869:18:1;;;5862:33;5912:19;;42922:64:0;5538:399:1;42922:64:0;43014:1;43005:6;:10;42997:64;;;;-1:-1:-1;;;42997:64:0;;9611:2:1;42997:64:0;;;9593:21:1;9650:2;9630:18;;;9623:30;9689:34;9669:18;;;9662:62;-1:-1:-1;;;9740:18:1;;;9733:39;9789:19;;42997:64:0;9409:405:1;42997:64:0;-1:-1:-1;;;;;43080:20:0;;;;;;:14;:20;;;;;;;;:29;43072:46;;;;-1:-1:-1;;;43072:46:0;;;;;;10021:2:1;10003:21;;;10060:1;10040:18;;;10033:29;-1:-1:-1;;;10093:2:1;10078:18;;10071:34;10137:2;10122:18;;9819:327;43072:46:0;-1:-1:-1;;;;;43137:18:0;;;;;;:14;:18;;;;;;;;:27;43129:44;;;;-1:-1:-1;;;43129:44:0;;;;;;10021:2:1;10003:21;;;10060:1;10040:18;;;10033:29;-1:-1:-1;;;10093:2:1;10078:18;;10071:34;10137:2;10122:18;;9819:327;43129:44:0;43196:13;-1:-1:-1;;;;;43188:21:0;:4;-1:-1:-1;;;;;43188:21:0;;:55;;;;;43227:15;-1:-1:-1;;;;;43213:30:0;:2;-1:-1:-1;;;;;43213:30:0;;;43188:55;:82;;;;-1:-1:-1;;;;;;43248:22:0;;;;;;:18;:22;;;;;;;;43247:23;43188:82;:101;;;;-1:-1:-1;43274:15:0;;;;43188:101;43184:305;;;43328:13;;43318:6;:23;;43310:32;;;;;;-1:-1:-1;;;;;43369:15:0;;;;;;:11;:15;;;;;;43387;-1:-1:-1;43361:42:0;;;;;;43460:8;;43440:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;43422:15:0;;;;;;:11;:15;;;;;:47;43184:305;43513:28;43544:24;43562:4;43544:9;:24::i;:::-;43513:55;;43608:29;;43584:20;:53;43581:146;;-1:-1:-1;43686:29:0;;43581:146;43790:29;;43766:53;;;;;;;43848;;-1:-1:-1;43885:16:0;;;;43884:17;43848:53;:91;;;;;43926:13;-1:-1:-1;;;;;43918:21:0;:4;-1:-1:-1;;;;;43918:21:0;;;43848:91;:129;;;;-1:-1:-1;43956:21:0;;;;;;;43848:129;43830:301;;;44039:29;;44016:52;;44083:36;44098:20;44083:14;:36::i;:::-;-1:-1:-1;;;;;44323:24:0;;44204:12;44323:24;;;:18;:24;;;;;;44219:4;;44323:24;;;:50;;-1:-1:-1;;;;;;44351:22:0;;;;;;:18;:22;;;;;;;;44323:50;44320:96;;;-1:-1:-1;44399:5:0;44320:96;44437:13;-1:-1:-1;;;;;44429:21:0;:4;-1:-1:-1;;;;;44429:21:0;;44426:501;;;44483:15;;44467:13;:31;44529:16;;44513:13;:32;44570:10;;44560:7;:20;44426:501;;;44607:13;-1:-1:-1;;;;;44601:19:0;:2;-1:-1:-1;;;;;44601:19:0;;44598:329;;;44652:17;;44636:13;:33;44700:17;;44684:13;:33;44742:11;;44732:7;:21;44598:329;;;44802:21;;44786:13;:37;44854:21;;44838:13;:37;44900:15;;44890:7;:25;44598:329;45005:38;45020:4;45025:2;45028:6;45035:7;45005:14;:38::i;:::-;42832:2219;;;42729:2322;;;:::o;4381:192::-;4467:7;4503:12;4495:6;;;;4487:29;;;;-1:-1:-1;;;4487:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4527:9:0;4539:5;4543:1;4539;:5;:::i;:::-;4527:17;4381:192;-1:-1:-1;;;;;4381:192:0:o;36783:163::-;36824:7;36845:15;36862;36881:19;:17;:19::i;:::-;36844:56;;-1:-1:-1;36844:56:0;-1:-1:-1;36918:20:0;36844:56;;36918:11;:20::i;:::-;36911:27;;;;36783:163;:::o;3478:181::-;3536:7;;3568:5;3572:1;3568;:5;:::i;:::-;3556:17;;3597:1;3592;:6;;3584:46;;;;-1:-1:-1;;;3584:46:0;;7365:2:1;3584:46:0;;;7347:21:1;7404:2;7384:18;;;7377:30;7443:29;7423:18;;;7416:57;7490:18;;3584:46:0;7163:351:1;35334:472:0;35393:7;35402;35411;35420;35429;35438;35447;35468:23;35493:12;35507:18;35527;35549:20;35561:7;35549:11;:20::i;:::-;35467:102;;;;;;;;35581:15;35598:23;35623:12;35639:62;35651:7;35660:4;35666:10;35678;35690;:8;:10::i;:::-;35639:11;:62::i;:::-;35580:121;;-1:-1:-1;35580:121:0;-1:-1:-1;35580:121:0;-1:-1:-1;35752:15:0;;-1:-1:-1;35769:4:0;;-1:-1:-1;35775:10:0;;-1:-1:-1;35787:10:0;-1:-1:-1;;;;35334:472:0;;;;;;;;;:::o;3942:136::-;4000:7;4027:43;4031:1;4034;4027:43;;;;;;;;;;;;;;;;;:3;:43::i;6407:278::-;6493:7;6528:12;6521:5;6513:28;;;;-1:-1:-1;;;6513:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6552:9:0;6564:5;6568:1;6564;:5;:::i;39748:1260::-;27965:16;:23;;-1:-1:-1;;27965:23:0;27984:4;27965:23;;;:16;39957:27:::1;:20:::0;39982:1:::1;39957:24;:27::i;:::-;39925:59:::0;-1:-1:-1;39995:29:0::1;40027:47;:20:::0;39925:59;40027:24:::1;:47::i;:::-;39995:79:::0;-1:-1:-1;40085:34:0::1;40122:28;39995:79:::0;40148:1:::1;40122:25;:28::i;:::-;40085:65:::0;-1:-1:-1;40161:29:0::1;40193:53;:21:::0;40085:65;40193:25:::1;:53::i;:::-;40161:85:::0;-1:-1:-1;40282:21:0::1;40257:22;40402:53;:26:::0;40433:21;40402:30:::1;:53::i;:::-;40374:81;;40468:35;40485:17;40468:16;:35::i;:::-;40516:18;40537:41;:21;40563:14:::0;40537:25:::1;:41::i;:::-;40516:62:::0;-1:-1:-1;40591:20:0::1;40614:17;40516:62:::0;40629:1:::1;40614:14;:17::i;:::-;40591:40;;40644:49;40657:21;40680:12;40644;:49::i;:::-;40711:79;::::0;;13911:25:1;;;13967:2;13952:18;;13945:34;;;13995:18;;;13988:34;;;40711:79:0::1;::::0;13899:2:1;13884:18;40711:79:0::1;;;;;;;40803:20;40826:28;:10:::0;40841:12;40826:14:::1;:28::i;:::-;40920:16;::::0;:39:::1;::::0;40803:51;;-1:-1:-1;;;;;;40920:16:0::1;::::0;:39;::::1;;;::::0;40803:51;;40920:16:::1;:39:::0;:16;:39;40803:51;40920:16;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40975:25:0::1;::::0;12688::1;;;40975::0::1;::::0;12676:2:1;12661:18;40975:25:0::1;;;;;;;-1:-1:-1::0;;28011:16:0;:24;;-1:-1:-1;;28011:24:0;;;-1:-1:-1;;;;;;;;39748:1260:0:o;45307:818::-;45418:7;45414:40;;45440:14;:12;:14::i;:::-;-1:-1:-1;;;;;45471:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45495:22:0;;;;;;:11;:22;;;;;;;;45494:23;45471:46;45467:597;;;45534:48;45556:6;45564:9;45575:6;45534:21;:48::i;:::-;45467:597;;;-1:-1:-1;;;;;45605:19:0;;;;;;:11;:19;;;;;;;;45604:20;:46;;;;-1:-1:-1;;;;;;45628:22:0;;;;;;:11;:22;;;;;;;;45604:46;45600:464;;;45667:46;45687:6;45695:9;45706:6;45667:19;:46::i;45600:464::-;-1:-1:-1;;;;;45736:19:0;;;;;;:11;:19;;;;;;;;45735:20;:47;;;;-1:-1:-1;;;;;;45760:22:0;;;;;;:11;:22;;;;;;;;45759:23;45735:47;45731:333;;;45799:44;45817:6;45825:9;45836:6;45799:17;:44::i;45731:333::-;-1:-1:-1;;;;;45865:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45888:22:0;;;;;;:11;:22;;;;;;;;45865:45;45861:203;;;45927:48;45949:6;45957:9;45968:6;45927:21;:48::i;45861:203::-;46008:44;46026:6;46034:9;46045:6;46008:17;:44::i;:::-;46080:7;46076:41;;46102:15;39153;;39143:7;:25;39195:21;;39179:13;:37;39243:21;;39227:13;:37;39099:173;46102:15;45307:818;;;;:::o;36954:555::-;37051:7;;37087;;37004;;;;;37105:289;37129:9;:16;37125:20;;37105:289;;;37195:7;37171;:21;37179:9;37189:1;37179:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37179:12:0;37171:21;;;;;;;;;;;;;:31;;:66;;;37230:7;37206;:21;37214:9;37224:1;37214:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37214:12:0;37206:21;;;;;;;;;;;;;:31;37171:66;37167:97;;;37247:7;;37256;;37239:25;;;;;;;36954:555;;:::o;37167:97::-;37289:34;37301:7;:21;37309:9;37319:1;37309:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37309:12:0;37301:21;;;;;;;;;;;;;37289:7;;:11;:34::i;:::-;37279:44;;37348:34;37360:7;:21;37368:9;37378:1;37368:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37368:12:0;37360:21;;;;;;;;;;;;;37348:7;;:11;:34::i;:::-;37338:44;-1:-1:-1;37147:3:0;;;;:::i;:::-;;;;37105:289;;;-1:-1:-1;37430:7:0;;37418;;:20;;:11;:20::i;:::-;37408:7;:30;37404:61;;;37448:7;;37457;;37440:25;;;;;;36954:555;;:::o;37404:61::-;37484:7;;37493;;-1:-1:-1;36954:555:0;-1:-1:-1;36954:555:0:o;35814:429::-;35874:7;35883;35892;35901;35921:12;35936:24;35952:7;35936:15;:24::i;:::-;35921:39;;35971:18;35992:30;36014:7;35992:21;:30::i;:::-;35971:51;;36033:18;36054:30;36076:7;36054:21;:30::i;:::-;36033:51;-1:-1:-1;36095:23:0;36121:49;36159:10;36121:33;36033:51;36121:33;:7;36133:4;36121:11;:17::i;:::-;:21;;:33::i;:49::-;36095:75;36206:4;;-1:-1:-1;36212:10:0;;-1:-1:-1;36212:10:0;-1:-1:-1;35814:429:0;;-1:-1:-1;;;35814:429:0:o;36251:524::-;36386:7;;;;36442:24;:7;36454:11;36442;:24::i;:::-;36424:42;-1:-1:-1;36477:12:0;36492:21;:4;36501:11;36492:8;:21::i;:::-;36477:36;-1:-1:-1;36524:18:0;36545:27;:10;36560:11;36545:14;:27::i;:::-;36524:48;-1:-1:-1;36583:18:0;36604:27;:10;36619:11;36604:14;:27::i;:::-;36583:48;-1:-1:-1;36642:23:0;36668:49;36706:10;36668:33;36583:48;36668:33;:7;36680:4;36668:11;:17::i;:49::-;36736:7;;;;-1:-1:-1;36762:4:0;;-1:-1:-1;36251:524:0;;-1:-1:-1;;;;;;;;;36251:524:0:o;41286:589::-;41436:16;;;41450:1;41436:16;;;;;;;;41412:21;;41436:16;;;;;;;;;;-1:-1:-1;41436:16:0;41412:40;;41481:4;41463;41468:1;41463:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41463:23:0;;;-1:-1:-1;;;;;41463:23:0;;;;;41507:15;-1:-1:-1;;;;;41507:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41497:4;41502:1;41497:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41497:32:0;;;-1:-1:-1;;;;;41497:32:0;;;;;41542:62;41559:4;41574:15;41592:11;41542:8;:62::i;:::-;41643:224;;-1:-1:-1;;;41643:224:0;;-1:-1:-1;;;;;41643:15:0;:66;;;;:224;;41724:11;;41750:1;;41794:4;;41821;;41841:15;;41643:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41883:513;42031:62;42048:4;42063:15;42081:11;42031:8;:62::i;:::-;42136:15;-1:-1:-1;;;;;42136:31:0;;42175:9;42208:4;42228:11;42254:1;42297;42340:7;15586;15613:6;-1:-1:-1;;;;;15613:6:0;;15548:79;42340:7;42136:252;;;;;;-1:-1:-1;;;;;;42136:252:0;;;-1:-1:-1;;;;;4256:15:1;;;42136:252:0;;;4238:34:1;4288:18;;;4281:34;;;;4331:18;;;4324:34;;;;4374:18;;;4367:34;4438:15;;;4417:19;;;4410:44;42362:15:0;4470:19:1;;;4463:35;4172:19;;42136:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41883:513;;:::o;38759:332::-;38805:7;;:12;:34;;;;-1:-1:-1;38821:13:0;;:18;38805:34;:56;;;;-1:-1:-1;38843:13:0;;:18;38805:56;38802:68;;;38759:332::o;38802:68::-;38900:7;;;38882:15;:25;38942:13;;;38918:21;:37;38990:13;;;38966:21;:37;-1:-1:-1;39016:11:0;;;;39038:17;;;;39066;38759:332::o;47356:627::-;47459:15;47476:23;47501:12;47515:23;47540:12;47554:18;47574;47596:19;47607:7;47596:10;:19::i;:::-;47458:157;;;;;;;;;;;;;;47644:28;47664:7;47644;:15;47652:6;-1:-1:-1;;;;;47644:15:0;-1:-1:-1;;;;;47644:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;47626:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47701:7;:15;;;;:28;;47721:7;47701:19;:28::i;:::-;-1:-1:-1;;;;;47683:15:0;;;;;;;:7;:15;;;;;;:46;;;;47761:18;;;;;;;:39;;47784:15;47761:22;:39::i;:::-;-1:-1:-1;;;;;47740:18:0;;;;;;:7;:18;;;;;:60;47811:26;47826:10;47811:14;:26::i;:::-;47855;47870:10;47855:14;:26::i;:::-;47892:23;47904:4;47910;47892:11;:23::i;:::-;47948:9;-1:-1:-1;;;;;47931:44:0;47940:6;-1:-1:-1;;;;;47931:44:0;;47959:15;47931:44;;;;12688:25:1;;12676:2;12661:18;;12542:177;47931:44:0;;;;;;;;47447:536;;;;;;;47356:627;;;:::o;46708:640::-;46809:15;46826:23;46851:12;46865:23;46890:12;46904:18;46924;46946:19;46957:7;46946:10;:19::i;:::-;46808:157;;;;;;;;;;;;;;46994:28;47014:7;46994;:15;47002:6;-1:-1:-1;;;;;46994:15:0;-1:-1:-1;;;;;46994:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;46976:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47054:18;;;;;:7;:18;;;;;:39;;47077:15;47054:22;:39::i;:::-;-1:-1:-1;;;;;47033:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47125:7;:18;;;;:39;;47148:15;47125:22;:39::i;46133:567::-;46232:15;46249:23;46274:12;46288:23;46313:12;46327:18;46347;46369:19;46380:7;46369:10;:19::i;:::-;46231:157;;;;;;;;;;;;;;46417:28;46437:7;46417;:15;46425:6;-1:-1:-1;;;;;46417:15:0;-1:-1:-1;;;;;46417:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;47995:699::-;48098:15;48115:23;48140:12;48154:23;48179:12;48193:18;48213;48235:19;48246:7;48235:10;:19::i;:::-;48097:157;;;;;;;;;;;;;;48283:28;48303:7;48283;:15;48291:6;-1:-1:-1;;;;;48283:15:0;-1:-1:-1;;;;;48283:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;48265:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48340:7;:15;;;;:28;;48360:7;48340:19;:28::i;38251:154::-;38315:7;38342:55;38381:5;38342:20;38354:7;;38342;:11;;:20;;;;:::i;38413:166::-;38483:7;38510:61;38555:5;38510:26;38522:13;;38510:7;:11;;:26;;;;:::i;38585:166::-;38655:7;38682:61;38727:5;38682:26;38694:13;;38682:7;:11;;:26;;;;:::i;37517:355::-;37580:19;37603:10;:8;:10::i;:::-;37580:33;-1:-1:-1;37624:18:0;37645:27;:10;37580:33;37645:14;:27::i;:::-;37724:4;37708:22;;;;:7;:22;;;;;;37624:48;;-1:-1:-1;37708:38:0;;37624:48;37708:26;:38::i;:::-;37699:4;37683:22;;;;:7;:22;;;;;;;;:63;;;;37760:11;:26;;;;;;37757:107;;;37842:4;37826:22;;;;:7;:22;;;;;;:38;;37853:10;37826:26;:38::i;:::-;37817:4;37801:22;;;;:7;:22;;;;;:63;37569:303;;37517:355;:::o;35179:147::-;35257:7;;:17;;35269:4;35257:11;:17::i;:::-;35247:7;:27;35298:10;;:20;;35313:4;35298:14;:20::i;:::-;35285:10;:33;-1:-1:-1;;35179:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;687:388::-;755:6;763;816:2;804:9;795:7;791:23;787:32;784:52;;;832:1;829;822:12;784:52;871:9;858:23;890:31;915:5;890:31;:::i;:::-;940:5;-1:-1:-1;997:2:1;982:18;;969:32;1010:33;969:32;1010:33;:::i;:::-;1062:7;1052:17;;;687:388;;;;;:::o;1080:456::-;1157:6;1165;1173;1226:2;1214:9;1205:7;1201:23;1197:32;1194:52;;;1242:1;1239;1232:12;1194:52;1281:9;1268:23;1300:31;1325:5;1300:31;:::i;:::-;1350:5;-1:-1:-1;1407:2:1;1392:18;;1379:32;1420:33;1379:32;1420:33;:::i;:::-;1080:456;;1472:7;;-1:-1:-1;;;1526:2:1;1511:18;;;;1498:32;;1080:456::o;1541:315::-;1606:6;1614;1667:2;1655:9;1646:7;1642:23;1638:32;1635:52;;;1683:1;1680;1673:12;1635:52;1722:9;1709:23;1741:31;1766:5;1741:31;:::i;:::-;1791:5;-1:-1:-1;1815:35:1;1846:2;1831:18;;1815:35;:::i;:::-;1805:45;;1541:315;;;;;:::o;1861:::-;1929:6;1937;1990:2;1978:9;1969:7;1965:23;1961:32;1958:52;;;2006:1;2003;1996:12;1958:52;2045:9;2032:23;2064:31;2089:5;2064:31;:::i;:::-;2114:5;2166:2;2151:18;;;;2138:32;;-1:-1:-1;;;1861:315:1:o;2181:180::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:26;2345:9;2329:26;:::i;2366:180::-;2425:6;2478:2;2466:9;2457:7;2453:23;2449:32;2446:52;;;2494:1;2491;2484:12;2446:52;-1:-1:-1;2517:23:1;;2366:180;-1:-1:-1;2366:180:1:o;2551:248::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2729:9;2716:23;2706:33;;2758:35;2789:2;2778:9;2774:18;2758:35;:::i;2804:248::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;-1:-1:-1;;2972:23:1;;;3042:2;3027:18;;;3014:32;;-1:-1:-1;2804:248:1:o;3057:316::-;3134:6;3142;3150;3203:2;3191:9;3182:7;3178:23;3174:32;3171:52;;;3219:1;3216;3209:12;3171:52;-1:-1:-1;;3242:23:1;;;3312:2;3297:18;;3284:32;;-1:-1:-1;3363:2:1;3348:18;;;3335:32;;3057:316;-1:-1:-1;3057:316:1:o;3378:306::-;3466:6;3474;3482;3535:2;3523:9;3514:7;3510:23;3506:32;3503:52;;;3551:1;3548;3541:12;3503:52;3580:9;3574:16;3564:26;;3630:2;3619:9;3615:18;3609:25;3599:35;;3674:2;3663:9;3659:18;3653:25;3643:35;;3378:306;;;;;:::o;4936:597::-;5048:4;5077:2;5106;5095:9;5088:21;5138:6;5132:13;5181:6;5176:2;5165:9;5161:18;5154:34;5206:1;5216:140;5230:6;5227:1;5224:13;5216:140;;;5325:14;;;5321:23;;5315:30;5291:17;;;5310:2;5287:26;5280:66;5245:10;;5216:140;;;5374:6;5371:1;5368:13;5365:91;;;5444:1;5439:2;5430:6;5419:9;5415:22;5411:31;5404:42;5365:91;-1:-1:-1;5517:2:1;5496:15;-1:-1:-1;;5492:29:1;5477:45;;;;5524:2;5473:54;;4936:597;-1:-1:-1;;;4936:597:1:o;9048:356::-;9250:2;9232:21;;;9269:18;;;9262:30;9328:34;9323:2;9308:18;;9301:62;9395:2;9380:18;;9048:356::o;12724:980::-;12986:4;13034:3;13023:9;13019:19;13065:6;13054:9;13047:25;13091:2;13129:6;13124:2;13113:9;13109:18;13102:34;13172:3;13167:2;13156:9;13152:18;13145:31;13196:6;13231;13225:13;13262:6;13254;13247:22;13300:3;13289:9;13285:19;13278:26;;13339:2;13331:6;13327:15;13313:29;;13360:1;13370:195;13384:6;13381:1;13378:13;13370:195;;;13449:13;;-1:-1:-1;;;;;13445:39:1;13433:52;;13540:15;;;;13505:12;;;;13481:1;13399:9;13370:195;;;-1:-1:-1;;;;;;;13621:32:1;;;;13616:2;13601:18;;13594:60;-1:-1:-1;;;13685:3:1;13670:19;13663:35;13582:3;12724:980;-1:-1:-1;;;12724:980:1:o;14222:128::-;14262:3;14293:1;14289:6;14286:1;14283:13;14280:39;;;14299:18;;:::i;:::-;-1:-1:-1;14335:9:1;;14222:128::o;14355:217::-;14395:1;14421;14411:132;;14465:10;14460:3;14456:20;14453:1;14446:31;14500:4;14497:1;14490:15;14528:4;14525:1;14518:15;14411:132;-1:-1:-1;14557:9:1;;14355:217::o;14577:168::-;14617:7;14683:1;14679;14675:6;14671:14;14668:1;14665:21;14660:1;14653:9;14646:17;14642:45;14639:71;;;14690:18;;:::i;:::-;-1:-1:-1;14730:9:1;;14577:168::o;14750:125::-;14790:4;14818:1;14815;14812:8;14809:34;;;14823:18;;:::i;:::-;-1:-1:-1;14860:9:1;;14750:125::o;14880:380::-;14959:1;14955:12;;;;15002;;;15023:61;;15077:4;15069:6;15065:17;15055:27;;15023:61;15130:2;15122:6;15119:14;15099:18;15096:38;15093:161;;;15176:10;15171:3;15167:20;15164:1;15157:31;15211:4;15208:1;15201:15;15239:4;15236:1;15229:15;15093:161;;14880:380;;;:::o;15265:135::-;15304:3;-1:-1:-1;;15325:17:1;;15322:43;;;15345:18;;:::i;:::-;-1:-1:-1;15392:1:1;15381:13;;15265:135::o;15405:127::-;15466:10;15461:3;15457:20;15454:1;15447:31;15497:4;15494:1;15487:15;15521:4;15518:1;15511:15;15537:127;15598:10;15593:3;15589:20;15586:1;15579:31;15629:4;15626:1;15619:15;15653:4;15650:1;15643:15;15669:127;15730:10;15725:3;15721:20;15718:1;15711:31;15761:4;15758:1;15751:15;15785:4;15782:1;15775:15;15933:131;-1:-1:-1;;;;;16008:31:1;;15998:42;;15988:70;;16054:1;16051;16044:12;15988:70;15933:131;:::o

Swarm Source

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