ETH Price: $3,319.38 (+2.45%)
Gas: 3 Gwei

Token

Levex (LVX)
 

Overview

Max Total Supply

1,000,000,000 LVX

Holders

232

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
738,621.137391842270907073 LVX

Value
$0.00
0x39F2f6633A9B8Ca0B24874B55783F47395bA2F92
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:
Levex

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * 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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 3 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 7 : Levex.sol
/*

Levex - A new age margin trading protocol.

Web - https://levex.one
Telegram - https://t.me/levex_chat
Twitter - https://twitter.com/Levex_one

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract Levex is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;

    address public immutable uniswapV2Pair;
    address public devWallet;
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    uint256 public swapTokensAtAmount;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTotalFees;
    uint256 public maxWallet;

    bool public swapBackEnabled = true;
    bool public limitsInEffect = true;
    bool public tradingActive;
    bool private swapping;

    constructor() ERC20("Levex", "LVX") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), USDC);

        uint256 totalSupply = 1000000000e18;
        maxWallet = totalSupply * 2 / 100;

        swapTokensAtAmount = (totalSupply * 5) / 100000; // 0.005%

        buyDevFee = 2;
        buyLiquidityFee = 1;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        sellDevFee = 2;
        sellLiquidityFee = 1;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = owner();

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(0x0000), true);

        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(0xdead), true);
        excludeFromMaxWallet(address(0x0000), true);

        _mint(msg.sender, totalSupply);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        bool isBuy = from == uniswapV2Pair;
        bool isSell = to == uniswapV2Pair;

        if(!tradingActive && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) require(false, "Trading has not started yet");

        if(limitsInEffect && !_isExcludedFromMaxWallet[to] && !swapping) {
            if(isBuy) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (buy)");
            }
            if(!isBuy && !isSell) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (transfer)");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        if (canSwap && swapBackEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;

        if (takeFee) {
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
            }
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            }

            amount -= fees;
        }

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

    function swapTokensForUSDC(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = USDC;

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

        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        swapTokensForUSDC(contractBalance);
    }

    receive() external payable {}

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function updateSwapBackEnabled(bool enabled) external onlyOwner {
        swapBackEnabled = enabled;
    }

    function updateBuyFee(uint256 _devFee, uint256 _liquidityFee) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "Fees > 10%");
    }

    function updateSellFees(uint256 _devFee, uint256 _liquidityFee) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(newAmount >= (totalSupply() * 1) / 100000, "< 0.001% total supply.");
        require(newAmount <= (totalSupply() * 5) / 1000, "> 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWallet(uint256 newAmount) external onlyOwner {
        require(newAmount >= (totalSupply() * 5 / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newAmount * 1e18;
    }

    function enableTrading() public onlyOwner {
        tradingActive = true;
    }

    function enableLimits(bool _limitsInEffect) public onlyOwner {
        limitsInEffect = _limitsInEffect;
    }

    function rescue(address token) public onlyOwner {
        ERC20 Token = ERC20(token);
        uint256 balance = Token.balanceOf(address(this));
        if(balance > 0) Token.transfer(_msgSender(), balance);
    }

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

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

    function isExcludedFromMaxWallet(address account) public view returns (bool) {
        return _isExcludedFromMaxWallet[account];
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"}],"name":"enableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapBackEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapBackEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200009c57600080fd5b506040518060400160405280600581526020017f4c657665780000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c5658000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012192919062000911565b5080600490805190602001906200013a92919062000911565b5050506200015d62000151620004c260201b60201c565b620004ca60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021c919062000a2b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200027a92919062000a6e565b6020604051808303816000875af11580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000a2b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060006b033b2e3c9fd0803ce80000009050606460028262000315919062000ad4565b62000321919062000b64565b601181905550620186a06005826200033a919062000ad4565b62000346919062000b64565b600a819055506002600b819055506001600c81905550600c54600b546200036e919062000b9c565b600d819055506002600e819055506001600f81905550600f54600e5462000396919062000b9c565b601081905550620003ac6200059060201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200040e620004006200059060201b60201c565b6001620005ba60201b60201c565b62000421306001620005ba60201b60201c565b6200043661dead6001620005ba60201b60201c565b6200044a60006001620005ba60201b60201c565b6200046c6200045e6200059060201b60201c565b6001620006a460201b60201c565b6200047f306001620006a460201b60201c565b6200049461dead6001620006a460201b60201c565b620004a860006001620006a460201b60201c565b620004ba33826200078e60201b60201c565b505062000d81565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005ca620004c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005f06200059060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006409062000c5a565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620006b4620004c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006da6200059060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000733576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072a9062000c5a565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000801576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f89062000ccc565b60405180910390fd5b62000815600083836200090760201b60201c565b806002600082825462000829919062000b9c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000880919062000b9c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008e7919062000cff565b60405180910390a362000903600083836200090c60201b60201c565b5050565b505050565b505050565b8280546200091f9062000d4b565b90600052602060002090601f0160209004810192826200094357600085556200098f565b82601f106200095e57805160ff19168380011785556200098f565b828001600101855582156200098f579182015b828111156200098e57825182559160200191906001019062000971565b5b5090506200099e9190620009a2565b5090565b5b80821115620009bd576000816000905550600101620009a3565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009f382620009c6565b9050919050565b62000a0581620009e6565b811462000a1157600080fd5b50565b60008151905062000a2581620009fa565b92915050565b60006020828403121562000a445762000a43620009c1565b5b600062000a548482850162000a14565b91505092915050565b62000a6881620009e6565b82525050565b600060408201905062000a85600083018562000a5d565b62000a94602083018462000a5d565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ae18262000a9b565b915062000aee8362000a9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b2a5762000b2962000aa5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000b718262000a9b565b915062000b7e8362000a9b565b92508262000b915762000b9062000b35565b5b828204905092915050565b600062000ba98262000a9b565b915062000bb68362000a9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bee5762000bed62000aa5565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c4260208362000bf9565b915062000c4f8262000c0a565b602082019050919050565b6000602082019050818103600083015262000c758162000c33565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cb4601f8362000bf9565b915062000cc18262000c7c565b602082019050919050565b6000602082019050818103600083015262000ce78162000ca5565b9050919050565b62000cf98162000a9b565b82525050565b600060208201905062000d16600083018462000cee565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d6457607f821691505b6020821081141562000d7b5762000d7a62000d1c565b5b50919050565b60805160a051613d1062000ddf60003960008181610f2d01528181611ee101528181611f340152818161222701528181612430015281816124de01526125ab015260008181610b8301528181612ab20152612ad90152613d106000f3fe6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a0d82dc5116100fd578063a0d82dc5146106f9578063a457c2d714610724578063a5cdee0514610761578063a9059cbb1461078a578063bbc0c742146107c75761025c565b80638a8c523c146106365780638da5cb5b1461064d5780638ea5220f1461067857806395d89b41146106a35780639c3b4fdc146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e257806389a302711461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcc565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca5565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d25565b610b63565b6040516102e99190612d80565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612dfa565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e24565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3f565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6c565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e99565b610d7e565b6040516103ce9190612d80565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f08565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d25565b610e7f565b6040516104369190612d80565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f32565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d80565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3f565b610f62565b6040516104c99190612d80565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcc565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d80565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e24565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3f565b6110bb565b6040516105859190612d80565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3f565b611111565b6040516105c29190612e24565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3f565b6111e1565b005b34801561061757600080fd5b50610620611375565b60405161062d9190612f32565b60405180910390f35b34801561064257600080fd5b5061064b61139b565b005b34801561065957600080fd5b50610662611434565b60405161066f9190612f32565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612f32565b60405180910390f35b3480156106af57600080fd5b506106b8611484565b6040516106c59190612ca5565b60405180910390f35b3480156106da57600080fd5b506106e3611516565b6040516106f09190612e24565b60405180910390f35b34801561070557600080fd5b5061070e61151c565b60405161071b9190612e24565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612d25565b611522565b6040516107589190612d80565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612f79565b61160d565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612d25565b6116a6565b6040516107be9190612d80565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d80565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa6565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6c565b6117ae565b60405161084f9190612d80565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa6565b611903565b005b34801561088d57600080fd5b506108966119da565b6040516108a39190612e24565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe6565b6119e0565b6040516108e09190612e24565b60405180910390f35b3480156108f557600080fd5b506108fe611a67565b60405161090b9190612e24565b60405180910390f35b34801561092057600080fd5b50610929611a6d565b6040516109369190612e24565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3f565b611a73565b005b34801561097457600080fd5b5061097d611b6b565b60405161098a9190612e24565b60405180910390f35b34801561099f57600080fd5b506109a8611b71565b6040516109b59190612e24565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f79565b611b77565b005b6109ef611c10565b73ffffffffffffffffffffffffffffffffffffffff16610a0d611434565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613072565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c1565b601081905550600a6010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613163565b60405180910390fd5b5050565b606060038054610ae0906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b2565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c10565b8484611c18565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bb7611c10565b73ffffffffffffffffffffffffffffffffffffffff16610bd5611434565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613072565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c10565b73ffffffffffffffffffffffffffffffffffffffff16610c95611434565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613072565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e4565b610d15919061326d565b610d1f919061326d565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613310565b60405180910390fd5b670de0b6b3a764000081610d7591906131e4565b60118190555050565b6000610d8b848484611de3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a2565b60405180910390fd5b610e6a85610e62611c10565b858403611c18565b60019150509392505050565b60006012905090565b6000610f21610e8c611c10565b848460016000610e9a611c10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c1565b611c18565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c10565b73ffffffffffffffffffffffffffffffffffffffff16610fde611434565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613072565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c1565b600d81905550600a600d54111561109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061340e565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c10565b73ffffffffffffffffffffffffffffffffffffffff1661117f611434565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613072565b60405180910390fd5b6111df60006125f8565b565b6111e9611c10565b73ffffffffffffffffffffffffffffffffffffffff16611207611434565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613072565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f32565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de9190613443565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c10565b836040518363ffffffff1660e01b815260040161132b929190613470565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e91906134ae565b505b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113a3611c10565b73ffffffffffffffffffffffffffffffffffffffff166113c1611434565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90613072565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611493906131b2565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf906131b2565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b5050505050905090565b600b5481565b600e5481565b60008060016000611531611c10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061354d565b60405180910390fd5b6116026115f9611c10565b85858403611c18565b600191505092915050565b611615611c10565b73ffffffffffffffffffffffffffffffffffffffff16611633611434565b73ffffffffffffffffffffffffffffffffffffffff1614611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613072565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60006116ba6116b3611c10565b8484611de3565b6001905092915050565b601260029054906101000a900460ff1681565b6116df611c10565b73ffffffffffffffffffffffffffffffffffffffff166116fd611434565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613072565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c10565b73ffffffffffffffffffffffffffffffffffffffff166117d6611434565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613072565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e4565b61184e919061326d565b821015611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906135b9565b60405180910390fd5b6103e8600561189d610ba5565b6118a791906131e4565b6118b1919061326d565b8211156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613625565b60405180910390fd5b81600a8190555060019050919050565b61190b611c10565b73ffffffffffffffffffffffffffffffffffffffff16611929611434565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613072565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7b611c10565b73ffffffffffffffffffffffffffffffffffffffff16611a99611434565b73ffffffffffffffffffffffffffffffffffffffff1614611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613072565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b56906136b7565b60405180910390fd5b611b68816125f8565b50565b600f5481565b60115481565b611b7f611c10565b73ffffffffffffffffffffffffffffffffffffffff16611b9d611434565b73ffffffffffffffffffffffffffffffffffffffff1614611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90613072565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613749565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef906137db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd69190612e24565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a9061386d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba906138ff565b60405180910390fd5b6000811415611edd57611ed8838360006126be565b6125f3565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fea5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120405750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612087576000612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9061396b565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ed5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601260039054906101000a900460ff16155b156121d557811561216a5760115461211d85611111565b8461212891906130c1565b1115612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906139d7565b60405180910390fd5b5b81158015612176575080155b156121d45760115461218785611111565b8461219291906130c1565b11156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613a43565b60405180910390fd5b5b5b60006121e030611111565b90506000600a5482101590508080156122055750601260009054906101000a900460ff165b801561221e5750601260039054906101000a900460ff16155b801561227557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122cb5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123215750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612365576001601260036101000a81548160ff02191690831515021790555061234961293f565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241b5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242557600090505b60008082156125e0577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248b57506000601054115b156124dc576124b860646124aa6010548b61296890919063ffffffff16565b61297e90919063ffffffff16565b9150601054600f54836124cb91906131e4565b6124d5919061326d565b9050612587565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253957506000600d54115b15612586576125666064612558600d548b61296890919063ffffffff16565b61297e90919063ffffffff16565b9150600d54600c548361257991906131e4565b612583919061326d565b90505b5b600082111561259c5761259b8a30846126be565b5b60008111156125d1576125d0307f0000000000000000000000000000000000000000000000000000000000000000836126be565b5b81886125dd9190613a63565b97505b6125eb8a8a8a6126be565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127259061386d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906138ff565b60405180910390fd5b6127a9838383612994565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690613b09565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c291906130c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129269190612e24565b60405180910390a3612939848484612999565b50505050565b600061294a30611111565b9050600081141561295b5750612966565b6129648161299e565b505b565b6000818361297691906131e4565b905092915050565b6000818361298c919061326d565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129bb576129ba613b29565b5b6040519080825280602002602001820160405280156129e95781602001602082028036833780820191505090505b5090503081600081518110612a0157612a00613b58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7257612a71613b58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad7307f000000000000000000000000000000000000000000000000000000000000000084611c18565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5b959493929190613c80565b600060405180830381600087803b158015612b7557600080fd5b505af1158015612b89573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba981612b96565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b60008060408385031215612be357612be2612b91565b5b6000612bf185828601612bb7565b9250506020612c0285828601612bb7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c46578082015181840152602081019050612c2b565b83811115612c55576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7782612c0c565b612c818185612c17565b9350612c91818560208601612c28565b612c9a81612c5b565b840191505092915050565b60006020820190508181036000830152612cbf8184612c6c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf282612cc7565b9050919050565b612d0281612ce7565b8114612d0d57600080fd5b50565b600081359050612d1f81612cf9565b92915050565b60008060408385031215612d3c57612d3b612b91565b5b6000612d4a85828601612d10565b9250506020612d5b85828601612bb7565b9150509250929050565b60008115159050919050565b612d7a81612d65565b82525050565b6000602082019050612d956000830184612d71565b92915050565b6000819050919050565b6000612dc0612dbb612db684612cc7565b612d9b565b612cc7565b9050919050565b6000612dd282612da5565b9050919050565b6000612de482612dc7565b9050919050565b612df481612dd9565b82525050565b6000602082019050612e0f6000830184612deb565b92915050565b612e1e81612b96565b82525050565b6000602082019050612e396000830184612e15565b92915050565b600060208284031215612e5557612e54612b91565b5b6000612e6384828501612d10565b91505092915050565b600060208284031215612e8257612e81612b91565b5b6000612e9084828501612bb7565b91505092915050565b600080600060608486031215612eb257612eb1612b91565b5b6000612ec086828701612d10565b9350506020612ed186828701612d10565b9250506040612ee286828701612bb7565b9150509250925092565b600060ff82169050919050565b612f0281612eec565b82525050565b6000602082019050612f1d6000830184612ef9565b92915050565b612f2c81612ce7565b82525050565b6000602082019050612f476000830184612f23565b92915050565b612f5681612d65565b8114612f6157600080fd5b50565b600081359050612f7381612f4d565b92915050565b600060208284031215612f8f57612f8e612b91565b5b6000612f9d84828501612f64565b91505092915050565b60008060408385031215612fbd57612fbc612b91565b5b6000612fcb85828601612d10565b9250506020612fdc85828601612f64565b9150509250929050565b60008060408385031215612ffd57612ffc612b91565b5b600061300b85828601612d10565b925050602061301c85828601612d10565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305c602083612c17565b915061306782613026565b602082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cc82612b96565b91506130d783612b96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310c5761310b613092565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061314d601d83612c17565b915061315882613117565b602082019050919050565b6000602082019050818103600083015261317c81613140565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ca57607f821691505b602082108114156131de576131dd613183565b5b50919050565b60006131ef82612b96565b91506131fa83612b96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323357613232613092565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327882612b96565b915061328383612b96565b9250826132935761329261323e565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132fa602483612c17565b91506133058261329e565b604082019050919050565b60006020820190508181036000830152613329816132ed565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338c602883612c17565b915061339782613330565b604082019050919050565b600060208201905081810360008301526133bb8161337f565b9050919050565b7f46656573203e2031302500000000000000000000000000000000000000000000600082015250565b60006133f8600a83612c17565b9150613403826133c2565b602082019050919050565b60006020820190508181036000830152613427816133eb565b9050919050565b60008151905061343d81612ba0565b92915050565b60006020828403121561345957613458612b91565b5b60006134678482850161342e565b91505092915050565b60006040820190506134856000830185612f23565b6134926020830184612e15565b9392505050565b6000815190506134a881612f4d565b92915050565b6000602082840312156134c4576134c3612b91565b5b60006134d284828501613499565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613537602583612c17565b9150613542826134db565b604082019050919050565b600060208201905081810360008301526135668161352a565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b60006135a3601683612c17565b91506135ae8261356d565b602082019050919050565b600060208201905081810360008301526135d281613596565b9050919050565b7f3e20302e352520746f74616c20737570706c792e000000000000000000000000600082015250565b600061360f601483612c17565b915061361a826135d9565b602082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136a1602683612c17565b91506136ac82613645565b604082019050919050565b600060208201905081810360008301526136d081613694565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613733602483612c17565b915061373e826136d7565b604082019050919050565b6000602082019050818103600083015261376281613726565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006137c5602283612c17565b91506137d082613769565b604082019050919050565b600060208201905081810360008301526137f4816137b8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613857602583612c17565b9150613862826137fb565b604082019050919050565b600060208201905081810360008301526138868161384a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006138e9602383612c17565b91506138f48261388d565b604082019050919050565b60006020820190508181036000830152613918816138dc565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b6000613955601b83612c17565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b60006139c1601983612c17565b91506139cc8261398b565b602082019050919050565b600060208201905081810360008301526139f0816139b4565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b6000613a2d601e83612c17565b9150613a38826139f7565b602082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b6000613a6e82612b96565b9150613a7983612b96565b925082821015613a8c57613a8b613092565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613af3602683612c17565b9150613afe82613a97565b604082019050919050565b60006020820190508181036000830152613b2281613ae6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613bac613ba7613ba284613b87565b612d9b565b612b96565b9050919050565b613bbc81613b91565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bf781612ce7565b82525050565b6000613c098383613bee565b60208301905092915050565b6000602082019050919050565b6000613c2d82613bc2565b613c378185613bcd565b9350613c4283613bde565b8060005b83811015613c73578151613c5a8882613bfd565b9750613c6583613c15565b925050600181019050613c46565b5085935050505092915050565b600060a082019050613c956000830188612e15565b613ca26020830187613bb3565b8181036040830152613cb48186613c22565b9050613cc36060830185612f23565b613cd06080830184612e15565b969550505050505056fea26469706673582212202970864a8209d564cea360c96c69e59764f7f8463f2e1d68c6d7415562edf99864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a0d82dc5116100fd578063a0d82dc5146106f9578063a457c2d714610724578063a5cdee0514610761578063a9059cbb1461078a578063bbc0c742146107c75761025c565b80638a8c523c146106365780638da5cb5b1461064d5780638ea5220f1461067857806395d89b41146106a35780639c3b4fdc146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e257806389a302711461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcc565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca5565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d25565b610b63565b6040516102e99190612d80565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612dfa565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e24565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3f565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6c565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e99565b610d7e565b6040516103ce9190612d80565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f08565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d25565b610e7f565b6040516104369190612d80565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f32565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d80565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3f565b610f62565b6040516104c99190612d80565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcc565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d80565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e24565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3f565b6110bb565b6040516105859190612d80565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3f565b611111565b6040516105c29190612e24565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3f565b6111e1565b005b34801561061757600080fd5b50610620611375565b60405161062d9190612f32565b60405180910390f35b34801561064257600080fd5b5061064b61139b565b005b34801561065957600080fd5b50610662611434565b60405161066f9190612f32565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612f32565b60405180910390f35b3480156106af57600080fd5b506106b8611484565b6040516106c59190612ca5565b60405180910390f35b3480156106da57600080fd5b506106e3611516565b6040516106f09190612e24565b60405180910390f35b34801561070557600080fd5b5061070e61151c565b60405161071b9190612e24565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612d25565b611522565b6040516107589190612d80565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612f79565b61160d565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612d25565b6116a6565b6040516107be9190612d80565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d80565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa6565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6c565b6117ae565b60405161084f9190612d80565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa6565b611903565b005b34801561088d57600080fd5b506108966119da565b6040516108a39190612e24565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe6565b6119e0565b6040516108e09190612e24565b60405180910390f35b3480156108f557600080fd5b506108fe611a67565b60405161090b9190612e24565b60405180910390f35b34801561092057600080fd5b50610929611a6d565b6040516109369190612e24565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3f565b611a73565b005b34801561097457600080fd5b5061097d611b6b565b60405161098a9190612e24565b60405180910390f35b34801561099f57600080fd5b506109a8611b71565b6040516109b59190612e24565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f79565b611b77565b005b6109ef611c10565b73ffffffffffffffffffffffffffffffffffffffff16610a0d611434565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613072565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c1565b601081905550600a6010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613163565b60405180910390fd5b5050565b606060038054610ae0906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b2565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c10565b8484611c18565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bb7611c10565b73ffffffffffffffffffffffffffffffffffffffff16610bd5611434565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613072565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c10565b73ffffffffffffffffffffffffffffffffffffffff16610c95611434565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613072565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e4565b610d15919061326d565b610d1f919061326d565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613310565b60405180910390fd5b670de0b6b3a764000081610d7591906131e4565b60118190555050565b6000610d8b848484611de3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a2565b60405180910390fd5b610e6a85610e62611c10565b858403611c18565b60019150509392505050565b60006012905090565b6000610f21610e8c611c10565b848460016000610e9a611c10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c1565b611c18565b6001905092915050565b7f000000000000000000000000529673b193ee4188678e549b0338ff184707698181565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c10565b73ffffffffffffffffffffffffffffffffffffffff16610fde611434565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613072565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c1565b600d81905550600a600d54111561109e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110959061340e565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c10565b73ffffffffffffffffffffffffffffffffffffffff1661117f611434565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613072565b60405180910390fd5b6111df60006125f8565b565b6111e9611c10565b73ffffffffffffffffffffffffffffffffffffffff16611207611434565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613072565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f32565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de9190613443565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c10565b836040518363ffffffff1660e01b815260040161132b929190613470565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e91906134ae565b505b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113a3611c10565b73ffffffffffffffffffffffffffffffffffffffff166113c1611434565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90613072565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611493906131b2565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf906131b2565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b5050505050905090565b600b5481565b600e5481565b60008060016000611531611c10565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061354d565b60405180910390fd5b6116026115f9611c10565b85858403611c18565b600191505092915050565b611615611c10565b73ffffffffffffffffffffffffffffffffffffffff16611633611434565b73ffffffffffffffffffffffffffffffffffffffff1614611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613072565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60006116ba6116b3611c10565b8484611de3565b6001905092915050565b601260029054906101000a900460ff1681565b6116df611c10565b73ffffffffffffffffffffffffffffffffffffffff166116fd611434565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613072565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c10565b73ffffffffffffffffffffffffffffffffffffffff166117d6611434565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613072565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e4565b61184e919061326d565b821015611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906135b9565b60405180910390fd5b6103e8600561189d610ba5565b6118a791906131e4565b6118b1919061326d565b8211156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613625565b60405180910390fd5b81600a8190555060019050919050565b61190b611c10565b73ffffffffffffffffffffffffffffffffffffffff16611929611434565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613072565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7b611c10565b73ffffffffffffffffffffffffffffffffffffffff16611a99611434565b73ffffffffffffffffffffffffffffffffffffffff1614611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613072565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b56906136b7565b60405180910390fd5b611b68816125f8565b50565b600f5481565b60115481565b611b7f611c10565b73ffffffffffffffffffffffffffffffffffffffff16611b9d611434565b73ffffffffffffffffffffffffffffffffffffffff1614611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90613072565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613749565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cef906137db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd69190612e24565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a9061386d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba906138ff565b60405180910390fd5b6000811415611edd57611ed8838360006126be565b6125f3565b60007f000000000000000000000000529673b193ee4188678e549b0338ff184707698173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000529673b193ee4188678e549b0338ff184707698173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fea5750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120405750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612087576000612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d9061396b565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ed5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601260039054906101000a900460ff16155b156121d557811561216a5760115461211d85611111565b8461212891906130c1565b1115612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906139d7565b60405180910390fd5b5b81158015612176575080155b156121d45760115461218785611111565b8461219291906130c1565b11156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613a43565b60405180910390fd5b5b5b60006121e030611111565b90506000600a5482101590508080156122055750601260009054906101000a900460ff165b801561221e5750601260039054906101000a900460ff16155b801561227557507f000000000000000000000000529673b193ee4188678e549b0338ff184707698173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122cb5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123215750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612365576001601260036101000a81548160ff02191690831515021790555061234961293f565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241b5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242557600090505b60008082156125e0577f000000000000000000000000529673b193ee4188678e549b0338ff184707698173ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248b57506000601054115b156124dc576124b860646124aa6010548b61296890919063ffffffff16565b61297e90919063ffffffff16565b9150601054600f54836124cb91906131e4565b6124d5919061326d565b9050612587565b7f000000000000000000000000529673b193ee4188678e549b0338ff184707698173ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253957506000600d54115b15612586576125666064612558600d548b61296890919063ffffffff16565b61297e90919063ffffffff16565b9150600d54600c548361257991906131e4565b612583919061326d565b90505b5b600082111561259c5761259b8a30846126be565b5b60008111156125d1576125d0307f000000000000000000000000529673b193ee4188678e549b0338ff1847076981836126be565b5b81886125dd9190613a63565b97505b6125eb8a8a8a6126be565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127259061386d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612795906138ff565b60405180910390fd5b6127a9838383612994565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282690613b09565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c291906130c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129269190612e24565b60405180910390a3612939848484612999565b50505050565b600061294a30611111565b9050600081141561295b5750612966565b6129648161299e565b505b565b6000818361297691906131e4565b905092915050565b6000818361298c919061326d565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129bb576129ba613b29565b5b6040519080825280602002602001820160405280156129e95781602001602082028036833780820191505090505b5090503081600081518110612a0157612a00613b58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7257612a71613b58565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c18565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5b959493929190613c80565b600060405180830381600087803b158015612b7557600080fd5b505af1158015612b89573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba981612b96565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b60008060408385031215612be357612be2612b91565b5b6000612bf185828601612bb7565b9250506020612c0285828601612bb7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c46578082015181840152602081019050612c2b565b83811115612c55576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7782612c0c565b612c818185612c17565b9350612c91818560208601612c28565b612c9a81612c5b565b840191505092915050565b60006020820190508181036000830152612cbf8184612c6c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf282612cc7565b9050919050565b612d0281612ce7565b8114612d0d57600080fd5b50565b600081359050612d1f81612cf9565b92915050565b60008060408385031215612d3c57612d3b612b91565b5b6000612d4a85828601612d10565b9250506020612d5b85828601612bb7565b9150509250929050565b60008115159050919050565b612d7a81612d65565b82525050565b6000602082019050612d956000830184612d71565b92915050565b6000819050919050565b6000612dc0612dbb612db684612cc7565b612d9b565b612cc7565b9050919050565b6000612dd282612da5565b9050919050565b6000612de482612dc7565b9050919050565b612df481612dd9565b82525050565b6000602082019050612e0f6000830184612deb565b92915050565b612e1e81612b96565b82525050565b6000602082019050612e396000830184612e15565b92915050565b600060208284031215612e5557612e54612b91565b5b6000612e6384828501612d10565b91505092915050565b600060208284031215612e8257612e81612b91565b5b6000612e9084828501612bb7565b91505092915050565b600080600060608486031215612eb257612eb1612b91565b5b6000612ec086828701612d10565b9350506020612ed186828701612d10565b9250506040612ee286828701612bb7565b9150509250925092565b600060ff82169050919050565b612f0281612eec565b82525050565b6000602082019050612f1d6000830184612ef9565b92915050565b612f2c81612ce7565b82525050565b6000602082019050612f476000830184612f23565b92915050565b612f5681612d65565b8114612f6157600080fd5b50565b600081359050612f7381612f4d565b92915050565b600060208284031215612f8f57612f8e612b91565b5b6000612f9d84828501612f64565b91505092915050565b60008060408385031215612fbd57612fbc612b91565b5b6000612fcb85828601612d10565b9250506020612fdc85828601612f64565b9150509250929050565b60008060408385031215612ffd57612ffc612b91565b5b600061300b85828601612d10565b925050602061301c85828601612d10565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305c602083612c17565b915061306782613026565b602082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cc82612b96565b91506130d783612b96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310c5761310b613092565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061314d601d83612c17565b915061315882613117565b602082019050919050565b6000602082019050818103600083015261317c81613140565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ca57607f821691505b602082108114156131de576131dd613183565b5b50919050565b60006131ef82612b96565b91506131fa83612b96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323357613232613092565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327882612b96565b915061328383612b96565b9250826132935761329261323e565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132fa602483612c17565b91506133058261329e565b604082019050919050565b60006020820190508181036000830152613329816132ed565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338c602883612c17565b915061339782613330565b604082019050919050565b600060208201905081810360008301526133bb8161337f565b9050919050565b7f46656573203e2031302500000000000000000000000000000000000000000000600082015250565b60006133f8600a83612c17565b9150613403826133c2565b602082019050919050565b60006020820190508181036000830152613427816133eb565b9050919050565b60008151905061343d81612ba0565b92915050565b60006020828403121561345957613458612b91565b5b60006134678482850161342e565b91505092915050565b60006040820190506134856000830185612f23565b6134926020830184612e15565b9392505050565b6000815190506134a881612f4d565b92915050565b6000602082840312156134c4576134c3612b91565b5b60006134d284828501613499565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613537602583612c17565b9150613542826134db565b604082019050919050565b600060208201905081810360008301526135668161352a565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b60006135a3601683612c17565b91506135ae8261356d565b602082019050919050565b600060208201905081810360008301526135d281613596565b9050919050565b7f3e20302e352520746f74616c20737570706c792e000000000000000000000000600082015250565b600061360f601483612c17565b915061361a826135d9565b602082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136a1602683612c17565b91506136ac82613645565b604082019050919050565b600060208201905081810360008301526136d081613694565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613733602483612c17565b915061373e826136d7565b604082019050919050565b6000602082019050818103600083015261376281613726565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006137c5602283612c17565b91506137d082613769565b604082019050919050565b600060208201905081810360008301526137f4816137b8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613857602583612c17565b9150613862826137fb565b604082019050919050565b600060208201905081810360008301526138868161384a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006138e9602383612c17565b91506138f48261388d565b604082019050919050565b60006020820190508181036000830152613918816138dc565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b6000613955601b83612c17565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b60006139c1601983612c17565b91506139cc8261398b565b602082019050919050565b600060208201905081810360008301526139f0816139b4565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b6000613a2d601e83612c17565b9150613a38826139f7565b602082019050919050565b60006020820190508181036000830152613a5c81613a20565b9050919050565b6000613a6e82612b96565b9150613a7983612b96565b925082821015613a8c57613a8b613092565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613af3602683612c17565b9150613afe82613a97565b604082019050919050565b60006020820190508181036000830152613b2281613ae6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613bac613ba7613ba284613b87565b612d9b565b612b96565b9050919050565b613bbc81613b91565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bf781612ce7565b82525050565b6000613c098383613bee565b60208301905092915050565b6000602082019050919050565b6000613c2d82613bc2565b613c378185613bcd565b9350613c4283613bde565b8060005b83811015613c73578151613c5a8882613bfd565b9750613c6583613c15565b925050600181019050613c46565b5085935050505092915050565b600060a082019050613c956000830188612e15565b613ca26020830187613bb3565b8181036040830152613cb48186613c22565b9050613cc36060830185612f23565b613cd06080830184612e15565b969550505050505056fea26469706673582212202970864a8209d564cea360c96c69e59764f7f8463f2e1d68c6d7415562edf99864736f6c634300080a0033

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.