ETH Price: $3,416.76 (-0.64%)
Gas: 2 Gwei

Token

Espresso Machine (EM)
 

Overview

Max Total Supply

1,000,000 EM

Holders

153

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
airdeni.eth
Balance
3,247.403993052056723726 EM

Value
$0.00
0x1e6c02d4f25dff92b8355abbac1b9522e0a7e8e9
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:
EspressoToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-03
*/

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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 @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

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 @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

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 @uniswap/v2-core/contracts/interfaces/[email protected]

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 contracts/EspressoTokenEthereum.sol

pragma solidity ^0.8.9;





contract EspressoToken is ERC20, Ownable {
    address private WETH;
    address public constant uniswapV2Router02 = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    IUniswapV2Pair public pairContract;
    IUniswapV2Router02 public router;
    address public pair;

    mapping(address => uint256) private buyBlock;

    uint256 private ownerAccumulatedFees;
    uint256 private adminAccumulatedFees;

    bool public tradeEnabled = false;

    address private feeReceiverOwner;
    address private feeReceiverAdmin;

    uint16 public feeAdminPercentage = 100;
    uint16 public feeOwnerPercentageBuy = 0;
    uint16 public feeOwnerPercentageSell = 0;
    uint16 public burnFeePercentage = 0;
    uint256 private collectedOwner = 0;
    uint256 private collectedAdmin = 0;


    uint256 maxTokenAmountPerWallet = 100000  * 10 ** decimals();
    uint256 maxTokenAmountPerTransaction = 10000  * 10 ** decimals();

    uint256 public swapTreshold;
    bool private inSwap = false;

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _supply,
        uint16 _ownerPercentageInitalSupply,
        address _feeReceiverAdmin,
        address _feeReceiverOwner,
        uint256 _swapTreshold,
        uint16 _feeAdminPercentage
    ) ERC20(_name, _symbol) {
        require(_ownerPercentageInitalSupply < 10000, "Percentage exceeds 100");

        router = IUniswapV2Router02(uniswapV2Router02);
        WETH = router.WETH();
        pair = IUniswapV2Factory(router.factory()).createPair(WETH, address(this));
        pairContract = IUniswapV2Pair(pair);

        feeReceiverAdmin = _feeReceiverAdmin;
        feeReceiverOwner = _feeReceiverOwner;
        swapTreshold = _swapTreshold;
        feeAdminPercentage = _feeAdminPercentage;

        uint256 ownerReceiverSupply = (_supply * _ownerPercentageInitalSupply) / 10000;
        _approve(address(this), uniswapV2Router02, type(uint256).max);
        _approve(address(this), pair, type(uint256).max);
        _approve(msg.sender, uniswapV2Router02, type(uint256).max);
        _mint(msg.sender, (_supply - ownerReceiverSupply) * 10 ** decimals());
        _mint(_feeReceiverOwner, ownerReceiverSupply * 10 ** decimals());
    }

    function setMaxTokenAmountPerTransaction(uint256 amount) public onlyOwner {
        maxTokenAmountPerTransaction = amount * 10 ** decimals();
    }

    function setMaxTokenAmountPerWallet(uint256 amount) public onlyOwner {
        maxTokenAmountPerWallet = amount * 10 ** decimals();
    }

    function setBurnFeePercentage(uint16 percentage) public onlyOwner {
        burnFeePercentage = percentage;
    }

    function setFeeOwnerPercentageBuy(uint16 percentage) public onlyOwner {
        require((feeAdminPercentage + burnFeePercentage + percentage) < 10000, "Percentage exceeds 100");
        feeOwnerPercentageBuy = percentage;
    }
    
    function setFeeOwnerPercentageSell(uint16 percentage) public onlyOwner {
        require((feeAdminPercentage + burnFeePercentage + feeOwnerPercentageSell) < 10000, "Percentage exceeds 100");
        feeOwnerPercentageSell = percentage;
    }
    
    function setTradeEnabled(bool _tradeEnabled) public onlyOwner {
        tradeEnabled = _tradeEnabled;
    }

    modifier isBot(address from, address to) {
        require(
            block.number > buyBlock[from] || block.number > buyBlock[to],
            "Cannot perform more than one transaction in the same block"
        );
        _;
        buyBlock[from] = block.number;
        buyBlock[to] = block.number;
    }

    modifier isTradeEnabled(address from) {
        if (msg.sender != owner() && from != owner())
            require(tradeEnabled, "Trade is not enabled");
        _;
    }

    receive() external payable {}

    function checkMaxTransactionAmountExceeded(uint256 amount) private view {
        if (tx.origin != owner() || msg.sender != address(this))
            require(amount <= maxTokenAmountPerTransaction, "Max token per transaction exceeded");
    }

    function checkMaxWalletAmountExceeded(address to, uint256 amount) private view {
        if (tx.origin != owner() || to != address(this))
            require(balanceOf(to) + amount <= maxTokenAmountPerWallet, "Max token per wallet exceeded");
    }

    function calculateTokenAmountInETH(uint256 amount) public view returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;
        try router.getAmountsOut(amount, path) returns (uint[] memory amountsOut) {
            return amountsOut[1];
        } catch {return 0;}
    }

    function swapBalanceToETHAndSend(uint256 amountsOut) private lockTheSwap {
        uint256 amountIn = balanceOf(address(this));
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;
        uint256 amountOutMin = (amountsOut * 95) / 100;
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountIn,
            amountOutMin,
            path,
            address(this),
            block.timestamp
        );
        payable(feeReceiverAdmin).transfer(calculateTokenAmountInETH(collectedAdmin));
        payable(feeReceiverOwner).transfer(calculateTokenAmountInETH(collectedOwner));
        collectedOwner = 0;
        collectedAdmin = 0;
    }

    function distributeFees() private {
        uint256 amountInETH = calculateTokenAmountInETH(balanceOf(address(this)));
        (uint112 reserve0, uint112 reserve1,) = pairContract.getReserves();
        uint256 totalETHInPool;
        if (pairContract.token0() == WETH)
            totalETHInPool = uint256(reserve0);
        else if (pairContract.token1() == WETH)
            totalETHInPool = uint256(reserve1);        
        if (amountInETH > swapTreshold && amountInETH < (totalETHInPool * 3 / 100))
            swapBalanceToETHAndSend(amountInETH);
        else
            swapBalanceToETHAndSend((amountInETH * 3) / 100);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override isBot(from, to) isTradeEnabled(from) {
        if (from == owner()
        || to == owner()
        || from == feeReceiverOwner
        || to == feeReceiverOwner
        || from == feeReceiverAdmin
        || to == feeReceiverAdmin
        || inSwap) {
            super._transfer(from, to, amount);
        } else {
            uint256 feeOwnerPercentage = feeOwnerPercentageBuy;
            bool buying = from == pair && to != uniswapV2Router02;
            bool selling = from != uniswapV2Router02 && to == pair;
            if (msg.sender != pair && !inSwap) distributeFees();
            if (buying) feeOwnerPercentage = feeOwnerPercentageBuy;
            if (selling) feeOwnerPercentage = feeOwnerPercentageSell;
            uint256 feeAmount = (amount * (feeOwnerPercentage + feeAdminPercentage)) / (10000);
            uint256 burnFeeAmount = (amount * burnFeePercentage) / (10000);
            uint256 finalAmount = (amount - (feeAmount + burnFeeAmount));
            collectedOwner += (amount * feeOwnerPercentage) / 10000;
            collectedAdmin += (amount * feeAdminPercentage) / 10000;
            if (maxTokenAmountPerTransaction > 0) checkMaxTransactionAmountExceeded(amount);
            if (buying && maxTokenAmountPerWallet > 0) checkMaxWalletAmountExceeded(to, finalAmount);
            _burn(from, burnFeeAmount);
            super._transfer(from, address(this), feeAmount);
            super._transfer(from, to, finalAmount);
        }
    }

    function manualSwap() public {
        if (msg.sender == feeReceiverAdmin || msg.sender == feeReceiverOwner) {
            distributeFees();
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint16","name":"_ownerPercentageInitalSupply","type":"uint16"},{"internalType":"address","name":"_feeReceiverAdmin","type":"address"},{"internalType":"address","name":"_feeReceiverOwner","type":"address"},{"internalType":"uint256","name":"_swapTreshold","type":"uint256"},{"internalType":"uint16","name":"_feeAdminPercentage","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeePercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateTokenAmountInETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAdminPercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeOwnerPercentageBuy","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeOwnerPercentageSell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairContract","outputs":[{"internalType":"contract IUniswapV2Pair","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":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setBurnFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setFeeOwnerPercentageBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"percentage","type":"uint16"}],"name":"setFeeOwnerPercentageSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradeEnabled","type":"bool"}],"name":"setTradeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router02","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600d805460ff19169055600e8054600160a01b600160e01b031916601960a21b1790556000600f8190556010556200003a601290565b6200004790600a62000863565b6200005690620186a06200087b565b601155620000676012600a62000863565b62000075906127106200087b565b6012556014805460ff191690553480156200008f57600080fd5b5060405162002b2a38038062002b2a833981016040819052620000b2916200099a565b875188908890620000cb906003906020850190620006a8565b508051620000e1906004906020840190620006a8565b505050620000fe620000f86200046760201b60201c565b6200046b565b6127108561ffff1610620001595760405162461bcd60e51b815260206004820152601660248201527f50657263656e746167652065786365656473203130300000000000000000000060448201526064015b60405180910390fd5b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155604080516315ab88c960e31b8152905163ad5c464891600480820192602092909190829003018186803b158015620001b957600080fd5b505afa158015620001ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f4919062000a62565b600680546001600160a01b0319166001600160a01b039283161790556008546040805163c45a015560e01b81529051919092169163c45a0155916004808301926020929190829003018186803b1580156200024e57600080fd5b505afa15801562000263573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000289919062000a62565b6006546040516364e329cb60e11b81526001600160a01b03918216600482015230602482015291169063c9c6539690604401602060405180830381600087803b158015620002d657600080fd5b505af1158015620002eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000311919062000a62565b600980546001600160a01b039283166001600160a01b03199182168117909255600780549091169091179055600e8054600d805487851661010002610100600160a81b0319909116179055601385905561ffff808516600160a01b026001600160b01b0319909216938816939093171790556000906127109062000398908816896200087b565b620003a4919062000a80565b9050620003c930737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004bd565b600954620003e59030906001600160a01b0316600019620004bd565b6200040833737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004bd565b62000439336200041b6012600a62000863565b62000427848b62000aa3565b6200043391906200087b565b620005e5565b62000458846200044c6012600a62000863565b6200043390846200087b565b50505050505050505062000b15565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620005215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000150565b6001600160a01b038216620005845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000150565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166200063d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000150565b806002600082825462000651919062000abd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620006b69062000ad8565b90600052602060002090601f016020900481019282620006da576000855562000725565b82601f10620006f557805160ff191683800117855562000725565b8280016001018555821562000725579182015b828111156200072557825182559160200191906001019062000708565b506200073392915062000737565b5090565b5b8082111562000733576000815560010162000738565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007a55781600019048211156200078957620007896200074e565b808516156200079757918102915b93841c939080029062000769565b509250929050565b600082620007be575060016200085d565b81620007cd575060006200085d565b8160018114620007e65760028114620007f15762000811565b60019150506200085d565b60ff8411156200080557620008056200074e565b50506001821b6200085d565b5060208310610133831016604e8410600b841016171562000836575081810a6200085d565b62000842838362000764565b80600019048211156200085957620008596200074e565b0290505b92915050565b60006200087460ff841683620007ad565b9392505050565b60008160001904831182151516156200089857620008986200074e565b500290565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008c557600080fd5b81516001600160401b0380821115620008e257620008e26200089d565b604051601f8301601f19908116603f011681019082821181831017156200090d576200090d6200089d565b816040528381526020925086838588010111156200092a57600080fd5b600091505b838210156200094e57858201830151818301840152908201906200092f565b83821115620009605760008385830101525b9695505050505050565b805161ffff811681146200097d57600080fd5b919050565b80516001600160a01b03811681146200097d57600080fd5b600080600080600080600080610100898b031215620009b857600080fd5b88516001600160401b0380821115620009d057600080fd5b620009de8c838d01620008b3565b995060208b0151915080821115620009f557600080fd5b5062000a048b828c01620008b3565b9750506040890151955062000a1c60608a016200096a565b945062000a2c60808a0162000982565b935062000a3c60a08a0162000982565b925060c0890151915062000a5360e08a016200096a565b90509295985092959890939650565b60006020828403121562000a7557600080fd5b620008748262000982565b60008262000a9e57634e487b7160e01b600052601260045260246000fd5b500490565b60008282101562000ab85762000ab86200074e565b500390565b6000821982111562000ad35762000ad36200074e565b500190565b600181811c9082168062000aed57607f821691505b6020821081141562000b0f57634e487b7160e01b600052602260045260246000fd5b50919050565b6120058062000b256000396000f3fe6080604052600436106101e75760003560e01c80639277883d11610102578063c4ceb33911610095578063dd62ed3e11610064578063dd62ed3e146105b3578063e52fb9ec146105d3578063f2fde38b146105e9578063f887ea401461060957600080fd5b8063c4ceb33914610535578063d621e81314610557578063d6c909fe14610571578063dbe8d9aa1461059157600080fd5b8063a8aa1b31116100d1578063a8aa1b311461049e578063a9059cbb146104be578063bb66a1ee146104de578063c04e1be61461051357600080fd5b80639277883d1461042157806395d89b4114610441578063a457c2d714610456578063a7c6402c1461047657600080fd5b8063451d1cc11161017a578063715018a611610149578063715018a6146103ae57806379239a43146103c35780638a5f8db8146103e35780638da5cb5b1461040357600080fd5b8063451d1cc11461030b5780634d709adf1461032b57806351bc3c851461036357806370a082311461037857600080fd5b806323b872dd116101b657806323b872dd1461028f578063313ce567146102af57806339509351146102cb5780633bec2bf3146102eb57600080fd5b806306fdde03146101f3578063095ea7b31461021e578063172207331461024e57806318160ddd1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610629565b6040516102159190611a54565b60405180910390f35b34801561022a57600080fd5b5061023e610239366004611abe565b6106bb565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e610269366004611aea565b6106d5565b005b34801561027c57600080fd5b506002545b604051908152602001610215565b34801561029b57600080fd5b5061023e6102aa366004611b03565b6106f9565b3480156102bb57600080fd5b5060405160128152602001610215565b3480156102d757600080fd5b5061023e6102e6366004611abe565b61071d565b3480156102f757600080fd5b5061026e610306366004611b44565b61073f565b34801561031757600080fd5b5061026e610326366004611aea565b61075a565b34801561033757600080fd5b5060075461034b906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b34801561036f57600080fd5b5061026e61077e565b34801561038457600080fd5b50610281610393366004611b6d565b6001600160a01b031660009081526020819052604090205490565b3480156103ba57600080fd5b5061026e6107b5565b3480156103cf57600080fd5b5061026e6103de366004611b8a565b6107c7565b3480156103ef57600080fd5b5061026e6103fe366004611b8a565b6107f1565b34801561040f57600080fd5b506005546001600160a01b031661034b565b34801561042d57600080fd5b5061028161043c366004611aea565b6108a3565b34801561044d57600080fd5b506102086109d0565b34801561046257600080fd5b5061023e610471366004611abe565b6109df565b34801561048257600080fd5b5061034b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104aa57600080fd5b5060095461034b906001600160a01b031681565b3480156104ca57600080fd5b5061023e6104d9366004611abe565b610a5a565b3480156104ea57600080fd5b50600e5461050090600160a01b900461ffff1681565b60405161ffff9091168152602001610215565b34801561051f57600080fd5b50600e5461050090600160b01b900461ffff1681565b34801561054157600080fd5b50600e5461050090600160d01b900461ffff1681565b34801561056357600080fd5b50600d5461023e9060ff1681565b34801561057d57600080fd5b5061026e61058c366004611b8a565b610a68565b34801561059d57600080fd5b50600e5461050090600160c01b900461ffff1681565b3480156105bf57600080fd5b506102816105ce366004611bae565b610b0d565b3480156105df57600080fd5b5061028160135481565b3480156105f557600080fd5b5061026e610604366004611b6d565b610b38565b34801561061557600080fd5b5060085461034b906001600160a01b031681565b60606003805461063890611be7565b80601f016020809104026020016040519081016040528092919081815260200182805461066490611be7565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b6000336106c9818585610bb1565b60019150505b92915050565b6106dd610cd6565b6106e96012600a611d16565b6106f39082611d25565b60125550565b600033610707858285610d30565b610712858585610daa565b506001949350505050565b6000336106c98185856107308383610b0d565b61073a9190611d44565b610bb1565b610747610cd6565b600d805460ff1916911515919091179055565b610762610cd6565b61076e6012600a611d16565b6107789082611d25565b60115550565b600e546001600160a01b03163314806107a65750600d5461010090046001600160a01b031633145b156107b3576107b36111f2565b565b6107bd610cd6565b6107b3600061143a565b6107cf610cd6565b600e805461ffff909216600160d01b0261ffff60d01b19909216919091179055565b6107f9610cd6565b600e546127109061ffff600160c01b820481169161082891600160d01b8204811691600160a01b900416611d5c565b6108329190611d5c565b61ffff16106108815760405162461bcd60e51b8152602060048201526016602482015275050657263656e746167652065786365656473203130360541b60448201526064015b60405180910390fd5b600e805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106108dc576108dc611d98565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061090d5761090d611d98565b6001600160a01b03928316602091820292909201015260085460405163d06ca61f60e01b815291169063d06ca61f9061094c9086908590600401611df2565b60006040518083038186803b15801561096457600080fd5b505afa92505050801561099957506040513d6000823e601f3d908101601f191682016040526109969190810190611e13565b60015b6109a65750600092915050565b806001815181106109b9576109b9611d98565b602002602001015192505050919050565b50919050565b60606004805461063890611be7565b600033816109ed8286610b0d565b905083811015610a4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610878565b6107128286868403610bb1565b6000336106c9818585610daa565b610a70610cd6565b600e54612710908290610a979061ffff600160d01b8204811691600160a01b900416611d5c565b610aa19190611d5c565b61ffff1610610aeb5760405162461bcd60e51b8152602060048201526016602482015275050657263656e746167652065786365656473203130360541b6044820152606401610878565b600e805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b40610cd6565b6001600160a01b038116610ba55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610878565b610bae8161143a565b50565b6001600160a01b038316610c135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610878565b6001600160a01b038216610c745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610878565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146107b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610878565b6000610d3c8484610b0d565b90506000198114610da45781811015610d975760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610878565b610da48484848403610bb1565b50505050565b6001600160a01b0383166000908152600a602052604090205483908390431180610deb57506001600160a01b0381166000908152600a602052604090205443115b610e5d5760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b0000000000006064820152608401610878565b84610e706005546001600160a01b031690565b6001600160a01b0316336001600160a01b031614158015610e9f57506005546001600160a01b03828116911614155b15610eed57600d5460ff16610eed5760405162461bcd60e51b8152602060048201526014602482015273151c985919481a5cc81b9bdd08195b98589b195960621b6044820152606401610878565b6005546001600160a01b0387811691161480610f1657506005546001600160a01b038681169116145b80610f335750600d546001600160a01b0387811661010090920416145b80610f505750600d546001600160a01b0386811661010090920416145b80610f685750600e546001600160a01b038781169116145b80610f805750600e546001600160a01b038681169116145b80610f8d575060145460ff165b15610fa257610f9d86868661148c565b6111c2565b600e54600954600160b01b90910461ffff16906000906001600160a01b03908116908916148015610ff057506001600160a01b038716737a250d5630b4cf539739df2c5dacb4c659f2488d14155b905060006001600160a01b038916737a250d5630b4cf539739df2c5dacb4c659f2488d1480159061102e57506009546001600160a01b038981169116145b6009549091506001600160a01b0316331480159061104f575060145460ff16155b1561105c5761105c6111f2565b811561107357600e54600160b01b900461ffff1692505b801561108a57600e54600160c01b900461ffff1692505b600e54600090612710906110a990600160a01b900461ffff1686611d44565b6110b3908a611d25565b6110bd9190611ed1565b600e54909150600090612710906110df90600160d01b900461ffff168b611d25565b6110e99190611ed1565b905060006110f78284611d44565b611101908b611ef3565b9050612710611110878c611d25565b61111a9190611ed1565b600f600082825461112b9190611d44565b9091555050600e546127109061114c90600160a01b900461ffff168c611d25565b6111569190611ed1565b601060008282546111679190611d44565b90915550506012541561117d5761117d8a611630565b84801561118c57506000601154115b1561119b5761119b8b826116ac565b6111a58c83611753565b6111b08c308561148c565b6111bb8c8c8361148c565b5050505050505b506001600160a01b039182166000908152600a602052604080822043908190559290931681529190912055505050565b3060009081526020819052604081205461120b906108a3565b9050600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561125e57600080fd5b505afa158015611272573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112969190611f26565b5060065460075460408051630dfe168160e01b815290519496509294506000936001600160a01b03928316939290911691630dfe1681916004808301926020929190829003018186803b1580156112ec57600080fd5b505afa158015611300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113249190611f76565b6001600160a01b0316141561134357506001600160701b0382166113e2565b6006546007546040805163d21220a760e01b815290516001600160a01b03938416939092169163d21220a791600480820192602092909190829003018186803b15801561138f57600080fd5b505afa1580156113a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c79190611f76565b6001600160a01b031614156113e257506001600160701b0381165b60135484118015611408575060646113fb826003611d25565b6114059190611ed1565b84105b1561141b576114168461187d565b610da4565b610da4606461142b866003611d25565b6114359190611ed1565b61187d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114f05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610878565b6001600160a01b0382166115525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610878565b6001600160a01b038316600090815260208190526040902054818110156115ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610878565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610da4565b6005546001600160a01b03163214158061164a5750333014155b15610bae57601254811115610bae5760405162461bcd60e51b815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e20657863656564604482015261195960f21b6064820152608401610878565b6005546001600160a01b0316321415806116cf57506001600160a01b0382163014155b1561174f57601154816116f7846001600160a01b031660009081526020819052604090205490565b6117019190611d44565b111561174f5760405162461bcd60e51b815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c65742065786365656465640000006044820152606401610878565b5050565b6001600160a01b0382166117b35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610878565b6001600160a01b038216600090815260208190526040902054818110156118275760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610878565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cc9565b6014805460ff191660011790553060009081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905030816000815181106118cf576118cf611d98565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061190057611900611d98565b6001600160a01b03909216602092830291909101909101526000606461192785605f611d25565b6119319190611ed1565b60085460405163791ac94760e01b81529192506001600160a01b03169063791ac9479061196a9086908590879030904290600401611f93565b600060405180830381600087803b15801561198457600080fd5b505af1158015611998573d6000803e3d6000fd5b5050600e546010546001600160a01b0390911692506108fc91506119bb906108a3565b6040518115909202916000818181858888f193505050501580156119e3573d6000803e3d6000fd5b50600d60019054906101000a90046001600160a01b03166001600160a01b03166108fc611a11600f546108a3565b6040518115909202916000818181858888f19350505050158015611a39573d6000803e3d6000fd5b50506000600f81905560105550506014805460ff1916905550565b600060208083528351808285015260005b81811015611a8157858101830151858201604001528201611a65565b81811115611a93576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610bae57600080fd5b60008060408385031215611ad157600080fd5b8235611adc81611aa9565b946020939093013593505050565b600060208284031215611afc57600080fd5b5035919050565b600080600060608486031215611b1857600080fd5b8335611b2381611aa9565b92506020840135611b3381611aa9565b929592945050506040919091013590565b600060208284031215611b5657600080fd5b81358015158114611b6657600080fd5b9392505050565b600060208284031215611b7f57600080fd5b8135611b6681611aa9565b600060208284031215611b9c57600080fd5b813561ffff81168114611b6657600080fd5b60008060408385031215611bc157600080fd5b8235611bcc81611aa9565b91506020830135611bdc81611aa9565b809150509250929050565b600181811c90821680611bfb57607f821691505b602082108114156109ca57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611c6d578160001904821115611c5357611c53611c1c565b80851615611c6057918102915b93841c9390800290611c37565b509250929050565b600082611c84575060016106cf565b81611c91575060006106cf565b8160018114611ca75760028114611cb157611ccd565b60019150506106cf565b60ff841115611cc257611cc2611c1c565b50506001821b6106cf565b5060208310610133831016604e8410600b8410161715611cf0575081810a6106cf565b611cfa8383611c32565b8060001904821115611d0e57611d0e611c1c565b029392505050565b6000611b6660ff841683611c75565b6000816000190483118215151615611d3f57611d3f611c1c565b500290565b60008219821115611d5757611d57611c1c565b500190565b600061ffff808316818516808303821115611d7957611d79611c1c565b01949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611de75781516001600160a01b031687529582019590820190600101611dc2565b509495945050505050565b828152604060208201526000611e0b6040830184611dae565b949350505050565b60006020808385031215611e2657600080fd5b825167ffffffffffffffff80821115611e3e57600080fd5b818501915085601f830112611e5257600080fd5b815181811115611e6457611e64611d82565b8060051b604051601f19603f83011681018181108582111715611e8957611e89611d82565b604052918252848201925083810185019188831115611ea757600080fd5b938501935b82851015611ec557845184529385019392850192611eac565b98975050505050505050565b600082611eee57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611f0557611f05611c1c565b500390565b80516001600160701b0381168114611f2157600080fd5b919050565b600080600060608486031215611f3b57600080fd5b611f4484611f0a565b9250611f5260208501611f0a565b9150604084015163ffffffff81168114611f6b57600080fd5b809150509250925092565b600060208284031215611f8857600080fd5b8151611b6681611aa9565b85815284602082015260a060408201526000611fb260a0830186611dae565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220cdeb66722a076b899dfba8b8c2a3493e97134479cb7be50f05709951bfb34ecc64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000e0d510a67a1c1a16e78aca969281ddb10f6e5790000000000000000000000009254b80c661e17c61ca7775dc2720cfa5106653c000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000010457370726573736f204d616368696e65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002454d000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80639277883d11610102578063c4ceb33911610095578063dd62ed3e11610064578063dd62ed3e146105b3578063e52fb9ec146105d3578063f2fde38b146105e9578063f887ea401461060957600080fd5b8063c4ceb33914610535578063d621e81314610557578063d6c909fe14610571578063dbe8d9aa1461059157600080fd5b8063a8aa1b31116100d1578063a8aa1b311461049e578063a9059cbb146104be578063bb66a1ee146104de578063c04e1be61461051357600080fd5b80639277883d1461042157806395d89b4114610441578063a457c2d714610456578063a7c6402c1461047657600080fd5b8063451d1cc11161017a578063715018a611610149578063715018a6146103ae57806379239a43146103c35780638a5f8db8146103e35780638da5cb5b1461040357600080fd5b8063451d1cc11461030b5780634d709adf1461032b57806351bc3c851461036357806370a082311461037857600080fd5b806323b872dd116101b657806323b872dd1461028f578063313ce567146102af57806339509351146102cb5780633bec2bf3146102eb57600080fd5b806306fdde03146101f3578063095ea7b31461021e578063172207331461024e57806318160ddd1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610629565b6040516102159190611a54565b60405180910390f35b34801561022a57600080fd5b5061023e610239366004611abe565b6106bb565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e610269366004611aea565b6106d5565b005b34801561027c57600080fd5b506002545b604051908152602001610215565b34801561029b57600080fd5b5061023e6102aa366004611b03565b6106f9565b3480156102bb57600080fd5b5060405160128152602001610215565b3480156102d757600080fd5b5061023e6102e6366004611abe565b61071d565b3480156102f757600080fd5b5061026e610306366004611b44565b61073f565b34801561031757600080fd5b5061026e610326366004611aea565b61075a565b34801561033757600080fd5b5060075461034b906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b34801561036f57600080fd5b5061026e61077e565b34801561038457600080fd5b50610281610393366004611b6d565b6001600160a01b031660009081526020819052604090205490565b3480156103ba57600080fd5b5061026e6107b5565b3480156103cf57600080fd5b5061026e6103de366004611b8a565b6107c7565b3480156103ef57600080fd5b5061026e6103fe366004611b8a565b6107f1565b34801561040f57600080fd5b506005546001600160a01b031661034b565b34801561042d57600080fd5b5061028161043c366004611aea565b6108a3565b34801561044d57600080fd5b506102086109d0565b34801561046257600080fd5b5061023e610471366004611abe565b6109df565b34801561048257600080fd5b5061034b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104aa57600080fd5b5060095461034b906001600160a01b031681565b3480156104ca57600080fd5b5061023e6104d9366004611abe565b610a5a565b3480156104ea57600080fd5b50600e5461050090600160a01b900461ffff1681565b60405161ffff9091168152602001610215565b34801561051f57600080fd5b50600e5461050090600160b01b900461ffff1681565b34801561054157600080fd5b50600e5461050090600160d01b900461ffff1681565b34801561056357600080fd5b50600d5461023e9060ff1681565b34801561057d57600080fd5b5061026e61058c366004611b8a565b610a68565b34801561059d57600080fd5b50600e5461050090600160c01b900461ffff1681565b3480156105bf57600080fd5b506102816105ce366004611bae565b610b0d565b3480156105df57600080fd5b5061028160135481565b3480156105f557600080fd5b5061026e610604366004611b6d565b610b38565b34801561061557600080fd5b5060085461034b906001600160a01b031681565b60606003805461063890611be7565b80601f016020809104026020016040519081016040528092919081815260200182805461066490611be7565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b6000336106c9818585610bb1565b60019150505b92915050565b6106dd610cd6565b6106e96012600a611d16565b6106f39082611d25565b60125550565b600033610707858285610d30565b610712858585610daa565b506001949350505050565b6000336106c98185856107308383610b0d565b61073a9190611d44565b610bb1565b610747610cd6565b600d805460ff1916911515919091179055565b610762610cd6565b61076e6012600a611d16565b6107789082611d25565b60115550565b600e546001600160a01b03163314806107a65750600d5461010090046001600160a01b031633145b156107b3576107b36111f2565b565b6107bd610cd6565b6107b3600061143a565b6107cf610cd6565b600e805461ffff909216600160d01b0261ffff60d01b19909216919091179055565b6107f9610cd6565b600e546127109061ffff600160c01b820481169161082891600160d01b8204811691600160a01b900416611d5c565b6108329190611d5c565b61ffff16106108815760405162461bcd60e51b8152602060048201526016602482015275050657263656e746167652065786365656473203130360541b60448201526064015b60405180910390fd5b600e805461ffff909216600160c01b0261ffff60c01b19909216919091179055565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106108dc576108dc611d98565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061090d5761090d611d98565b6001600160a01b03928316602091820292909201015260085460405163d06ca61f60e01b815291169063d06ca61f9061094c9086908590600401611df2565b60006040518083038186803b15801561096457600080fd5b505afa92505050801561099957506040513d6000823e601f3d908101601f191682016040526109969190810190611e13565b60015b6109a65750600092915050565b806001815181106109b9576109b9611d98565b602002602001015192505050919050565b50919050565b60606004805461063890611be7565b600033816109ed8286610b0d565b905083811015610a4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610878565b6107128286868403610bb1565b6000336106c9818585610daa565b610a70610cd6565b600e54612710908290610a979061ffff600160d01b8204811691600160a01b900416611d5c565b610aa19190611d5c565b61ffff1610610aeb5760405162461bcd60e51b8152602060048201526016602482015275050657263656e746167652065786365656473203130360541b6044820152606401610878565b600e805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b40610cd6565b6001600160a01b038116610ba55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610878565b610bae8161143a565b50565b6001600160a01b038316610c135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610878565b6001600160a01b038216610c745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610878565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146107b35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610878565b6000610d3c8484610b0d565b90506000198114610da45781811015610d975760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610878565b610da48484848403610bb1565b50505050565b6001600160a01b0383166000908152600a602052604090205483908390431180610deb57506001600160a01b0381166000908152600a602052604090205443115b610e5d5760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b0000000000006064820152608401610878565b84610e706005546001600160a01b031690565b6001600160a01b0316336001600160a01b031614158015610e9f57506005546001600160a01b03828116911614155b15610eed57600d5460ff16610eed5760405162461bcd60e51b8152602060048201526014602482015273151c985919481a5cc81b9bdd08195b98589b195960621b6044820152606401610878565b6005546001600160a01b0387811691161480610f1657506005546001600160a01b038681169116145b80610f335750600d546001600160a01b0387811661010090920416145b80610f505750600d546001600160a01b0386811661010090920416145b80610f685750600e546001600160a01b038781169116145b80610f805750600e546001600160a01b038681169116145b80610f8d575060145460ff165b15610fa257610f9d86868661148c565b6111c2565b600e54600954600160b01b90910461ffff16906000906001600160a01b03908116908916148015610ff057506001600160a01b038716737a250d5630b4cf539739df2c5dacb4c659f2488d14155b905060006001600160a01b038916737a250d5630b4cf539739df2c5dacb4c659f2488d1480159061102e57506009546001600160a01b038981169116145b6009549091506001600160a01b0316331480159061104f575060145460ff16155b1561105c5761105c6111f2565b811561107357600e54600160b01b900461ffff1692505b801561108a57600e54600160c01b900461ffff1692505b600e54600090612710906110a990600160a01b900461ffff1686611d44565b6110b3908a611d25565b6110bd9190611ed1565b600e54909150600090612710906110df90600160d01b900461ffff168b611d25565b6110e99190611ed1565b905060006110f78284611d44565b611101908b611ef3565b9050612710611110878c611d25565b61111a9190611ed1565b600f600082825461112b9190611d44565b9091555050600e546127109061114c90600160a01b900461ffff168c611d25565b6111569190611ed1565b601060008282546111679190611d44565b90915550506012541561117d5761117d8a611630565b84801561118c57506000601154115b1561119b5761119b8b826116ac565b6111a58c83611753565b6111b08c308561148c565b6111bb8c8c8361148c565b5050505050505b506001600160a01b039182166000908152600a602052604080822043908190559290931681529190912055505050565b3060009081526020819052604081205461120b906108a3565b9050600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561125e57600080fd5b505afa158015611272573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112969190611f26565b5060065460075460408051630dfe168160e01b815290519496509294506000936001600160a01b03928316939290911691630dfe1681916004808301926020929190829003018186803b1580156112ec57600080fd5b505afa158015611300573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113249190611f76565b6001600160a01b0316141561134357506001600160701b0382166113e2565b6006546007546040805163d21220a760e01b815290516001600160a01b03938416939092169163d21220a791600480820192602092909190829003018186803b15801561138f57600080fd5b505afa1580156113a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c79190611f76565b6001600160a01b031614156113e257506001600160701b0381165b60135484118015611408575060646113fb826003611d25565b6114059190611ed1565b84105b1561141b576114168461187d565b610da4565b610da4606461142b866003611d25565b6114359190611ed1565b61187d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114f05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610878565b6001600160a01b0382166115525760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610878565b6001600160a01b038316600090815260208190526040902054818110156115ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610878565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610da4565b6005546001600160a01b03163214158061164a5750333014155b15610bae57601254811115610bae5760405162461bcd60e51b815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e20657863656564604482015261195960f21b6064820152608401610878565b6005546001600160a01b0316321415806116cf57506001600160a01b0382163014155b1561174f57601154816116f7846001600160a01b031660009081526020819052604090205490565b6117019190611d44565b111561174f5760405162461bcd60e51b815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c65742065786365656465640000006044820152606401610878565b5050565b6001600160a01b0382166117b35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610878565b6001600160a01b038216600090815260208190526040902054818110156118275760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610878565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cc9565b6014805460ff191660011790553060009081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905030816000815181106118cf576118cf611d98565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061190057611900611d98565b6001600160a01b03909216602092830291909101909101526000606461192785605f611d25565b6119319190611ed1565b60085460405163791ac94760e01b81529192506001600160a01b03169063791ac9479061196a9086908590879030904290600401611f93565b600060405180830381600087803b15801561198457600080fd5b505af1158015611998573d6000803e3d6000fd5b5050600e546010546001600160a01b0390911692506108fc91506119bb906108a3565b6040518115909202916000818181858888f193505050501580156119e3573d6000803e3d6000fd5b50600d60019054906101000a90046001600160a01b03166001600160a01b03166108fc611a11600f546108a3565b6040518115909202916000818181858888f19350505050158015611a39573d6000803e3d6000fd5b50506000600f81905560105550506014805460ff1916905550565b600060208083528351808285015260005b81811015611a8157858101830151858201604001528201611a65565b81811115611a93576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610bae57600080fd5b60008060408385031215611ad157600080fd5b8235611adc81611aa9565b946020939093013593505050565b600060208284031215611afc57600080fd5b5035919050565b600080600060608486031215611b1857600080fd5b8335611b2381611aa9565b92506020840135611b3381611aa9565b929592945050506040919091013590565b600060208284031215611b5657600080fd5b81358015158114611b6657600080fd5b9392505050565b600060208284031215611b7f57600080fd5b8135611b6681611aa9565b600060208284031215611b9c57600080fd5b813561ffff81168114611b6657600080fd5b60008060408385031215611bc157600080fd5b8235611bcc81611aa9565b91506020830135611bdc81611aa9565b809150509250929050565b600181811c90821680611bfb57607f821691505b602082108114156109ca57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611c6d578160001904821115611c5357611c53611c1c565b80851615611c6057918102915b93841c9390800290611c37565b509250929050565b600082611c84575060016106cf565b81611c91575060006106cf565b8160018114611ca75760028114611cb157611ccd565b60019150506106cf565b60ff841115611cc257611cc2611c1c565b50506001821b6106cf565b5060208310610133831016604e8410600b8410161715611cf0575081810a6106cf565b611cfa8383611c32565b8060001904821115611d0e57611d0e611c1c565b029392505050565b6000611b6660ff841683611c75565b6000816000190483118215151615611d3f57611d3f611c1c565b500290565b60008219821115611d5757611d57611c1c565b500190565b600061ffff808316818516808303821115611d7957611d79611c1c565b01949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611de75781516001600160a01b031687529582019590820190600101611dc2565b509495945050505050565b828152604060208201526000611e0b6040830184611dae565b949350505050565b60006020808385031215611e2657600080fd5b825167ffffffffffffffff80821115611e3e57600080fd5b818501915085601f830112611e5257600080fd5b815181811115611e6457611e64611d82565b8060051b604051601f19603f83011681018181108582111715611e8957611e89611d82565b604052918252848201925083810185019188831115611ea757600080fd5b938501935b82851015611ec557845184529385019392850192611eac565b98975050505050505050565b600082611eee57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611f0557611f05611c1c565b500390565b80516001600160701b0381168114611f2157600080fd5b919050565b600080600060608486031215611f3b57600080fd5b611f4484611f0a565b9250611f5260208501611f0a565b9150604084015163ffffffff81168114611f6b57600080fd5b809150509250925092565b600060208284031215611f8857600080fd5b8151611b6681611aa9565b85815284602082015260a060408201526000611fb260a0830186611dae565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220cdeb66722a076b899dfba8b8c2a3493e97134479cb7be50f05709951bfb34ecc64736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000e0d510a67a1c1a16e78aca969281ddb10f6e5790000000000000000000000009254b80c661e17c61ca7775dc2720cfa5106653c000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000010457370726573736f204d616368696e65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002454d000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Espresso Machine
Arg [1] : _symbol (string): EM
Arg [2] : _supply (uint256): 1000000
Arg [3] : _ownerPercentageInitalSupply (uint16): 200
Arg [4] : _feeReceiverAdmin (address): 0x0e0D510a67a1C1a16e78aCA969281DDb10f6e579
Arg [5] : _feeReceiverOwner (address): 0x9254b80C661E17C61cA7775dC2720CFa5106653c
Arg [6] : _swapTreshold (uint256): 100000000000000000
Arg [7] : _feeAdminPercentage (uint16): 100

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [4] : 0000000000000000000000000e0d510a67a1c1a16e78aca969281ddb10f6e579
Arg [5] : 0000000000000000000000009254b80c661e17c61ca7775dc2720cfa5106653c
Arg [6] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [9] : 457370726573736f204d616368696e6500000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 454d000000000000000000000000000000000000000000000000000000000000


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.