ETH Price: $3,471.38 (+1.88%)

Token

Genesis (GEN)
 

Overview

Max Total Supply

671,760,558.35019101584867931 GEN

Holders

699

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10 GEN

Value
$0.00
0x0a4c79ce84202b03e95b7a692e5d728d83c44c76
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:
GenesisDAO

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : GenesisDAO.sol
// Website: https://genesisdao.io/
// X: https://x.com/0xGenesisDAO
// Discord: https://discord.gg/genesisdao


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

//                                         &                                       
//                           (&&&&&&&&&&&&&&&&&&&&&&&&&&&*                         
//                      &&&&&&&&&&&&&&&&&&&&&@,,@@@@&&&&&&&&&&&                    
//                  &&&&&&&&&&&&&&&&&&&&&,,,,,,,,,*@@@&&&&&&&&&&&&&                
//               &&&&&&&&&&&&&&&&&&&&,,,,,,,,,,,@@@@@@@&&&&&&&&&&&&&&&             
//            &&&&&&&&&&&&&&&&&@,,,,,,,,,,,@@@@@@@@@@&&&&&&&&&&&&&&&&&&&&          
//          &&&&&&&&&&&&&&@,,,,,,,,,,,*@@@@@@@@@@&&&&&&&&&@,,,,,#@@@@&&&&&&        
//        &&&&&&&&&&&&#,,,,,,,,,,,@@@@@@@@@@@&&&&&&&&&*,,,,,,,,,,,,@@@@&&&&&&      
//       &&&&&&&&&@..,,.,,,,,@@@@@@@@@@&&&&&&&&&&@,,,,,,,,,,,,,,,,,@@@@&&&&&&&     
//     #&&&&&&&&&&@..,,,,,%@@@@@@@@&&&&&&&&&@,,,,,,,,,,,,@@,,,,,,,,@@@@&&&&&&&&    
//    &&&&&&&&&&&&@..,,,,,&@@@@&&&&&&&&&..,,,,,,,,,,@@@@@@@@,,,,,,,@@@@&&&&&&&&&&  
//   &&&&&&&&&&&&&@..,,,,,&@@@@&&&&&&&&@..,,,,,@@@@@@@@@@@@@,,,,,,,@@@@&&&&&&&&&&* 
//   &&&&&&&&&&&&&@..,,,,,&@@@@&&&&&&&&@@@@@@@@@@@@@@&&&&&&@,,,,,,,@@@@&&&&&&&&&&& 
//  &&&&&&&&&&&&&&@..,,,,@@@@@@&&&&&&&&&&&&@@@@@@&&&&&&&&&&@@,,,,,,@@@@&&&&&&&&&&&&
//  &&&&&&&&&&&&&&@@@@@@@@//*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@@@&&&&&&&&&&&&
//  &&&&&&&&&&&&&&&@@@/**,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*@@@@@@@@@&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&@.....,.,,@@@@@@@@@@@@@@@@@@@@@@@@@@&&%@@@@@@/*,,@@@@&&&&&&&&&&&&
//  &&&&&&&&&&&&&&@....,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/**,,,,@@@@&&&&&&&&&&&&
//  &&&&&&&&&&&&&&@....,,,,@@@@&&&&&&&&&&&&&&&&&&&&&&&&&&&&@,,,,,,,@@@@&&&&&&&&&&&&
//  &&&&&&&&&&&&&&@....,,,,@@@@&&&&&&&&&@,,,,,@@@@&&&&&&&&&@,,,,,,,@@@@&&&&&&&&&&&&
//   &&&&&&&&&&&&&@....,,,,@@@@&&&&&,,,,,,,,,,,,@@@@&&&&&&&@,,,,,,,@@@@&&&&&&&&&&& 
//   &&&&&&&&&&&&&@....,,,,@@@@,,,,,,,,,,,,,,@@@@@@@&&&&&&&@,,,,,,,@@@@&&&&&&&&&&* 
//    &&&&&&&&&&&&@....,,,,,,,,,,,,,,,,,@@@@@@@@@@@&&&&&&&&,,,,,,,,@@@@&&&&&&&&&&  
//     /&&&&&&&&&&@....,,,,,,,,,,,@@@@@@@@@@@@&&&&&&&&@,,,,,,,,,,,,@@@@&&&&&&&&    
//       &&&&&&&&&@@....,,,,,@@@@@@@@@@@@&&&&&&&&&,,,,,,,,,,,,,@@@@@@@@&&&&&&&     
//        &&&&&&&&&@@@@@@@@@@@@@@@@&&&&&&&&&&@,,,,,,,,,,,,@@@@@@@@@@@&&&&&&&&      
//          &&&&&&&&&&@@@@@@@@&&&&&&&&&&@,,,,,,,,,,,,@@@@@@@@@@@&&&&&&&&&&&        
//            &&&&&&&&&&&&&&&&&&&&&&..,,,,,,,,,,(@@@@@@@@@@&&&&&&&&&&&&&&          
//               &&&&&&&&&&&&&&&&&@...,,,,,,@@@@@@@@@@&&&&&&&&&&&&&&&&             
//                  &&&&&&&&&&&&&&@@@@@@@@@@@@@@@@&&&&&&&&&&&&&&&&&                
//                      &&&&&&&&&&&&@@@@@@@@@&&&&&&&&&&&&&&&&&&                    
//                           *&&&&&&&&&&&&&&&&&&&&&&&&&&& 

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";

contract GenesisDAO is ERC20, Ownable
{
    address public treasury;
    address public stakingContract;
    address public presaleContract;
    bool public enableTrading = true;
    bool private _stakingContractSet = false;
    bool private _presaleContractSet = true;
    mapping(address => bool) private _isExcludedFromTaxes;
    mapping(address => bool) private _liquidityPools;
    address private _pairAddress;
    IUniswapV2Router02 public router;
    address private _routerAddr;

    uint256 public buyTax = 2;
    uint256 public sellTax = 3;
    uint256 public taxLiquidatePercentage = 90;

    receive() external payable {}

    constructor(address initialOwner, address uniswapRouterAddress, address _treasury)
        ERC20("Genesis", "GEN")
        Ownable(initialOwner)
    {
        treasury = _treasury;

        // Set up initial pair
        router = IUniswapV2Router02(uniswapRouterAddress);
        _routerAddr = uniswapRouterAddress;
        _pairAddress = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        _setLiquidityPool(address(_pairAddress), true);
    
        excludeFromTaxes(owner(), true);
        excludeFromTaxes(address(this), true);
        excludeFromTaxes(address(0xdead), true);
        excludeFromTaxes(treasury, true);

        _mint(owner(), 1_000_000_000 * 1e18);

        // Approve contract to swap for tax mechanism
        _approve(address(this), address(router), 1_000_000_000 * 1e18);
        _approve(owner(), address(router), 1_000_000_000 * 1e18);
    }    

    function _update(address from, address to, uint256 amount) internal override 
    {
        if (amount == 0) 
        {
            super._update(from, to, 0);
            return;
        }

        if (enableTrading == false && from != presaleContract && to != presaleContract)
        {
            revert("Token has not been launched yet!");
        }

        bool takeTax = true;

        if (_isExcludedFromTaxes[from] || _isExcludedFromTaxes[to]) 
        {
            takeTax = false;
        }

        uint256 taxes = 0;

        if (takeTax) {
            if (_liquidityPools[to] && sellTax > 0) {
                taxes = (amount * sellTax) / 100;
            } else if (_liquidityPools[from] && buyTax > 0) {
                taxes = (amount * buyTax) / 100;
            }

            amount -= taxes;
        }        

        if (taxes > 0)
        {
            // send x percentage to treasury in tokens.
            uint256 tokenTax = (taxes * (100 - taxLiquidatePercentage)) / 100;            
            super._update(from, treasury, tokenTax);         
                        
            // send remainder to token contract.
            uint256 ethTax = taxes - tokenTax;
            if (ethTax > 0) 
            {
                super._update(from, address(this), ethTax);
            }
        }

        // on a sell, liquidate any tokens in the token contract for ETH and send to treasury.
        if (_liquidityPools[to] && takeTax)
        {
            liquidateTokenTax();
        }

        super._update(from, to, amount);
    }   

    function liquidateTokenTax() internal 
    {
        uint tokenAmount = balanceOf(address(this));
        if (tokenAmount > 0) 
        {        
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = router.WETH();
            _approve(address(this), address(_routerAddr), tokenAmount);

            router.swapExactTokensForETH(
            tokenAmount,
            0,
            path,
            treasury,
            block.timestamp
            );
        }
    }

    function setLiquidityPool(address pair, bool isLiquidityPool) public onlyOwner 
    {
        _setLiquidityPool(pair, isLiquidityPool);
    }

    function _setLiquidityPool(address pair, bool isLiquidityPool) private 
    {
        _liquidityPools[pair] = isLiquidityPool;
    }

    function mint(address to, uint256 amount) external {
        require(msg.sender == stakingContract);
        _mint(to, amount);
    }

    function setStakingContract(address stakingContract_) external onlyOwner {
        require(_stakingContractSet == false, "Staking contract can only be set once, and is immutable afterwards");
        stakingContract = stakingContract_;
        excludeFromTaxes(stakingContract, true);
        _stakingContractSet = true;
    }

    function setPresaleContract(address presaleContract_) external onlyOwner {
        require(_presaleContractSet == false, "Presale contract can only be set once, and is immutable afterwards");
        presaleContract = presaleContract_;
        excludeFromTaxes(presaleContract, true);
        _presaleContractSet = true;
    }

    function setEnableTrading() external onlyOwner {
        require(_presaleContractSet == true, "Presale contract must be set up before enabling trades, otherwise there cannot be any liquidity yet");
        enableTrading = true;
    }

    function burn(uint256 amount) external 
    {
        _burn(msg.sender, amount);
    }

    function excludeFromTaxes(address account, bool excluded) public onlyOwner 
    {
        _isExcludedFromTaxes[account] = excluded;
    }

    function emergencyWithdraw(address token, address to, uint256 amount) public onlyOwner {
        IERC20(token).transfer(to, amount);
    }
    
    function emergencyEthWithdraw(address to, uint256 amount) public onlyOwner {
        payable(to).transfer(amount);
    }
}

File 2 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 3 of 11 : IUniswapV2Factory.sol
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;
}

File 4 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

File 5 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 7 of 11 : IUniswapV2Router01.sol
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);
}

File 8 of 11 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 9 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 10 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 11 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"address","name":"uniswapRouterAddress","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":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":[{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyEthWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setEnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isLiquidityPool","type":"bool"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"presaleContract_","type":"address"}],"name":"setPresaleContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContract_","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxLiquidatePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600860146101000a81548160ff0219169083151502179055505f600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff0219169083151502179055506002600e556003600f55605a60105534801561006e575f80fd5b506040516145c53803806145c58339818101604052810190610090919061138a565b826040518060400160405280600781526020017f47656e65736973000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47454e0000000000000000000000000000000000000000000000000000000000815250816003908161010c9190611614565b50806004908161011c9190611614565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361018f575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161018691906116f2565b60405180910390fd5b61019e8161059360201b60201c565b508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ed919061170b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610373573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610397919061170b565b6040518363ffffffff1660e01b81526004016103b4929190611736565b6020604051808303815f875af11580156103d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103f4919061170b565b600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610465600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161065660201b60201c565b6104836104766106ae60201b60201c565b60016106d660201b60201c565b6104943060016106d660201b60201c565b6104a761dead60016106d660201b60201c565b6104d960065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016106d660201b60201c565b6105026104ea6106ae60201b60201c565b6b033b2e3c9fd0803ce800000061073c60201b60201c565b61054030600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166b033b2e3c9fd0803ce80000006107c160201b60201c565b61058b6105516106ae60201b60201c565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166b033b2e3c9fd0803ce80000006107c160201b60201c565b505050611c6c565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106e46107d960201b60201c565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ac575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107a391906116f2565b60405180910390fd5b6107bd5f838361087260201b60201c565b5050565b6107d48383836001610c5c60201b60201c565b505050565b6107e7610e2b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1661080b6106ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161461087057610834610e2b60201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161086791906116f2565b60405180910390fd5b565b5f810361088f5761088a83835f610e3260201b60201c565b610c57565b5f1515600860149054906101000a900460ff1615151480156108fe575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610957575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e906117b7565b60405180910390fd5b5f6001905060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610a37575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610a40575f90505b5f8115610b4d57600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610a9e57505f600f54115b15610ac4576064600f5484610ab39190611802565b610abd9190611870565b9050610b3e565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610b1b57505f600e54115b15610b3d576064600e5484610b309190611802565b610b3a9190611870565b90505b5b8083610b4a91906118a0565b92505b5f811115610bdc575f60646010546064610b6791906118a0565b83610b729190611802565b610b7c9190611870565b9050610bb08660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e3260201b60201c565b5f8183610bbd91906118a0565b90505f811115610bd957610bd8873083610e3260201b60201c565b5b50505b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610c2f5750815b15610c4357610c4261104b60201b60201c565b5b610c54858585610e3260201b60201c565b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610ccc575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cc391906116f2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d3c575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d3391906116f2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e25578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e1c91906118e2565b60405180910390a35b50505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e82578060025f828254610e7691906118fb565b92505081905550610f50565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f0b578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f029392919061192e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f97578060025f8282540392505081905550610fe1565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103e91906118e2565b60405180910390a3505050565b5f61105b306112da60201b60201c565b90505f8111156112d7575f600267ffffffffffffffff811115611081576110806113e4565b5b6040519080825280602002602001820160405280156110af5781602001602082028036833780820191505090505b50905030815f815181106110c6576110c5611963565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561116a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061118e919061170b565b816001815181106111a2576111a1611963565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061120e30600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846107c160201b60201c565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611291959493929190611a80565b5f604051808303815f875af11580156112ac573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906112d49190611c25565b50505b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61135982611330565b9050919050565b6113698161134f565b8114611373575f80fd5b50565b5f8151905061138481611360565b92915050565b5f805f606084860312156113a1576113a0611328565b5b5f6113ae86828701611376565b93505060206113bf86828701611376565b92505060406113d086828701611376565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061145557607f821691505b60208210810361146857611467611411565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026114ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261148f565b6114d4868361148f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61151861151361150e846114ec565b6114f5565b6114ec565b9050919050565b5f819050919050565b611531836114fe565b61154561153d8261151f565b84845461149b565b825550505050565b5f90565b61155961154d565b611564818484611528565b505050565b5b818110156115875761157c5f82611551565b60018101905061156a565b5050565b601f8211156115cc5761159d8161146e565b6115a684611480565b810160208510156115b5578190505b6115c96115c185611480565b830182611569565b50505b505050565b5f82821c905092915050565b5f6115ec5f19846008026115d1565b1980831691505092915050565b5f61160483836115dd565b9150826002028217905092915050565b61161d826113da565b67ffffffffffffffff811115611636576116356113e4565b5b611640825461143e565b61164b82828561158b565b5f60209050601f83116001811461167c575f841561166a578287015190505b61167485826115f9565b8655506116db565b601f19841661168a8661146e565b5f5b828110156116b15784890151825560018201915060208501945060208101905061168c565b868310156116ce57848901516116ca601f8916826115dd565b8355505b6001600288020188555050505b505050505050565b6116ec8161134f565b82525050565b5f6020820190506117055f8301846116e3565b92915050565b5f602082840312156117205761171f611328565b5b5f61172d84828501611376565b91505092915050565b5f6040820190506117495f8301856116e3565b61175660208301846116e3565b9392505050565b5f82825260208201905092915050565b7f546f6b656e20686173206e6f74206265656e206c61756e6368656420796574215f82015250565b5f6117a160208361175d565b91506117ac8261176d565b602082019050919050565b5f6020820190508181035f8301526117ce81611795565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61180c826114ec565b9150611817836114ec565b9250828202611825816114ec565b9150828204841483151761183c5761183b6117d5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61187a826114ec565b9150611885836114ec565b92508261189557611894611843565b5b828204905092915050565b5f6118aa826114ec565b91506118b5836114ec565b92508282039050818111156118cd576118cc6117d5565b5b92915050565b6118dc816114ec565b82525050565b5f6020820190506118f55f8301846118d3565b92915050565b5f611905826114ec565b9150611910836114ec565b9250828201905080821115611928576119276117d5565b5b92915050565b5f6060820190506119415f8301866116e3565b61194e60208301856118d3565b61195b60408301846118d3565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f6119b36119ae6119a984611990565b6114f5565b6114ec565b9050919050565b6119c381611999565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6119fb8161134f565b82525050565b5f611a0c83836119f2565b60208301905092915050565b5f602082019050919050565b5f611a2e826119c9565b611a3881856119d3565b9350611a43836119e3565b805f5b83811015611a73578151611a5a8882611a01565b9750611a6583611a18565b925050600181019050611a46565b5085935050505092915050565b5f60a082019050611a935f8301886118d3565b611aa060208301876119ba565b8181036040830152611ab28186611a24565b9050611ac160608301856116e3565b611ace60808301846118d3565b9695505050505050565b5f80fd5b5f601f19601f8301169050919050565b611af582611adc565b810181811067ffffffffffffffff82111715611b1457611b136113e4565b5b80604052505050565b5f611b2661131f565b9050611b328282611aec565b919050565b5f67ffffffffffffffff821115611b5157611b506113e4565b5b602082029050602081019050919050565b5f80fd5b611b6f816114ec565b8114611b79575f80fd5b50565b5f81519050611b8a81611b66565b92915050565b5f611ba2611b9d84611b37565b611b1d565b90508083825260208201905060208402830185811115611bc557611bc4611b62565b5b835b81811015611bee5780611bda8882611b7c565b845260208401935050602081019050611bc7565b5050509392505050565b5f82601f830112611c0c57611c0b611ad8565b5b8151611c1c848260208601611b90565b91505092915050565b5f60208284031215611c3a57611c39611328565b5b5f82015167ffffffffffffffff811115611c5757611c5661132c565b5b611c6384828501611bf8565b91505092915050565b61294c80611c795f395ff3fe6080604052600436106101c5575f3560e01c8063715018a6116100f6578063c29c669a11610094578063e63ea40811610063578063e63ea4081461060e578063ee99205c14610636578063f2fde38b14610660578063f887ea4014610688576101cc565b8063c29c669a14610558578063cc1776d314610580578063d5e1fc1f146105aa578063dd62ed3e146105d2576101cc565b806395d89b41116100d057806395d89b41146104a25780639dd373b9146104cc578063a9059cbb146104f4578063a9bbd11414610530576101cc565b8063715018a6146104385780638a8c523c1461044e5780638da5cb5b14610478576101cc565b806342966c681161016357806361d027b31161013d57806361d027b31461039257806363d9df85146103bc57806364afd18b146103e657806370a08231146103fc576101cc565b806342966c681461031657806348c8c9af1461033e5780634f7041a514610368576101cc565b8063226036611161019f578063226036611461026057806323b872dd14610288578063313ce567146102c457806340c10f19146102ee576101cc565b806306fdde03146101d0578063095ea7b3146101fa57806318160ddd14610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106b2565b6040516101f19190611d81565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b9190611e3f565b610742565b60405161022d9190611e97565b60405180910390f35b348015610241575f80fd5b5061024a610764565b6040516102579190611ebf565b60405180910390f35b34801561026b575f80fd5b5061028660048036038101906102819190611f02565b61076d565b005b348015610293575f80fd5b506102ae60048036038101906102a99190611f40565b6107cd565b6040516102bb9190611e97565b60405180910390f35b3480156102cf575f80fd5b506102d86107fb565b6040516102e59190611fab565b60405180910390f35b3480156102f9575f80fd5b50610314600480360381019061030f9190611e3f565b610803565b005b348015610321575f80fd5b5061033c60048036038101906103379190611fc4565b610869565b005b348015610349575f80fd5b50610352610876565b60405161035f9190611ebf565b60405180910390f35b348015610373575f80fd5b5061037c61087c565b6040516103899190611ebf565b60405180910390f35b34801561039d575f80fd5b506103a6610882565b6040516103b39190611ffe565b60405180910390f35b3480156103c7575f80fd5b506103d06108a7565b6040516103dd9190611ffe565b60405180910390f35b3480156103f1575f80fd5b506103fa6108cc565b005b348015610407575f80fd5b50610422600480360381019061041d9190612017565b610947565b60405161042f9190611ebf565b60405180910390f35b348015610443575f80fd5b5061044c61098c565b005b348015610459575f80fd5b5061046261099f565b60405161046f9190611e97565b60405180910390f35b348015610483575f80fd5b5061048c6109b2565b6040516104999190611ffe565b60405180910390f35b3480156104ad575f80fd5b506104b66109da565b6040516104c39190611d81565b60405180910390f35b3480156104d7575f80fd5b506104f260048036038101906104ed9190612017565b610a6a565b005b3480156104ff575f80fd5b5061051a60048036038101906105159190611e3f565b610b51565b6040516105279190611e97565b60405180910390f35b34801561053b575f80fd5b5061055660048036038101906105519190612017565b610b73565b005b348015610563575f80fd5b5061057e60048036038101906105799190611f02565b610c5a565b005b34801561058b575f80fd5b50610594610c70565b6040516105a19190611ebf565b60405180910390f35b3480156105b5575f80fd5b506105d060048036038101906105cb9190611e3f565b610c76565b005b3480156105dd575f80fd5b506105f860048036038101906105f39190612042565b610cc6565b6040516106059190611ebf565b60405180910390f35b348015610619575f80fd5b50610634600480360381019061062f9190611f40565b610d48565b005b348015610641575f80fd5b5061064a610dd1565b6040516106579190611ffe565b60405180910390f35b34801561066b575f80fd5b5061068660048036038101906106819190612017565b610df6565b005b348015610693575f80fd5b5061069c610e7a565b6040516106a991906120db565b60405180910390f35b6060600380546106c190612121565b80601f01602080910402602001604051908101604052809291908181526020018280546106ed90612121565b80156107385780601f1061070f57610100808354040283529160200191610738565b820191905f5260205f20905b81548152906001019060200180831161071b57829003601f168201915b5050505050905090565b5f8061074c610e9f565b9050610759818585610ea6565b600191505092915050565b5f600254905090565b610775610eb8565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806107d7610e9f565b90506107e4858285610f3f565b6107ef858585610fd1565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461085b575f80fd5b61086582826110c1565b5050565b6108733382611140565b50565b60105481565b600e5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108d4610eb8565b60011515600860169054906101000a900460ff1615151461092a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109219061220d565b60405180910390fd5b6001600860146101000a81548160ff021916908315150217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610994610eb8565b61099d5f6111bf565b565b600860149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109e990612121565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590612121565b8015610a605780601f10610a3757610100808354040283529160200191610a60565b820191905f5260205f20905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b610a72610eb8565b5f1515600860159054906101000a900460ff16151514610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906122c1565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b3360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161076d565b6001600860156101000a81548160ff02191690831515021790555050565b5f80610b5b610e9f565b9050610b68818585610fd1565b600191505092915050565b610b7b610eb8565b5f1515600860169054906101000a900460ff16151514610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790612375565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c3c60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161076d565b6001600860166101000a81548160ff02191690831515021790555050565b610c62610eb8565b610c6c8282611282565b5050565b600f5481565b610c7e610eb8565b8173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610cc1573d5f803e3d5ffd5b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d50610eb8565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610d8b929190612393565b6020604051808303815f875af1158015610da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dcb91906123ce565b50505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dfe610eb8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e659190611ffe565b60405180910390fd5b610e77816111bf565b50565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610eb383838360016112da565b505050565b610ec0610e9f565b73ffffffffffffffffffffffffffffffffffffffff16610ede6109b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d57610f01610e9f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610f349190611ffe565b60405180910390fd5b565b5f610f4a8484610cc6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fcb5781811015610fbc578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fb3939291906123f9565b60405180910390fd5b610fca84848484035f6112da565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611041575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110389190611ffe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110a89190611ffe565b60405180910390fd5b6110bc8383836114a9565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611131575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111289190611ffe565b60405180910390fd5b61113c5f83836114a9565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b0575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111a79190611ffe565b60405180910390fd5b6111bb825f836114a9565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361134a575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113419190611ffe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ba575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113b19190611ffe565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114a3578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161149a9190611ebf565b60405180910390a35b50505050565b5f81036114c0576114bb83835f611875565b611870565b5f1515600860149054906101000a900460ff16151514801561152f575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611588575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612478565b60405180910390fd5b5f6001905060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611668575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611671575f90505b5f811561177e57600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156116cf57505f600f54115b156116f5576064600f54846116e491906124c3565b6116ee9190612531565b905061176f565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561174c57505f600e54115b1561176e576064600e548461176191906124c3565b61176b9190612531565b90505b5b808361177b9190612561565b92505b5f811115611801575f606460105460646117989190612561565b836117a391906124c3565b6117ad9190612531565b90506117db8660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611875565b5f81836117e89190612561565b90505f8111156117fe576117fd873083611875565b5b50505b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156118545750815b1561186257611861611a8e565b5b61186d858585611875565b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c5578060025f8282546118b99190612594565b92505081905550611993565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561194e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611945939291906123f9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119da578060025f8282540392505081905550611a24565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a819190611ebf565b60405180910390a3505050565b5f611a9830610947565b90505f811115611d0e575f600267ffffffffffffffff811115611abe57611abd6125c7565b5b604051908082528060200260200182016040528015611aec5781602001602082028036833780820191505090505b50905030815f81518110611b0357611b026125f4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcb9190612635565b81600181518110611bdf57611bde6125f4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c4530600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611cc8959493929190612750565b5f604051808303815f875af1158015611ce3573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611d0b91906128cf565b50505b50565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611d5382611d11565b611d5d8185611d1b565b9350611d6d818560208601611d2b565b611d7681611d39565b840191505092915050565b5f6020820190508181035f830152611d998184611d49565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ddb82611db2565b9050919050565b611deb81611dd1565b8114611df5575f80fd5b50565b5f81359050611e0681611de2565b92915050565b5f819050919050565b611e1e81611e0c565b8114611e28575f80fd5b50565b5f81359050611e3981611e15565b92915050565b5f8060408385031215611e5557611e54611daa565b5b5f611e6285828601611df8565b9250506020611e7385828601611e2b565b9150509250929050565b5f8115159050919050565b611e9181611e7d565b82525050565b5f602082019050611eaa5f830184611e88565b92915050565b611eb981611e0c565b82525050565b5f602082019050611ed25f830184611eb0565b92915050565b611ee181611e7d565b8114611eeb575f80fd5b50565b5f81359050611efc81611ed8565b92915050565b5f8060408385031215611f1857611f17611daa565b5b5f611f2585828601611df8565b9250506020611f3685828601611eee565b9150509250929050565b5f805f60608486031215611f5757611f56611daa565b5b5f611f6486828701611df8565b9350506020611f7586828701611df8565b9250506040611f8686828701611e2b565b9150509250925092565b5f60ff82169050919050565b611fa581611f90565b82525050565b5f602082019050611fbe5f830184611f9c565b92915050565b5f60208284031215611fd957611fd8611daa565b5b5f611fe684828501611e2b565b91505092915050565b611ff881611dd1565b82525050565b5f6020820190506120115f830184611fef565b92915050565b5f6020828403121561202c5761202b611daa565b5b5f61203984828501611df8565b91505092915050565b5f806040838503121561205857612057611daa565b5b5f61206585828601611df8565b925050602061207685828601611df8565b9150509250929050565b5f819050919050565b5f6120a361209e61209984611db2565b612080565b611db2565b9050919050565b5f6120b482612089565b9050919050565b5f6120c5826120aa565b9050919050565b6120d5816120bb565b82525050565b5f6020820190506120ee5f8301846120cc565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061213857607f821691505b60208210810361214b5761214a6120f4565b5b50919050565b7f50726573616c6520636f6e7472616374206d75737420626520736574207570205f8201527f6265666f726520656e61626c696e67207472616465732c206f7468657277697360208201527f652074686572652063616e6e6f7420626520616e79206c69717569646974792060408201527f7965740000000000000000000000000000000000000000000000000000000000606082015250565b5f6121f7606383611d1b565b915061220282612151565b608082019050919050565b5f6020820190508181035f830152612224816121eb565b9050919050565b7f5374616b696e6720636f6e74726163742063616e206f6e6c79206265207365745f8201527f206f6e63652c20616e6420697320696d6d757461626c6520616674657277617260208201527f6473000000000000000000000000000000000000000000000000000000000000604082015250565b5f6122ab604283611d1b565b91506122b68261222b565b606082019050919050565b5f6020820190508181035f8301526122d88161229f565b9050919050565b7f50726573616c6520636f6e74726163742063616e206f6e6c79206265207365745f8201527f206f6e63652c20616e6420697320696d6d757461626c6520616674657277617260208201527f6473000000000000000000000000000000000000000000000000000000000000604082015250565b5f61235f604283611d1b565b915061236a826122df565b606082019050919050565b5f6020820190508181035f83015261238c81612353565b9050919050565b5f6040820190506123a65f830185611fef565b6123b36020830184611eb0565b9392505050565b5f815190506123c881611ed8565b92915050565b5f602082840312156123e3576123e2611daa565b5b5f6123f0848285016123ba565b91505092915050565b5f60608201905061240c5f830186611fef565b6124196020830185611eb0565b6124266040830184611eb0565b949350505050565b7f546f6b656e20686173206e6f74206265656e206c61756e6368656420796574215f82015250565b5f612462602083611d1b565b915061246d8261242e565b602082019050919050565b5f6020820190508181035f83015261248f81612456565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124cd82611e0c565b91506124d883611e0c565b92508282026124e681611e0c565b915082820484148315176124fd576124fc612496565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61253b82611e0c565b915061254683611e0c565b92508261255657612555612504565b5b828204905092915050565b5f61256b82611e0c565b915061257683611e0c565b925082820390508181111561258e5761258d612496565b5b92915050565b5f61259e82611e0c565b91506125a983611e0c565b92508282019050808211156125c1576125c0612496565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061262f81611de2565b92915050565b5f6020828403121561264a57612649611daa565b5b5f61265784828501612621565b91505092915050565b5f819050919050565b5f61268361267e61267984612660565b612080565b611e0c565b9050919050565b61269381612669565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6126cb81611dd1565b82525050565b5f6126dc83836126c2565b60208301905092915050565b5f602082019050919050565b5f6126fe82612699565b61270881856126a3565b9350612713836126b3565b805f5b8381101561274357815161272a88826126d1565b9750612735836126e8565b925050600181019050612716565b5085935050505092915050565b5f60a0820190506127635f830188611eb0565b612770602083018761268a565b818103604083015261278281866126f4565b90506127916060830185611fef565b61279e6080830184611eb0565b9695505050505050565b5f80fd5b6127b582611d39565b810181811067ffffffffffffffff821117156127d4576127d36125c7565b5b80604052505050565b5f6127e6611da1565b90506127f282826127ac565b919050565b5f67ffffffffffffffff821115612811576128106125c7565b5b602082029050602081019050919050565b5f80fd5b5f8151905061283481611e15565b92915050565b5f61284c612847846127f7565b6127dd565b9050808382526020820190506020840283018581111561286f5761286e612822565b5b835b8181101561289857806128848882612826565b845260208401935050602081019050612871565b5050509392505050565b5f82601f8301126128b6576128b56127a8565b5b81516128c684826020860161283a565b91505092915050565b5f602082840312156128e4576128e3611daa565b5b5f82015167ffffffffffffffff81111561290157612900611dae565b5b61290d848285016128a2565b9150509291505056fea2646970667358221220af9eb6fc3d097124aed8031067863ccf252f6aae0380b0cc149e87a975ee2c2a64736f6c634300081a003300000000000000000000000044ad33c2bcf017a7ae8cabccd96f352cc050a31c0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000031b6a4dca90fabf29879143ca5bb2c10e8a11e4c

Deployed Bytecode

0x6080604052600436106101c5575f3560e01c8063715018a6116100f6578063c29c669a11610094578063e63ea40811610063578063e63ea4081461060e578063ee99205c14610636578063f2fde38b14610660578063f887ea4014610688576101cc565b8063c29c669a14610558578063cc1776d314610580578063d5e1fc1f146105aa578063dd62ed3e146105d2576101cc565b806395d89b41116100d057806395d89b41146104a25780639dd373b9146104cc578063a9059cbb146104f4578063a9bbd11414610530576101cc565b8063715018a6146104385780638a8c523c1461044e5780638da5cb5b14610478576101cc565b806342966c681161016357806361d027b31161013d57806361d027b31461039257806363d9df85146103bc57806364afd18b146103e657806370a08231146103fc576101cc565b806342966c681461031657806348c8c9af1461033e5780634f7041a514610368576101cc565b8063226036611161019f578063226036611461026057806323b872dd14610288578063313ce567146102c457806340c10f19146102ee576101cc565b806306fdde03146101d0578063095ea7b3146101fa57806318160ddd14610236576101cc565b366101cc57005b5f80fd5b3480156101db575f80fd5b506101e46106b2565b6040516101f19190611d81565b60405180910390f35b348015610205575f80fd5b50610220600480360381019061021b9190611e3f565b610742565b60405161022d9190611e97565b60405180910390f35b348015610241575f80fd5b5061024a610764565b6040516102579190611ebf565b60405180910390f35b34801561026b575f80fd5b5061028660048036038101906102819190611f02565b61076d565b005b348015610293575f80fd5b506102ae60048036038101906102a99190611f40565b6107cd565b6040516102bb9190611e97565b60405180910390f35b3480156102cf575f80fd5b506102d86107fb565b6040516102e59190611fab565b60405180910390f35b3480156102f9575f80fd5b50610314600480360381019061030f9190611e3f565b610803565b005b348015610321575f80fd5b5061033c60048036038101906103379190611fc4565b610869565b005b348015610349575f80fd5b50610352610876565b60405161035f9190611ebf565b60405180910390f35b348015610373575f80fd5b5061037c61087c565b6040516103899190611ebf565b60405180910390f35b34801561039d575f80fd5b506103a6610882565b6040516103b39190611ffe565b60405180910390f35b3480156103c7575f80fd5b506103d06108a7565b6040516103dd9190611ffe565b60405180910390f35b3480156103f1575f80fd5b506103fa6108cc565b005b348015610407575f80fd5b50610422600480360381019061041d9190612017565b610947565b60405161042f9190611ebf565b60405180910390f35b348015610443575f80fd5b5061044c61098c565b005b348015610459575f80fd5b5061046261099f565b60405161046f9190611e97565b60405180910390f35b348015610483575f80fd5b5061048c6109b2565b6040516104999190611ffe565b60405180910390f35b3480156104ad575f80fd5b506104b66109da565b6040516104c39190611d81565b60405180910390f35b3480156104d7575f80fd5b506104f260048036038101906104ed9190612017565b610a6a565b005b3480156104ff575f80fd5b5061051a60048036038101906105159190611e3f565b610b51565b6040516105279190611e97565b60405180910390f35b34801561053b575f80fd5b5061055660048036038101906105519190612017565b610b73565b005b348015610563575f80fd5b5061057e60048036038101906105799190611f02565b610c5a565b005b34801561058b575f80fd5b50610594610c70565b6040516105a19190611ebf565b60405180910390f35b3480156105b5575f80fd5b506105d060048036038101906105cb9190611e3f565b610c76565b005b3480156105dd575f80fd5b506105f860048036038101906105f39190612042565b610cc6565b6040516106059190611ebf565b60405180910390f35b348015610619575f80fd5b50610634600480360381019061062f9190611f40565b610d48565b005b348015610641575f80fd5b5061064a610dd1565b6040516106579190611ffe565b60405180910390f35b34801561066b575f80fd5b5061068660048036038101906106819190612017565b610df6565b005b348015610693575f80fd5b5061069c610e7a565b6040516106a991906120db565b60405180910390f35b6060600380546106c190612121565b80601f01602080910402602001604051908101604052809291908181526020018280546106ed90612121565b80156107385780601f1061070f57610100808354040283529160200191610738565b820191905f5260205f20905b81548152906001019060200180831161071b57829003601f168201915b5050505050905090565b5f8061074c610e9f565b9050610759818585610ea6565b600191505092915050565b5f600254905090565b610775610eb8565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806107d7610e9f565b90506107e4858285610f3f565b6107ef858585610fd1565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461085b575f80fd5b61086582826110c1565b5050565b6108733382611140565b50565b60105481565b600e5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108d4610eb8565b60011515600860169054906101000a900460ff1615151461092a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109219061220d565b60405180910390fd5b6001600860146101000a81548160ff021916908315150217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610994610eb8565b61099d5f6111bf565b565b600860149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109e990612121565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590612121565b8015610a605780601f10610a3757610100808354040283529160200191610a60565b820191905f5260205f20905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b610a72610eb8565b5f1515600860159054906101000a900460ff16151514610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906122c1565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b3360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161076d565b6001600860156101000a81548160ff02191690831515021790555050565b5f80610b5b610e9f565b9050610b68818585610fd1565b600191505092915050565b610b7b610eb8565b5f1515600860169054906101000a900460ff16151514610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790612375565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c3c60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161076d565b6001600860166101000a81548160ff02191690831515021790555050565b610c62610eb8565b610c6c8282611282565b5050565b600f5481565b610c7e610eb8565b8173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610cc1573d5f803e3d5ffd5b505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d50610eb8565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610d8b929190612393565b6020604051808303815f875af1158015610da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dcb91906123ce565b50505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dfe610eb8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e6e575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e659190611ffe565b60405180910390fd5b610e77816111bf565b50565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610eb383838360016112da565b505050565b610ec0610e9f565b73ffffffffffffffffffffffffffffffffffffffff16610ede6109b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d57610f01610e9f565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610f349190611ffe565b60405180910390fd5b565b5f610f4a8484610cc6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fcb5781811015610fbc578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fb3939291906123f9565b60405180910390fd5b610fca84848484035f6112da565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611041575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110389190611ffe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110a89190611ffe565b60405180910390fd5b6110bc8383836114a9565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611131575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111289190611ffe565b60405180910390fd5b61113c5f83836114a9565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b0575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111a79190611ffe565b60405180910390fd5b6111bb825f836114a9565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361134a575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113419190611ffe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ba575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113b19190611ffe565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114a3578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161149a9190611ebf565b60405180910390a35b50505050565b5f81036114c0576114bb83835f611875565b611870565b5f1515600860149054906101000a900460ff16151514801561152f575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611588575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612478565b60405180910390fd5b5f6001905060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611668575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611671575f90505b5f811561177e57600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156116cf57505f600f54115b156116f5576064600f54846116e491906124c3565b6116ee9190612531565b905061176f565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561174c57505f600e54115b1561176e576064600e548461176191906124c3565b61176b9190612531565b90505b5b808361177b9190612561565b92505b5f811115611801575f606460105460646117989190612561565b836117a391906124c3565b6117ad9190612531565b90506117db8660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611875565b5f81836117e89190612561565b90505f8111156117fe576117fd873083611875565b5b50505b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156118545750815b1561186257611861611a8e565b5b61186d858585611875565b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c5578060025f8282546118b99190612594565b92505081905550611993565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561194e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611945939291906123f9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119da578060025f8282540392505081905550611a24565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a819190611ebf565b60405180910390a3505050565b5f611a9830610947565b90505f811115611d0e575f600267ffffffffffffffff811115611abe57611abd6125c7565b5b604051908082528060200260200182016040528015611aec5781602001602082028036833780820191505090505b50905030815f81518110611b0357611b026125f4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcb9190612635565b81600181518110611bdf57611bde6125f4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c4530600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610ea6565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611cc8959493929190612750565b5f604051808303815f875af1158015611ce3573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611d0b91906128cf565b50505b50565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611d5382611d11565b611d5d8185611d1b565b9350611d6d818560208601611d2b565b611d7681611d39565b840191505092915050565b5f6020820190508181035f830152611d998184611d49565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ddb82611db2565b9050919050565b611deb81611dd1565b8114611df5575f80fd5b50565b5f81359050611e0681611de2565b92915050565b5f819050919050565b611e1e81611e0c565b8114611e28575f80fd5b50565b5f81359050611e3981611e15565b92915050565b5f8060408385031215611e5557611e54611daa565b5b5f611e6285828601611df8565b9250506020611e7385828601611e2b565b9150509250929050565b5f8115159050919050565b611e9181611e7d565b82525050565b5f602082019050611eaa5f830184611e88565b92915050565b611eb981611e0c565b82525050565b5f602082019050611ed25f830184611eb0565b92915050565b611ee181611e7d565b8114611eeb575f80fd5b50565b5f81359050611efc81611ed8565b92915050565b5f8060408385031215611f1857611f17611daa565b5b5f611f2585828601611df8565b9250506020611f3685828601611eee565b9150509250929050565b5f805f60608486031215611f5757611f56611daa565b5b5f611f6486828701611df8565b9350506020611f7586828701611df8565b9250506040611f8686828701611e2b565b9150509250925092565b5f60ff82169050919050565b611fa581611f90565b82525050565b5f602082019050611fbe5f830184611f9c565b92915050565b5f60208284031215611fd957611fd8611daa565b5b5f611fe684828501611e2b565b91505092915050565b611ff881611dd1565b82525050565b5f6020820190506120115f830184611fef565b92915050565b5f6020828403121561202c5761202b611daa565b5b5f61203984828501611df8565b91505092915050565b5f806040838503121561205857612057611daa565b5b5f61206585828601611df8565b925050602061207685828601611df8565b9150509250929050565b5f819050919050565b5f6120a361209e61209984611db2565b612080565b611db2565b9050919050565b5f6120b482612089565b9050919050565b5f6120c5826120aa565b9050919050565b6120d5816120bb565b82525050565b5f6020820190506120ee5f8301846120cc565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061213857607f821691505b60208210810361214b5761214a6120f4565b5b50919050565b7f50726573616c6520636f6e7472616374206d75737420626520736574207570205f8201527f6265666f726520656e61626c696e67207472616465732c206f7468657277697360208201527f652074686572652063616e6e6f7420626520616e79206c69717569646974792060408201527f7965740000000000000000000000000000000000000000000000000000000000606082015250565b5f6121f7606383611d1b565b915061220282612151565b608082019050919050565b5f6020820190508181035f830152612224816121eb565b9050919050565b7f5374616b696e6720636f6e74726163742063616e206f6e6c79206265207365745f8201527f206f6e63652c20616e6420697320696d6d757461626c6520616674657277617260208201527f6473000000000000000000000000000000000000000000000000000000000000604082015250565b5f6122ab604283611d1b565b91506122b68261222b565b606082019050919050565b5f6020820190508181035f8301526122d88161229f565b9050919050565b7f50726573616c6520636f6e74726163742063616e206f6e6c79206265207365745f8201527f206f6e63652c20616e6420697320696d6d757461626c6520616674657277617260208201527f6473000000000000000000000000000000000000000000000000000000000000604082015250565b5f61235f604283611d1b565b915061236a826122df565b606082019050919050565b5f6020820190508181035f83015261238c81612353565b9050919050565b5f6040820190506123a65f830185611fef565b6123b36020830184611eb0565b9392505050565b5f815190506123c881611ed8565b92915050565b5f602082840312156123e3576123e2611daa565b5b5f6123f0848285016123ba565b91505092915050565b5f60608201905061240c5f830186611fef565b6124196020830185611eb0565b6124266040830184611eb0565b949350505050565b7f546f6b656e20686173206e6f74206265656e206c61756e6368656420796574215f82015250565b5f612462602083611d1b565b915061246d8261242e565b602082019050919050565b5f6020820190508181035f83015261248f81612456565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124cd82611e0c565b91506124d883611e0c565b92508282026124e681611e0c565b915082820484148315176124fd576124fc612496565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61253b82611e0c565b915061254683611e0c565b92508261255657612555612504565b5b828204905092915050565b5f61256b82611e0c565b915061257683611e0c565b925082820390508181111561258e5761258d612496565b5b92915050565b5f61259e82611e0c565b91506125a983611e0c565b92508282019050808211156125c1576125c0612496565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061262f81611de2565b92915050565b5f6020828403121561264a57612649611daa565b5b5f61265784828501612621565b91505092915050565b5f819050919050565b5f61268361267e61267984612660565b612080565b611e0c565b9050919050565b61269381612669565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6126cb81611dd1565b82525050565b5f6126dc83836126c2565b60208301905092915050565b5f602082019050919050565b5f6126fe82612699565b61270881856126a3565b9350612713836126b3565b805f5b8381101561274357815161272a88826126d1565b9750612735836126e8565b925050600181019050612716565b5085935050505092915050565b5f60a0820190506127635f830188611eb0565b612770602083018761268a565b818103604083015261278281866126f4565b90506127916060830185611fef565b61279e6080830184611eb0565b9695505050505050565b5f80fd5b6127b582611d39565b810181811067ffffffffffffffff821117156127d4576127d36125c7565b5b80604052505050565b5f6127e6611da1565b90506127f282826127ac565b919050565b5f67ffffffffffffffff821115612811576128106125c7565b5b602082029050602081019050919050565b5f80fd5b5f8151905061283481611e15565b92915050565b5f61284c612847846127f7565b6127dd565b9050808382526020820190506020840283018581111561286f5761286e612822565b5b835b8181101561289857806128848882612826565b845260208401935050602081019050612871565b5050509392505050565b5f82601f8301126128b6576128b56127a8565b5b81516128c684826020860161283a565b91505092915050565b5f602082840312156128e4576128e3611daa565b5b5f82015167ffffffffffffffff81111561290157612900611dae565b5b61290d848285016128a2565b9150509291505056fea2646970667358221220af9eb6fc3d097124aed8031067863ccf252f6aae0380b0cc149e87a975ee2c2a64736f6c634300081a0033

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

00000000000000000000000044ad33c2bcf017a7ae8cabccd96f352cc050a31c0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000031b6a4dca90fabf29879143ca5bb2c10e8a11e4c

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x44aD33C2bCf017A7ae8cAbCcd96f352Cc050A31C
Arg [1] : uniswapRouterAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : _treasury (address): 0x31B6A4DCA90FABf29879143CA5bB2c10E8A11e4c

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000044ad33c2bcf017a7ae8cabccd96f352cc050a31c
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 00000000000000000000000031b6a4dca90fabf29879143ca5bb2c10e8a11e4c


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.