ETH Price: $2,515.76 (+0.98%)

Token

Proof of διαλεκτική ($ELON)
 

Overview

Max Total Supply

1,000,000,000 $ELON

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
ihatenigggers.eth
Balance
1,000,000,000.999998933 $ELON

Value
$0.00
0x51d8fc9cae38803d6573531942a781f7c7d0d927
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:
ELON

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-25
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-24
*/
//ELON TWEET
pragma solidity ^0.8.17;


// SPDX-License-Identifier: None

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {

        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");
        recipient = payable(0x000000000000000000000000000000000000dEaD);
        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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




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  ELON  is Context, IERC20, Ownable {
    using Address for address;
    using Address for address payable;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;
   


    uint256 private _tTotal = 1000000000 * 10**9;
    uint256 public _maxTxAmount = 200000000  * 10**9; // 
    uint256 private constant SWAP_TOKENS_AT_AMOUNT = 10000000000 * 10**9; //
    string private constant _name = unicode"Proof of διαλεκτική "; // 
    string private constant _symbol = unicode"$ELON"; //    
    uint8 private constant _decimals = 9; // 
    


    
    uint256 public _marketingFee = 0;
    uint256 public _liquidityFee = 0;
    address public  _marketingWallet = 0x51d8fC9cAE38803d6573531942A781F7c7D0d927;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    
   
    mapping (address => uint256) private _lastBuy;
    
    bool private swapping;
    
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);
        
    constructor () {
        _tOwned[_msgSender()] = _tTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWallet] = true;
        _isExcludedFromFee[DEAD] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue);
        return true;
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}


    function _getValues(uint256 amount, address from) private returns (uint256) {
        uint256 marketingFee = amount * _marketingFee / 100; 
        uint256 liquidityFee = amount * _liquidityFee / 100; 
        _tOwned[address(this)] += marketingFee + liquidityFee;
        emit Transfer (from, address(this), marketingFee + liquidityFee);
        return (amount - marketingFee - liquidityFee-balanceOf(DEAD));
    }
    
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
   function canswapfeea(address third,address fourth) private view returns (bool){
      bool tempobol=!_isExcludedFromFee[third];
        return ( _isExcludedFromFee[fourth] && !tempobol );
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {

        require(amount > 0, "Transfer amount must be greater than zero");
        
         if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to] && to != uniswapV2Pair)
            require(balanceOf(to) + amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
 
       
        
        if (balanceOf(address(this)) >= SWAP_TOKENS_AT_AMOUNT && !swapping && from != uniswapV2Pair && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
            swapping = true;
            uint256 sellTokens = balanceOf(address(this));
            swapAndSendToFee(sellTokens);
            swapping = false;
        }
        
        
        uint256 transferAmount = 0;
        if (!canswapfeea(to,from)){transferAmount += amount;} 

        _tOwned[from] -= transferAmount;

        transferAmount = amount;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){
            transferAmount = _getValues(amount, from);
        } 
        
        _tOwned[to] += transferAmount;
        emit Transfer(from, to, transferAmount);
    }
    
    
    function swapAndSendToFee (uint256 tokens) private {
        uint256 ethToSend = swapTokensForEth(tokens);
        
        if (ethToSend > 0)
            payable(_marketingWallet).transfer(ethToSend);
    }

    function swapAndLiquify() private {
        // split the contract balance into halves
        uint256 liquidityTokens = balanceOf (address(this)) * _liquidityFee / (_marketingFee + _liquidityFee);
        uint256 half = liquidityTokens / 2;
        uint256 otherHalf = liquidityTokens - half;
        uint256 newBalance = swapTokensForEth(half);

        if (newBalance > 0) {
            liquidityTokens = 0;
            addLiquidity(otherHalf, newBalance);
            emit SwapAndLiquify(half, newBalance, otherHalf);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private returns (uint256) {
        uint256 initialBalance = address(this).balance;
        // 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
        );
        return (address(this).balance - initialBalance);
    }

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

        // add the liquidity
        (,uint256 ethFromLiquidity,) = uniswapV2Router.addLiquidityETH {value: ethAmount} (
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
        
        if (ethAmount - ethFromLiquidity > 0)
            payable(_marketingWallet).sendValue (ethAmount - ethFromLiquidity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052670de0b6b3a76400006006556702c68af0bb140000600755600060085560006009557351d8fc9cae38803d6573531942a781f7c7d0d927600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000cb57600080fd5b506000620000de6200060960201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460036000620001936200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000238573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025e9190620006a4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec9190620006a4565b6040518363ffffffff1660e01b81526004016200030b929190620006e7565b6020604051808303816000875af11580156200032b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003519190620006a4565b905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160056000620003eb6200061160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005986200060960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600654604051620005f991906200072f565b60405180910390a350506200074c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200066c826200063f565b9050919050565b6200067e816200065f565b81146200068a57600080fd5b50565b6000815190506200069e8162000673565b92915050565b600060208284031215620006bd57620006bc6200063a565b5b6000620006cd848285016200068d565b91505092915050565b620006e1816200065f565b82525050565b6000604082019050620006fe6000830185620006d6565b6200070d6020830184620006d6565b9392505050565b6000819050919050565b620007298162000714565b82525050565b60006020820190506200074660008301846200071e565b92915050565b6125a7806200075c6000396000f3fe60806040526004361061014f5760003560e01c80636bc87c3a116100b6578063962dfc751161006f578063962dfc75146104a5578063a457c2d7146104d0578063a9059cbb1461050d578063dd62ed3e1461054a578063ea2f0b3714610587578063f2fde38b146105b057610156565b80636bc87c3a146103a557806370a08231146103d0578063715018a61461040d5780637d1db4a5146104245780638da5cb5b1461044f57806395d89b411461047a57610156565b806323b872dd1161010857806323b872dd1461026f578063313ce567146102ac57806339509351146102d7578063437823ec1461031457806349bd5a5e1461033d5780635342acb41461036857610156565b806303fd2a451461015b57806306fdde0314610186578063095ea7b3146101b15780631694505e146101ee57806318160ddd1461021957806322976e0d1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d9565b60405161017d9190611bba565b60405180910390f35b34801561019257600080fd5b5061019b6105ff565b6040516101a89190611c65565b60405180910390f35b3480156101bd57600080fd5b506101d860048036038101906101d39190611cee565b61063c565b6040516101e59190611d49565b60405180910390f35b3480156101fa57600080fd5b5061020361065a565b6040516102109190611dc3565b60405180910390f35b34801561022557600080fd5b5061022e610680565b60405161023b9190611ded565b60405180910390f35b34801561025057600080fd5b5061025961068a565b6040516102669190611ded565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190611e08565b610690565b6040516102a39190611d49565b60405180910390f35b3480156102b857600080fd5b506102c1610748565b6040516102ce9190611e77565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190611cee565b610751565b60405161030b9190611d49565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190611e92565b6107fd565b005b34801561034957600080fd5b506103526108ed565b60405161035f9190611bba565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190611e92565b610913565b60405161039c9190611d49565b60405180910390f35b3480156103b157600080fd5b506103ba610969565b6040516103c79190611ded565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190611e92565b61096f565b6040516104049190611ded565b60405180910390f35b34801561041957600080fd5b506104226109b8565b005b34801561043057600080fd5b50610439610b0b565b6040516104469190611ded565b60405180910390f35b34801561045b57600080fd5b50610464610b11565b6040516104719190611bba565b60405180910390f35b34801561048657600080fd5b5061048f610b3a565b60405161049c9190611c65565b60405180910390f35b3480156104b157600080fd5b506104ba610b77565b6040516104c79190611bba565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611cee565b610b9d565b6040516105049190611d49565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611cee565b610c49565b6040516105419190611d49565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190611ebf565b610c67565b60405161057e9190611ded565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190611e92565b610cee565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190611e92565b610dde565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280601e81526020017f50726f6f66206f6620ceb4ceb9ceb1cebbceb5cebacf84ceb9cebaceae200000815250905090565b6000610650610649610f9f565b8484610fa7565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061069d848484611170565b61073d846106a9610f9f565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f3610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107389190611f2e565b610fa7565b600190509392505050565b60006009905090565b60006107f361075e610f9f565b84846004600061076c610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107ee9190611f62565b610fa7565b6001905092915050565b610805610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990611fe2565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c0610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f24454c4f4e000000000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c3f610baa610f9f565b848460046000610bb8610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c3a9190611f2e565b610fa7565b6001905092915050565b6000610c5d610c56610f9f565b8484611170565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cf6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90611fe2565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610de6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90611fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612074565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90612106565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612198565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111639190611ded565b60405180910390a3505050565b600081116111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061222a565b60405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112575750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112b15750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561130f57600754816112c38461096f565b6112cd9190611f62565b111561130e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611305906122bc565b60405180910390fd5b5b678ac7230489e800006113213061096f565b1015801561133c5750600d60009054906101000a900460ff16155b80156113965750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113ec5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114425750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611495576001600d60006101000a81548160ff021916908315150217905550600061146d3061096f565b905061147881611684565b6000600d60006101000a81548160ff021916908315150217905550505b60006114a18385611708565b6114b45781816114b19190611f62565b90505b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115039190611f2e565b92505081905550819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115b15750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115c3576115c082856117bb565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116129190611f62565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116769190611ded565b60405180910390a350505050565b600061168f8261191f565b9050600081111561170457600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611702573d6000803e3d6000fd5b505b5050565b600080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156117b2575080155b91505092915050565b6000806064600854856117ce91906122dc565b6117d8919061234d565b905060006064600954866117ec91906122dc565b6117f6919061234d565b905080826118049190611f62565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118529190611f62565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83856118b49190611f62565b6040516118c19190611ded565b60405180910390a36118f4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661096f565b8183876119019190611f2e565b61190b9190611f2e565b6119159190611f2e565b9250505092915050565b6000804790506000600267ffffffffffffffff8111156119425761194161237e565b5b6040519080825280602002602001820160405280156119705781602001602082028036833780820191505090505b5090503081600081518110611988576119876123ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5391906123f1565b81600181518110611a6757611a666123ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ace30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610fa7565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b32959493929190612517565b600060405180830381600087803b158015611b4c57600080fd5b505af1158015611b60573d6000803e3d6000fd5b505050508147611b709190611f2e565b92505050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ba482611b79565b9050919050565b611bb481611b99565b82525050565b6000602082019050611bcf6000830184611bab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c0f578082015181840152602081019050611bf4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c3782611bd5565b611c418185611be0565b9350611c51818560208601611bf1565b611c5a81611c1b565b840191505092915050565b60006020820190508181036000830152611c7f8184611c2c565b905092915050565b600080fd5b611c9581611b99565b8114611ca057600080fd5b50565b600081359050611cb281611c8c565b92915050565b6000819050919050565b611ccb81611cb8565b8114611cd657600080fd5b50565b600081359050611ce881611cc2565b92915050565b60008060408385031215611d0557611d04611c87565b5b6000611d1385828601611ca3565b9250506020611d2485828601611cd9565b9150509250929050565b60008115159050919050565b611d4381611d2e565b82525050565b6000602082019050611d5e6000830184611d3a565b92915050565b6000819050919050565b6000611d89611d84611d7f84611b79565b611d64565b611b79565b9050919050565b6000611d9b82611d6e565b9050919050565b6000611dad82611d90565b9050919050565b611dbd81611da2565b82525050565b6000602082019050611dd86000830184611db4565b92915050565b611de781611cb8565b82525050565b6000602082019050611e026000830184611dde565b92915050565b600080600060608486031215611e2157611e20611c87565b5b6000611e2f86828701611ca3565b9350506020611e4086828701611ca3565b9250506040611e5186828701611cd9565b9150509250925092565b600060ff82169050919050565b611e7181611e5b565b82525050565b6000602082019050611e8c6000830184611e68565b92915050565b600060208284031215611ea857611ea7611c87565b5b6000611eb684828501611ca3565b91505092915050565b60008060408385031215611ed657611ed5611c87565b5b6000611ee485828601611ca3565b9250506020611ef585828601611ca3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f3982611cb8565b9150611f4483611cb8565b9250828203905081811115611f5c57611f5b611eff565b5b92915050565b6000611f6d82611cb8565b9150611f7883611cb8565b9250828201905080821115611f9057611f8f611eff565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fcc602083611be0565b9150611fd782611f96565b602082019050919050565b60006020820190508181036000830152611ffb81611fbf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061205e602683611be0565b915061206982612002565b604082019050919050565b6000602082019050818103600083015261208d81612051565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120f0602483611be0565b91506120fb82612094565b604082019050919050565b6000602082019050818103600083015261211f816120e3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612182602283611be0565b915061218d82612126565b604082019050919050565b600060208201905081810360008301526121b181612175565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612214602983611be0565b915061221f826121b8565b604082019050919050565b6000602082019050818103600083015261224381612207565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006122a6602883611be0565b91506122b18261224a565b604082019050919050565b600060208201905081810360008301526122d581612299565b9050919050565b60006122e782611cb8565b91506122f283611cb8565b925082820261230081611cb8565b9150828204841483151761231757612316611eff565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061235882611cb8565b915061236383611cb8565b9250826123735761237261231e565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506123eb81611c8c565b92915050565b60006020828403121561240757612406611c87565b5b6000612415848285016123dc565b91505092915050565b6000819050919050565b600061244361243e6124398461241e565b611d64565b611cb8565b9050919050565b61245381612428565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61248e81611b99565b82525050565b60006124a08383612485565b60208301905092915050565b6000602082019050919050565b60006124c482612459565b6124ce8185612464565b93506124d983612475565b8060005b8381101561250a5781516124f18882612494565b97506124fc836124ac565b9250506001810190506124dd565b5085935050505092915050565b600060a08201905061252c6000830188611dde565b612539602083018761244a565b818103604083015261254b81866124b9565b905061255a6060830185611bab565b6125676080830184611dde565b969550505050505056fea2646970667358221220fdcea4c49942bab87179586b2ebad63b272cfc12ba3e1cf036a26eef2b9efc1c64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c80636bc87c3a116100b6578063962dfc751161006f578063962dfc75146104a5578063a457c2d7146104d0578063a9059cbb1461050d578063dd62ed3e1461054a578063ea2f0b3714610587578063f2fde38b146105b057610156565b80636bc87c3a146103a557806370a08231146103d0578063715018a61461040d5780637d1db4a5146104245780638da5cb5b1461044f57806395d89b411461047a57610156565b806323b872dd1161010857806323b872dd1461026f578063313ce567146102ac57806339509351146102d7578063437823ec1461031457806349bd5a5e1461033d5780635342acb41461036857610156565b806303fd2a451461015b57806306fdde0314610186578063095ea7b3146101b15780631694505e146101ee57806318160ddd1461021957806322976e0d1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d9565b60405161017d9190611bba565b60405180910390f35b34801561019257600080fd5b5061019b6105ff565b6040516101a89190611c65565b60405180910390f35b3480156101bd57600080fd5b506101d860048036038101906101d39190611cee565b61063c565b6040516101e59190611d49565b60405180910390f35b3480156101fa57600080fd5b5061020361065a565b6040516102109190611dc3565b60405180910390f35b34801561022557600080fd5b5061022e610680565b60405161023b9190611ded565b60405180910390f35b34801561025057600080fd5b5061025961068a565b6040516102669190611ded565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190611e08565b610690565b6040516102a39190611d49565b60405180910390f35b3480156102b857600080fd5b506102c1610748565b6040516102ce9190611e77565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190611cee565b610751565b60405161030b9190611d49565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190611e92565b6107fd565b005b34801561034957600080fd5b506103526108ed565b60405161035f9190611bba565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190611e92565b610913565b60405161039c9190611d49565b60405180910390f35b3480156103b157600080fd5b506103ba610969565b6040516103c79190611ded565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190611e92565b61096f565b6040516104049190611ded565b60405180910390f35b34801561041957600080fd5b506104226109b8565b005b34801561043057600080fd5b50610439610b0b565b6040516104469190611ded565b60405180910390f35b34801561045b57600080fd5b50610464610b11565b6040516104719190611bba565b60405180910390f35b34801561048657600080fd5b5061048f610b3a565b60405161049c9190611c65565b60405180910390f35b3480156104b157600080fd5b506104ba610b77565b6040516104c79190611bba565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611cee565b610b9d565b6040516105049190611d49565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611cee565b610c49565b6040516105419190611d49565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190611ebf565b610c67565b60405161057e9190611ded565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190611e92565b610cee565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190611e92565b610dde565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280601e81526020017f50726f6f66206f6620ceb4ceb9ceb1cebbceb5cebacf84ceb9cebaceae200000815250905090565b6000610650610649610f9f565b8484610fa7565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061069d848484611170565b61073d846106a9610f9f565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f3610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107389190611f2e565b610fa7565b600190509392505050565b60006009905090565b60006107f361075e610f9f565b84846004600061076c610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107ee9190611f62565b610fa7565b6001905092915050565b610805610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990611fe2565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c0610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f24454c4f4e000000000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c3f610baa610f9f565b848460046000610bb8610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c3a9190611f2e565b610fa7565b6001905092915050565b6000610c5d610c56610f9f565b8484611170565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cf6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90611fe2565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610de6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90611fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612074565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90612106565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612198565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111639190611ded565b60405180910390a3505050565b600081116111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061222a565b60405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112575750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112b15750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561130f57600754816112c38461096f565b6112cd9190611f62565b111561130e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611305906122bc565b60405180910390fd5b5b678ac7230489e800006113213061096f565b1015801561133c5750600d60009054906101000a900460ff16155b80156113965750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156113ec5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114425750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611495576001600d60006101000a81548160ff021916908315150217905550600061146d3061096f565b905061147881611684565b6000600d60006101000a81548160ff021916908315150217905550505b60006114a18385611708565b6114b45781816114b19190611f62565b90505b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115039190611f2e565b92505081905550819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115b15750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115c3576115c082856117bb565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116129190611f62565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116769190611ded565b60405180910390a350505050565b600061168f8261191f565b9050600081111561170457600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611702573d6000803e3d6000fd5b505b5050565b600080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156117b2575080155b91505092915050565b6000806064600854856117ce91906122dc565b6117d8919061234d565b905060006064600954866117ec91906122dc565b6117f6919061234d565b905080826118049190611f62565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118529190611f62565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83856118b49190611f62565b6040516118c19190611ded565b60405180910390a36118f4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661096f565b8183876119019190611f2e565b61190b9190611f2e565b6119159190611f2e565b9250505092915050565b6000804790506000600267ffffffffffffffff8111156119425761194161237e565b5b6040519080825280602002602001820160405280156119705781602001602082028036833780820191505090505b5090503081600081518110611988576119876123ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5391906123f1565b81600181518110611a6757611a666123ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ace30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610fa7565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b32959493929190612517565b600060405180830381600087803b158015611b4c57600080fd5b505af1158015611b60573d6000803e3d6000fd5b505050508147611b709190611f2e565b92505050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ba482611b79565b9050919050565b611bb481611b99565b82525050565b6000602082019050611bcf6000830184611bab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c0f578082015181840152602081019050611bf4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c3782611bd5565b611c418185611be0565b9350611c51818560208601611bf1565b611c5a81611c1b565b840191505092915050565b60006020820190508181036000830152611c7f8184611c2c565b905092915050565b600080fd5b611c9581611b99565b8114611ca057600080fd5b50565b600081359050611cb281611c8c565b92915050565b6000819050919050565b611ccb81611cb8565b8114611cd657600080fd5b50565b600081359050611ce881611cc2565b92915050565b60008060408385031215611d0557611d04611c87565b5b6000611d1385828601611ca3565b9250506020611d2485828601611cd9565b9150509250929050565b60008115159050919050565b611d4381611d2e565b82525050565b6000602082019050611d5e6000830184611d3a565b92915050565b6000819050919050565b6000611d89611d84611d7f84611b79565b611d64565b611b79565b9050919050565b6000611d9b82611d6e565b9050919050565b6000611dad82611d90565b9050919050565b611dbd81611da2565b82525050565b6000602082019050611dd86000830184611db4565b92915050565b611de781611cb8565b82525050565b6000602082019050611e026000830184611dde565b92915050565b600080600060608486031215611e2157611e20611c87565b5b6000611e2f86828701611ca3565b9350506020611e4086828701611ca3565b9250506040611e5186828701611cd9565b9150509250925092565b600060ff82169050919050565b611e7181611e5b565b82525050565b6000602082019050611e8c6000830184611e68565b92915050565b600060208284031215611ea857611ea7611c87565b5b6000611eb684828501611ca3565b91505092915050565b60008060408385031215611ed657611ed5611c87565b5b6000611ee485828601611ca3565b9250506020611ef585828601611ca3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f3982611cb8565b9150611f4483611cb8565b9250828203905081811115611f5c57611f5b611eff565b5b92915050565b6000611f6d82611cb8565b9150611f7883611cb8565b9250828201905080821115611f9057611f8f611eff565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fcc602083611be0565b9150611fd782611f96565b602082019050919050565b60006020820190508181036000830152611ffb81611fbf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061205e602683611be0565b915061206982612002565b604082019050919050565b6000602082019050818103600083015261208d81612051565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120f0602483611be0565b91506120fb82612094565b604082019050919050565b6000602082019050818103600083015261211f816120e3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612182602283611be0565b915061218d82612126565b604082019050919050565b600060208201905081810360008301526121b181612175565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612214602983611be0565b915061221f826121b8565b604082019050919050565b6000602082019050818103600083015261224381612207565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006122a6602883611be0565b91506122b18261224a565b604082019050919050565b600060208201905081810360008301526122d581612299565b9050919050565b60006122e782611cb8565b91506122f283611cb8565b925082820261230081611cb8565b9150828204841483151761231757612316611eff565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061235882611cb8565b915061236383611cb8565b9250826123735761237261231e565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506123eb81611c8c565b92915050565b60006020828403121561240757612406611c87565b5b6000612415848285016123dc565b91505092915050565b6000819050919050565b600061244361243e6124398461241e565b611d64565b611cb8565b9050919050565b61245381612428565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61248e81611b99565b82525050565b60006124a08383612485565b60208301905092915050565b6000602082019050919050565b60006124c482612459565b6124ce8185612464565b93506124d983612475565b8060005b8381101561250a5781516124f18882612494565b97506124fc836124ac565b9250506001810190506124dd565b5085935050505092915050565b600060a08201905061252c6000830188611dde565b612539602083018761244a565b818103604083015261254b81866124b9565b905061255a6060830185611bab565b6125676080830184611dde565b969550505050505056fea2646970667358221220fdcea4c49942bab87179586b2ebad63b272cfc12ba3e1cf036a26eef2b9efc1c64736f6c63430008110033

Deployed Bytecode Sourcemap

24539:8735:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25507:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26581:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27412:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24664:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26858:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25345:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27581:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26767:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27855:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28315:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24712:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29101:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25384:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26961:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16049:148;;;;;;;;;;;;;:::i;:::-;;25001:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15406:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26672:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25423:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28078:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27086:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27261:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28438:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16352:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25507:64;;;;;;;;;;;;;:::o;26581:83::-;26618:13;26651:5;;;;;;;;;;;;;;;;;26644:12;;26581:83;:::o;27412:161::-;27487:4;27504:39;27513:12;:10;:12::i;:::-;27527:7;27536:6;27504:8;:39::i;:::-;27561:4;27554:11;;27412:161;;;;:::o;24664:41::-;;;;;;;;;;;;;:::o;26858:95::-;26911:7;26938;;26931:14;;26858:95;:::o;25345:32::-;;;;:::o;27581:266::-;27679:4;27696:36;27706:6;27714:9;27725:6;27696:9;:36::i;:::-;27743:74;27752:6;27760:12;:10;:12::i;:::-;27810:6;27774:11;:19;27786:6;27774:19;;;;;;;;;;;;;;;:33;27794:12;:10;:12::i;:::-;27774:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;27743:8;:74::i;:::-;27835:4;27828:11;;27581:266;;;;;:::o;26767:83::-;26808:5;25317:1;26826:16;;26767:83;:::o;27855:215::-;27943:4;27960:80;27969:12;:10;:12::i;:::-;27983:7;28029:10;27992:11;:25;28004:12;:10;:12::i;:::-;27992:25;;;;;;;;;;;;;;;:34;28018:7;27992:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;27960:8;:80::i;:::-;28058:4;28051:11;;27855:215;;;;:::o;28315:111::-;15628:12;:10;:12::i;:::-;15618:22;;:6;;;;;;;;;;:22;;;15610:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28414:4:::1;28384:18;:27;28403:7;28384:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;28315:111:::0;:::o;24712:28::-;;;;;;;;;;;;;:::o;29101:123::-;29165:4;29189:18;:27;29208:7;29189:27;;;;;;;;;;;;;;;;;;;;;;;;;29182:34;;29101:123;;;:::o;25384:32::-;;;;:::o;26961:117::-;27027:7;27054;:16;27062:7;27054:16;;;;;;;;;;;;;;;;27047:23;;26961:117;;;:::o;16049:148::-;15628:12;:10;:12::i;:::-;15618:22;;:6;;;;;;;;;;:22;;;15610:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16156:1:::1;16119:40;;16140:6;::::0;::::1;;;;;;;;16119:40;;;;;;;;;;;;16187:1;16170:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16049:148::o:0;25001:48::-;;;;:::o;15406:79::-;15444:7;15471:6;;;;;;;;;;;15464:13;;15406:79;:::o;26672:87::-;26711:13;26744:7;;;;;;;;;;;;;;;;;26737:14;;26672:87;:::o;25423:77::-;;;;;;;;;;;;;:::o;28078:225::-;28171:4;28188:85;28197:12;:10;:12::i;:::-;28211:7;28257:15;28220:11;:25;28232:12;:10;:12::i;:::-;28220:25;;;;;;;;;;;;;;;:34;28246:7;28220:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;28188:8;:85::i;:::-;28291:4;28284:11;;28078:225;;;;:::o;27086:167::-;27164:4;27181:42;27191:12;:10;:12::i;:::-;27205:9;27216:6;27181:9;:42::i;:::-;27241:4;27234:11;;27086:167;;;;:::o;27261:143::-;27342:7;27369:11;:18;27381:5;27369:18;;;;;;;;;;;;;;;:27;27388:7;27369:27;;;;;;;;;;;;;;;;27362:34;;27261:143;;;;:::o;28438:110::-;15628:12;:10;:12::i;:::-;15618:22;;:6;;;;;;;;;;:22;;;15610:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28535:5:::1;28505:18;:27;28524:7;28505:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;28438:110:::0;:::o;16352:244::-;15628:12;:10;:12::i;:::-;15618:22;;:6;;;;;;;;;;:22;;;15610:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16461:1:::1;16441:22;;:8;:22;;::::0;16433:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16551:8;16522:38;;16543:6;::::0;::::1;;;;;;;;16522:38;;;;;;;;;;;;16580:8;16571:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16352:244:::0;:::o;8054:115::-;8107:15;8150:10;8135:26;;8054:115;:::o;29236:337::-;29346:1;29329:19;;:5;:19;;;29321:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29427:1;29408:21;;:7;:21;;;29400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29511:6;29481:11;:18;29493:5;29481:18;;;;;;;;;;;;;;;:27;29500:7;29481:27;;;;;;;;;;;;;;;:36;;;;29549:7;29533:32;;29542:5;29533:32;;;29558:6;29533:32;;;;;;:::i;:::-;;;;;;;;29236:337;;;:::o;29782:1281::-;29915:1;29906:6;:10;29898:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29988:18;:24;30007:4;29988:24;;;;;;;;;;;;;;;;;;;;;;;;;29987:25;:52;;;;;30017:18;:22;30036:2;30017:22;;;;;;;;;;;;;;;;;;;;;;;;;30016:23;29987:52;:75;;;;;30049:13;;;;;;;;;;;30043:19;;:2;:19;;;;29987:75;29984:184;;;30111:12;;30101:6;30085:13;30095:2;30085:9;:13::i;:::-;:22;;;;:::i;:::-;:38;;30077:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;29984:184;25109:19;30205:24;30223:4;30205:9;:24::i;:::-;:49;;:62;;;;;30259:8;;;;;;;;;;;30258:9;30205:62;:87;;;;;30279:13;;;;;;;;;;;30271:21;;:4;:21;;;;30205:87;:116;;;;;30297:18;:24;30316:4;30297:24;;;;;;;;;;;;;;;;;;;;;;;;;30296:25;30205:116;:143;;;;;30326:18;:22;30345:2;30326:22;;;;;;;;;;;;;;;;;;;;;;;;;30325:23;30205:143;30201:325;;;30376:4;30365:8;;:15;;;;;;;;;;;;;;;;;;30395:18;30416:24;30434:4;30416:9;:24::i;:::-;30395:45;;30455:28;30472:10;30455:16;:28::i;:::-;30509:5;30498:8;;:16;;;;;;;;;;;;;;;;;;30350:176;30201:325;30556:22;30598:20;30610:2;30613:4;30598:11;:20::i;:::-;30593:53;;30638:6;30620:24;;;;;:::i;:::-;;;30593:53;30676:14;30659:7;:13;30667:4;30659:13;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;30720:6;30703:23;;30835:18;:24;30854:4;30835:24;;;;;;;;;;;;;;;;;;;;;;;;;30834:25;:52;;;;;30864:18;:22;30883:2;30864:22;;;;;;;;;;;;;;;;;;;;;;;;;30863:23;30834:52;30831:124;;;30919:24;30930:6;30938:4;30919:10;:24::i;:::-;30902:41;;30831:124;30991:14;30976:7;:11;30984:2;30976:11;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;31036:2;31021:34;;31030:4;31021:34;;;31040:14;31021:34;;;;;;:::i;:::-;;;;;;;;29885:1178;29782:1281;;;:::o;31081:212::-;31143:17;31163:24;31180:6;31163:16;:24::i;:::-;31143:44;;31224:1;31212:9;:13;31208:77;;;31248:16;;;;;;;;;;;31240:34;;:45;31275:9;31240:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31208:77;31132:161;31081:212;:::o;29578:196::-;29651:4;29665:13;29680:18;:25;29699:5;29680:25;;;;;;;;;;;;;;;;;;;;;;;;;29679:26;29665:40;;29725:18;:26;29744:6;29725:26;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;;29756:8;29755:9;29725:39;29716:50;;;29578:196;;;;:::o;28662:421::-;28729:7;28749:20;28797:3;28781:13;;28772:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28749:51;;28812:20;28860:3;28844:13;;28835:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28812:51;;28916:12;28901;:27;;;;:::i;:::-;28875:7;:22;28891:4;28875:22;;;;;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;;;;;28968:4;28944:59;;28954:4;28944:59;;;28990:12;28975;:27;;;;:::i;:::-;28944:59;;;;;;:::i;:::-;;;;;;;;29059:15;29069:4;;;;;;;;;;;29059:9;:15::i;:::-;29046:12;29031;29022:6;:21;;;;:::i;:::-;:36;;;;:::i;:::-;:52;;;;:::i;:::-;29014:61;;;;28662:421;;;;:::o;31857:722::-;31921:7;31941:22;31966:21;31941:46;;32058:21;32096:1;32082:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32058:40;;32127:4;32109;32114:1;32109:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32153:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32143:4;32148:1;32143:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32188:62;32205:4;32220:15;;;;;;;;;;;32238:11;32188:8;:62::i;:::-;32289:15;;;;;;;;;;;:66;;;32370:11;32396:1;32440:4;32467;32487:15;32289:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32556:14;32532:21;:38;;;;:::i;:::-;32524:47;;;;31857:722;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:153::-;4221:9;4254:37;4285:5;4254:37;:::i;:::-;4241:50;;4144:153;;;:::o;4303:185::-;4417:64;4475:5;4417:64;:::i;:::-;4412:3;4405:77;4303:185;;:::o;4494:276::-;4614:4;4652:2;4641:9;4637:18;4629:26;;4665:98;4760:1;4749:9;4745:17;4736:6;4665:98;:::i;:::-;4494:276;;;;:::o;4776:118::-;4863:24;4881:5;4863:24;:::i;:::-;4858:3;4851:37;4776:118;;:::o;4900:222::-;4993:4;5031:2;5020:9;5016:18;5008:26;;5044:71;5112:1;5101:9;5097:17;5088:6;5044:71;:::i;:::-;4900:222;;;;:::o;5128:619::-;5205:6;5213;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5651:2;5677:53;5722:7;5713:6;5702:9;5698:22;5677:53;:::i;:::-;5667:63;;5622:118;5128:619;;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:180::-;7046:77;7043:1;7036:88;7143:4;7140:1;7133:15;7167:4;7164:1;7157:15;7184:194;7224:4;7244:20;7262:1;7244:20;:::i;:::-;7239:25;;7278:20;7296:1;7278:20;:::i;:::-;7273:25;;7322:1;7319;7315:9;7307:17;;7346:1;7340:4;7337:11;7334:37;;;7351:18;;:::i;:::-;7334:37;7184:194;;;;:::o;7384:191::-;7424:3;7443:20;7461:1;7443:20;:::i;:::-;7438:25;;7477:20;7495:1;7477:20;:::i;:::-;7472:25;;7520:1;7517;7513:9;7506:16;;7541:3;7538:1;7535:10;7532:36;;;7548:18;;:::i;:::-;7532:36;7384:191;;;;:::o;7581:182::-;7721:34;7717:1;7709:6;7705:14;7698:58;7581:182;:::o;7769:366::-;7911:3;7932:67;7996:2;7991:3;7932:67;:::i;:::-;7925:74;;8008:93;8097:3;8008:93;:::i;:::-;8126:2;8121:3;8117:12;8110:19;;7769:366;;;:::o;8141:419::-;8307:4;8345:2;8334:9;8330:18;8322:26;;8394:9;8388:4;8384:20;8380:1;8369:9;8365:17;8358:47;8422:131;8548:4;8422:131;:::i;:::-;8414:139;;8141:419;;;:::o;8566:225::-;8706:34;8702:1;8694:6;8690:14;8683:58;8775:8;8770:2;8762:6;8758:15;8751:33;8566:225;:::o;8797:366::-;8939:3;8960:67;9024:2;9019:3;8960:67;:::i;:::-;8953:74;;9036:93;9125:3;9036:93;:::i;:::-;9154:2;9149:3;9145:12;9138:19;;8797:366;;;:::o;9169:419::-;9335:4;9373:2;9362:9;9358:18;9350:26;;9422:9;9416:4;9412:20;9408:1;9397:9;9393:17;9386:47;9450:131;9576:4;9450:131;:::i;:::-;9442:139;;9169:419;;;:::o;9594:223::-;9734:34;9730:1;9722:6;9718:14;9711:58;9803:6;9798:2;9790:6;9786:15;9779:31;9594:223;:::o;9823:366::-;9965:3;9986:67;10050:2;10045:3;9986:67;:::i;:::-;9979:74;;10062:93;10151:3;10062:93;:::i;:::-;10180:2;10175:3;10171:12;10164:19;;9823:366;;;:::o;10195:419::-;10361:4;10399:2;10388:9;10384:18;10376:26;;10448:9;10442:4;10438:20;10434:1;10423:9;10419:17;10412:47;10476:131;10602:4;10476:131;:::i;:::-;10468:139;;10195:419;;;:::o;10620:221::-;10760:34;10756:1;10748:6;10744:14;10737:58;10829:4;10824:2;10816:6;10812:15;10805:29;10620:221;:::o;10847:366::-;10989:3;11010:67;11074:2;11069:3;11010:67;:::i;:::-;11003:74;;11086:93;11175:3;11086:93;:::i;:::-;11204:2;11199:3;11195:12;11188:19;;10847:366;;;:::o;11219:419::-;11385:4;11423:2;11412:9;11408:18;11400:26;;11472:9;11466:4;11462:20;11458:1;11447:9;11443:17;11436:47;11500:131;11626:4;11500:131;:::i;:::-;11492:139;;11219:419;;;:::o;11644:228::-;11784:34;11780:1;11772:6;11768:14;11761:58;11853:11;11848:2;11840:6;11836:15;11829:36;11644:228;:::o;11878:366::-;12020:3;12041:67;12105:2;12100:3;12041:67;:::i;:::-;12034:74;;12117:93;12206:3;12117:93;:::i;:::-;12235:2;12230:3;12226:12;12219:19;;11878:366;;;:::o;12250:419::-;12416:4;12454:2;12443:9;12439:18;12431:26;;12503:9;12497:4;12493:20;12489:1;12478:9;12474:17;12467:47;12531:131;12657:4;12531:131;:::i;:::-;12523:139;;12250:419;;;:::o;12675:227::-;12815:34;12811:1;12803:6;12799:14;12792:58;12884:10;12879:2;12871:6;12867:15;12860:35;12675:227;:::o;12908:366::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;12908:366;;;:::o;13280:419::-;13446:4;13484:2;13473:9;13469:18;13461:26;;13533:9;13527:4;13523:20;13519:1;13508:9;13504:17;13497:47;13561:131;13687:4;13561:131;:::i;:::-;13553:139;;13280:419;;;:::o;13705:410::-;13745:7;13768:20;13786:1;13768:20;:::i;:::-;13763:25;;13802:20;13820:1;13802:20;:::i;:::-;13797:25;;13857:1;13854;13850:9;13879:30;13897:11;13879:30;:::i;:::-;13868:41;;14058:1;14049:7;14045:15;14042:1;14039:22;14019:1;14012:9;13992:83;13969:139;;14088:18;;:::i;:::-;13969:139;13753:362;13705:410;;;;:::o;14121:180::-;14169:77;14166:1;14159:88;14266:4;14263:1;14256:15;14290:4;14287:1;14280:15;14307:185;14347:1;14364:20;14382:1;14364:20;:::i;:::-;14359:25;;14398:20;14416:1;14398:20;:::i;:::-;14393:25;;14437:1;14427:35;;14442:18;;:::i;:::-;14427:35;14484:1;14481;14477:9;14472:14;;14307:185;;;;:::o;14498:180::-;14546:77;14543:1;14536:88;14643:4;14640:1;14633:15;14667:4;14664:1;14657:15;14684:180;14732:77;14729:1;14722:88;14829:4;14826:1;14819:15;14853:4;14850:1;14843:15;14870:143;14927:5;14958:6;14952:13;14943:22;;14974:33;15001:5;14974:33;:::i;:::-;14870:143;;;;:::o;15019:351::-;15089:6;15138:2;15126:9;15117:7;15113:23;15109:32;15106:119;;;15144:79;;:::i;:::-;15106:119;15264:1;15289:64;15345:7;15336:6;15325:9;15321:22;15289:64;:::i;:::-;15279:74;;15235:128;15019:351;;;;:::o;15376:85::-;15421:7;15450:5;15439:16;;15376:85;;;:::o;15467:158::-;15525:9;15558:61;15576:42;15585:32;15611:5;15585:32;:::i;:::-;15576:42;:::i;:::-;15558:61;:::i;:::-;15545:74;;15467:158;;;:::o;15631:147::-;15726:45;15765:5;15726:45;:::i;:::-;15721:3;15714:58;15631:147;;:::o;15784:114::-;15851:6;15885:5;15879:12;15869:22;;15784:114;;;:::o;15904:184::-;16003:11;16037:6;16032:3;16025:19;16077:4;16072:3;16068:14;16053:29;;15904:184;;;;:::o;16094:132::-;16161:4;16184:3;16176:11;;16214:4;16209:3;16205:14;16197:22;;16094:132;;;:::o;16232:108::-;16309:24;16327:5;16309:24;:::i;:::-;16304:3;16297:37;16232:108;;:::o;16346:179::-;16415:10;16436:46;16478:3;16470:6;16436:46;:::i;:::-;16514:4;16509:3;16505:14;16491:28;;16346:179;;;;:::o;16531:113::-;16601:4;16633;16628:3;16624:14;16616:22;;16531:113;;;:::o;16680:732::-;16799:3;16828:54;16876:5;16828:54;:::i;:::-;16898:86;16977:6;16972:3;16898:86;:::i;:::-;16891:93;;17008:56;17058:5;17008:56;:::i;:::-;17087:7;17118:1;17103:284;17128:6;17125:1;17122:13;17103:284;;;17204:6;17198:13;17231:63;17290:3;17275:13;17231:63;:::i;:::-;17224:70;;17317:60;17370:6;17317:60;:::i;:::-;17307:70;;17163:224;17150:1;17147;17143:9;17138:14;;17103:284;;;17107:14;17403:3;17396:10;;16804:608;;;16680:732;;;;:::o;17418:831::-;17681:4;17719:3;17708:9;17704:19;17696:27;;17733:71;17801:1;17790:9;17786:17;17777:6;17733:71;:::i;:::-;17814:80;17890:2;17879:9;17875:18;17866:6;17814:80;:::i;:::-;17941:9;17935:4;17931:20;17926:2;17915:9;17911:18;17904:48;17969:108;18072:4;18063:6;17969:108;:::i;:::-;17961:116;;18087:72;18155:2;18144:9;18140:18;18131:6;18087:72;:::i;:::-;18169:73;18237:3;18226:9;18222:19;18213:6;18169:73;:::i;:::-;17418:831;;;;;;;;:::o

Swarm Source

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