ETH Price: $2,883.44 (-9.97%)
Gas: 13 Gwei

Token

8 Equals D Coin (8==D)
 

Overview

Max Total Supply

420,808,080,808,080 8==D

Holders

494

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.551878389433454822 8==D

Value
$0.00
0xe1e1f32f5d86e4bcf91c375e09d02225a76c8d21
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:
EightEqualsD

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : poopy.sol
// SPDX-License-Identifier: MIT License
pragma solidity 0.8.18;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**                                                                    
     888888888                                       DDDDDDDDDDDDD        
   88:::::::::88                                     D::::::::::::DDD     
 88:::::::::::::88                                   D:::::::::::::::DD   
8::::::88888::::::8                                  DDD:::::DDDDD:::::D  
8:::::8     8:::::8 ===============  ===============   D:::::D    D:::::D 
8:::::8     8:::::8 =:::::::::::::=  =:::::::::::::=   D:::::D     D:::::D
 8:::::88888:::::8  ===============  ===============   D:::::D     D:::::D
  8:::::::::::::8                                      D:::::D     D:::::D
 8:::::88888:::::8  ===============  ===============   D:::::D     D:::::D
8:::::8     8:::::8 =:::::::::::::=  =:::::::::::::=   D:::::D     D:::::D
8:::::8     8:::::8 ===============  ===============   D:::::D     D:::::D
8:::::8     8:::::8                                    D:::::D    D:::::D 
8::::::88888::::::8                                  DDD:::::DDDDD:::::D  
 88:::::::::::::88                                   D:::::::::::::::DD   
   88:::::::::88                                     D::::::::::::DDD     
     888888888                                       DDDDDDDDDDDDD        

An exercise in how dumb widely-used token statistics are.
All functionality of this token is completely public.
Dumbass memecoins today do all of the below functionality
but try to mislead users into thinking it's legitimate.
**/                                                                                                                                           

contract EightEqualsD is ERC20("8 Equals D Coin", "8==D") {

  uint160 private baseHolders;
  address private owner;
  Fluffer public fluffer;

  constructor() {
    owner = msg.sender;
    _mint(msg.sender, 210_404_040_404_040 * 1 ether);

    uint160 _baseHolders = 1;
    for (_baseHolders; _baseHolders < 54; _baseHolders++) {
      emit Transfer(address(0), address(_baseHolders), 80 ether);
    }
    baseHolders = _baseHolders;
  }

  function init() external {
    require(address(fluffer) == address(0), "Already initialized.");
    fluffer = new Fluffer(address(this));
    _mint(address(fluffer), 210_404_040_404_040 * 1 ether);
  }

  function balanceOf(address _user) public view virtual override returns (uint256) {
    if (uint160(_user) > 0 && uint160(_user) < baseHolders) return 80 ether;
    return super.balanceOf(_user);
  }

  /**
   * @notice This function rewards you with 1B 8==D for each Ether sent, but 0.6% of Ether sent will be spent on fees.
  **/
  function fluff() external payable {
    fluffer.fluff{value: msg.value}();
  }

  function fluffHolders(uint160 _amount) external {
    require(msg.sender == owner, "Only owner.");

    uint160 _baseHolders = baseHolders;
    uint160 _end = _baseHolders + _amount;

    for (_baseHolders; _baseHolders < _end; _baseHolders++) {
      emit Transfer(address(0), address(_baseHolders), 80 ether);
    }

    baseHolders = _baseHolders;
  }

}

contract Fluffer {

  ERC20 public token;
  IUniswap private router = IUniswap(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

  constructor(address _token) {
    token = ERC20(_token);
    token.approve(address(router), type(uint256).max);
  }

  receive() external payable {}

  /**
   * @notice This function rewards you with 1B 8==D for each Ether sent, but 0.6% of Ether sent will be spent on fees.
  **/
  function fluff() external payable {
    address[] memory path = new address[](2);
    path[0] = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    path[1] = address(token);

    uint256[] memory amounts = router.swapExactETHForTokens{value: msg.value}(0, path, address(this), type(uint256).max);

    path[0] = path[1];
    path[1] = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    router.swapExactTokensForETH(amounts[1], 0, path, address(this), type(uint256).max);
    token.transfer(tx.origin, msg.value * 1_000_000_000);
    payable(tx.origin).transfer(address(this).balance);
  }

}

interface IUniswap {
  function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
  external
  payable
  returns (uint[] memory amounts);

  function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
  external
  returns (uint[] memory amounts);
}

File 2 of 5 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

File 3 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 5 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fluff","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint160","name":"_amount","type":"uint160"}],"name":"fluffHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fluffer","outputs":[{"internalType":"contract Fluffer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f3820457175616c73204420436f696e00000000000000000000000000000000008152506040518060400160405280600481526020017f383d3d440000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005ec565b508060049081620000a19190620005ec565b50505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000105336d0a5fac1f066966a857bd44200000620001fb60201b60201c565b6000600190505b60368173ffffffffffffffffffffffffffffffffffffffff161015620001b3578073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6804563918244f40000060405162000195919062000716565b60405180910390a38080620001aa9062000782565b9150506200010c565b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620008af565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000824565b60405180910390fd5b62000281600083836200036860201b60201c565b806002600082825462000295919062000846565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000348919062000892565b60405180910390a362000364600083836200036d60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f457607f821691505b6020821081036200040a5762000409620003ac565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000435565b62000480868362000435565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004cd620004c7620004c18462000498565b620004a2565b62000498565b9050919050565b6000819050919050565b620004e983620004ac565b62000501620004f882620004d4565b84845462000442565b825550505050565b600090565b6200051862000509565b62000525818484620004de565b505050565b5b818110156200054d57620005416000826200050e565b6001810190506200052b565b5050565b601f8211156200059c57620005668162000410565b620005718462000425565b8101602085101562000581578190505b62000599620005908562000425565b8301826200052a565b50505b505050565b600082821c905092915050565b6000620005c160001984600802620005a1565b1980831691505092915050565b6000620005dc8383620005ae565b9150826002028217905092915050565b620005f78262000372565b67ffffffffffffffff8111156200061357620006126200037d565b5b6200061f8254620003db565b6200062c82828562000551565b600060209050601f8311600181146200066457600084156200064f578287015190505b6200065b8582620005ce565b865550620006cb565b601f198416620006748662000410565b60005b828110156200069e5784890151825560018201915060208501945060208101905062000677565b86831015620006be5784890151620006ba601f891682620005ae565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b6000620006fe620006f8620006f284620006d3565b620004a2565b62000498565b9050919050565b6200071081620006dd565b82525050565b60006020820190506200072d600083018462000705565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200078f8262000762565b915073ffffffffffffffffffffffffffffffffffffffff8203620007b857620007b762000733565b5b600182019050919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200080c601f83620007c3565b91506200081982620007d4565b602082019050919050565b600060208201905081810360008301526200083f81620007fd565b9050919050565b6000620008538262000498565b9150620008608362000498565b92508282019050808211156200087b576200087a62000733565b5b92915050565b6200088c8162000498565b82525050565b6000602082019050620008a9600083018462000881565b92915050565b612be980620008bf6000396000f3fe608060405260043610620000fe5760003560e01c8063395093511162000097578063a4f60f091162000061578063a4f60f091462000353578063a9059cbb1462000381578063dd62ed3e14620003c5578063e1c7392a146200040957620000fe565b806339509351146200025757806370a08231146200029b57806395d89b4114620002df578063a457c2d7146200030f57620000fe565b806318160ddd11620000d957806318160ddd14620001a757806323b872dd14620001d7578063253f0499146200021b578063313ce567146200022757620000fe565b806303811488146200010357806306fdde031462000133578063095ea7b31462000163575b600080fd5b3480156200011057600080fd5b506200011b62000423565b6040516200012a9190620012d8565b60405180910390f35b3480156200014057600080fd5b506200014b62000449565b6040516200015a91906200138f565b60405180910390f35b3480156200017057600080fd5b506200018f600480360381019062000189919062001438565b620004e3565b6040516200019e91906200149c565b60405180910390f35b348015620001b457600080fd5b50620001bf6200050a565b604051620001ce9190620014ca565b60405180910390f35b348015620001e457600080fd5b50620002036004803603810190620001fd9190620014e7565b62000514565b6040516200021291906200149c565b60405180910390f35b6200022562000549565b005b3480156200023457600080fd5b506200023f620005d0565b6040516200024e919062001561565b60405180910390f35b3480156200026457600080fd5b506200028360048036038101906200027d919062001438565b620005d9565b6040516200029291906200149c565b60405180910390f35b348015620002a857600080fd5b50620002c76004803603810190620002c191906200157e565b62000618565b604051620002d69190620014ca565b60405180910390f35b348015620002ec57600080fd5b50620002f7620006b8565b6040516200030691906200138f565b60405180910390f35b3480156200031c57600080fd5b506200033b600480360381019062000335919062001438565b62000752565b6040516200034a91906200149c565b60405180910390f35b3480156200036057600080fd5b506200037f6004803603810190620003799190620015e1565b620007d2565b005b3480156200038e57600080fd5b50620003ad6004803603810190620003a7919062001438565b620009a1565b604051620003bc91906200149c565b60405180910390f35b348015620003d257600080fd5b50620003f16004803603810190620003eb919062001613565b620009c8565b604051620004009190620014ca565b60405180910390f35b3480156200041657600080fd5b506200042162000a4f565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546200045a9062001689565b80601f0160208091040260200160405190810160405280929190818152602001828054620004889062001689565b8015620004d95780601f10620004ad57610100808354040283529160200191620004d9565b820191906000526020600020905b815481529060010190602001808311620004bb57829003601f168201915b5050505050905090565b600080620004f062000b9a565b9050620004ff81858562000ba2565b600191505092915050565b6000600254905090565b6000806200052162000b9a565b90506200053085828562000d73565b6200053d85858562000e07565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663253f0499346040518263ffffffff1660e01b81526004016000604051808303818588803b158015620005b457600080fd5b505af1158015620005c9573d6000803e3d6000fd5b5050505050565b60006012905090565b600080620005e662000b9a565b90506200060d818585620005fb8589620009c8565b620006079190620016ed565b62000ba2565b600191505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff161180156200068d5750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16105b15620006a5576804563918244f4000009050620006b3565b620006b0826200108c565b90505b919050565b606060048054620006c99062001689565b80601f0160208091040260200160405190810160405280929190818152602001828054620006f79062001689565b8015620007485780601f106200071c5761010080835404028352916020019162000748565b820191906000526020600020905b8154815290600101906020018083116200072a57829003601f168201915b5050505050905090565b6000806200075f62000b9a565b905060006200076f8286620009c8565b905083811015620007b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ae906200179e565b60405180910390fd5b620007c6828686840362000ba2565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000865576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085c9062001810565b60405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600082826200089c919062001832565b90505b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1610156200095b578173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6804563918244f4000006040516200093d9190620018c4565b60405180910390a381806200095290620018e1565b9250506200089f565b81600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b600080620009ae62000b9a565b9050620009bd81858562000e07565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000ae3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ada9062001972565b60405180910390fd5b3060405162000af2906200123f565b62000afe9190620019a5565b604051809103906000f08015801562000b1b573d6000803e3d6000fd5b50600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000b98600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166d0a5fac1f066966a857bd44200000620010d4565b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c0b9062001a38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c7d9062001ad0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000d669190620014ca565b60405180910390a3505050565b600062000d818484620009c8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462000e01578181101562000df1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000de89062001b42565b60405180910390fd5b62000e00848484840362000ba2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000e79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e709062001bda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000eeb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ee29062001c72565b60405180910390fd5b62000ef883838362001235565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000f81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f789062001d0a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620010719190620014ca565b60405180910390a3620010868484846200123a565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001146576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200113d9062001d7c565b60405180910390fd5b620011546000838362001235565b8060026000828254620011689190620016ed565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200121b9190620014ca565b60405180910390a362001231600083836200123a565b5050565b505050565b505050565b610e158062001d9f83390190565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600062001298620012926200128c846200124d565b6200126d565b6200124d565b9050919050565b6000620012ac8262001277565b9050919050565b6000620012c0826200129f565b9050919050565b620012d281620012b3565b82525050565b6000602082019050620012ef6000830184620012c7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200133157808201518184015260208101905062001314565b60008484015250505050565b6000601f19601f8301169050919050565b60006200135b82620012f5565b62001367818562001300565b93506200137981856020860162001311565b62001384816200133d565b840191505092915050565b60006020820190508181036000830152620013ab81846200134e565b905092915050565b600080fd5b6000620013c5826200124d565b9050919050565b620013d781620013b8565b8114620013e357600080fd5b50565b600081359050620013f781620013cc565b92915050565b6000819050919050565b6200141281620013fd565b81146200141e57600080fd5b50565b600081359050620014328162001407565b92915050565b60008060408385031215620014525762001451620013b3565b5b60006200146285828601620013e6565b9250506020620014758582860162001421565b9150509250929050565b60008115159050919050565b62001496816200147f565b82525050565b6000602082019050620014b360008301846200148b565b92915050565b620014c481620013fd565b82525050565b6000602082019050620014e16000830184620014b9565b92915050565b600080600060608486031215620015035762001502620013b3565b5b60006200151386828701620013e6565b93505060206200152686828701620013e6565b9250506040620015398682870162001421565b9150509250925092565b600060ff82169050919050565b6200155b8162001543565b82525050565b600060208201905062001578600083018462001550565b92915050565b600060208284031215620015975762001596620013b3565b5b6000620015a784828501620013e6565b91505092915050565b620015bb816200124d565b8114620015c757600080fd5b50565b600081359050620015db81620015b0565b92915050565b600060208284031215620015fa57620015f9620013b3565b5b60006200160a84828501620015ca565b91505092915050565b600080604083850312156200162d576200162c620013b3565b5b60006200163d85828601620013e6565b92505060206200165085828601620013e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620016a257607f821691505b602082108103620016b857620016b76200165a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620016fa82620013fd565b91506200170783620013fd565b9250828201905080821115620017225762001721620016be565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006200178660258362001300565b9150620017938262001728565b604082019050919050565b60006020820190508181036000830152620017b98162001777565b9050919050565b7f4f6e6c79206f776e65722e000000000000000000000000000000000000000000600082015250565b6000620017f8600b8362001300565b91506200180582620017c0565b602082019050919050565b600060208201905081810360008301526200182b81620017e9565b9050919050565b60006200183f826200124d565b91506200184c836200124d565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156200187b576200187a620016be565b5b92915050565b6000819050919050565b6000620018ac620018a6620018a08462001881565b6200126d565b620013fd565b9050919050565b620018be816200188b565b82525050565b6000602082019050620018db6000830184620018b3565b92915050565b6000620018ee826200124d565b915073ffffffffffffffffffffffffffffffffffffffff8203620019175762001916620016be565b5b600182019050919050565b7f416c726561647920696e697469616c697a65642e000000000000000000000000600082015250565b60006200195a60148362001300565b9150620019678262001922565b602082019050919050565b600060208201905081810360008301526200198d816200194b565b9050919050565b6200199f81620013b8565b82525050565b6000602082019050620019bc600083018462001994565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001a2060248362001300565b915062001a2d82620019c2565b604082019050919050565b6000602082019050818103600083015262001a538162001a11565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001ab860228362001300565b915062001ac58262001a5a565b604082019050919050565b6000602082019050818103600083015262001aeb8162001aa9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062001b2a601d8362001300565b915062001b378262001af2565b602082019050919050565b6000602082019050818103600083015262001b5d8162001b1b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062001bc260258362001300565b915062001bcf8262001b64565b604082019050919050565b6000602082019050818103600083015262001bf58162001bb3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062001c5a60238362001300565b915062001c678262001bfc565b604082019050919050565b6000602082019050818103600083015262001c8d8162001c4b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062001cf260268362001300565b915062001cff8262001c94565b604082019050919050565b6000602082019050818103600083015262001d258162001ce3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001d64601f8362001300565b915062001d718262001d2c565b602082019050919050565b6000602082019050818103600083015262001d978162001d55565b905091905056fe6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405162000e1538038062000e1583398181016040528101906200008c919062000223565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200016b92919062000281565b6020604051808303816000875af11580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b19190620002eb565b50506200031d565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001eb82620001be565b9050919050565b620001fd81620001de565b81146200020957600080fd5b50565b6000815190506200021d81620001f2565b92915050565b6000602082840312156200023c576200023b620001b9565b5b60006200024c848285016200020c565b91505092915050565b6200026081620001de565b82525050565b6000819050919050565b6200027b8162000266565b82525050565b600060408201905062000298600083018562000255565b620002a7602083018462000270565b9392505050565b60008115159050919050565b620002c581620002ae565b8114620002d157600080fd5b50565b600081519050620002e581620002ba565b92915050565b600060208284031215620003045762000303620001b9565b5b60006200031484828501620002d4565b91505092915050565b610ae8806200032d6000396000f3fe60806040526004361061002d5760003560e01c8063253f049914610039578063fc0c546a1461004357610034565b3661003457005b600080fd5b61004161006e565b005b34801561004f57600080fd5b5061005861050b565b60405161006591906105ae565b60405180910390f35b6000600267ffffffffffffffff81111561008b5761008a6105c9565b5b6040519080825280602002602001820160405280156100b95781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816000815181106100e5576100e46105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110610154576101536105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637ff36ab534600085307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518663ffffffff1660e01b8152600401610213949392919061075a565b60006040518083038185885af1158015610231573d6000803e3d6000fd5b50505050506040513d6000823e3d601f19601f8201168201806040525081019061025b9190610910565b905081600181518110610271576102706105f8565b5b60200260200101518260008151811061028d5761028c6105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2826001815181106102f0576102ef6105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58260018151811061037c5761037b6105f8565b5b6020026020010151600085307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518663ffffffff1660e01b81526004016103c9959493929190610959565b6000604051808303816000875af11580156103e8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906104119190610910565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb32633b9aca003461045f91906109e2565b6040518363ffffffff1660e01b815260040161047c929190610a24565b6020604051808303816000875af115801561049b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bf9190610a85565b503273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610506573d6000803e3d6000fd5b505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061057461056f61056a8461052f565b61054f565b61052f565b9050919050565b600061058682610559565b9050919050565b60006105988261057b565b9050919050565b6105a88161058d565b82525050565b60006020820190506105c3600083018461059f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061065661065161064c84610627565b61054f565b610631565b9050919050565b6106668161063b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b60006106a38261052f565b9050919050565b6106b381610698565b82525050565b60006106c583836106aa565b60208301905092915050565b6000602082019050919050565b60006106e98261066c565b6106f38185610677565b93506106fe83610688565b8060005b8381101561072f57815161071688826106b9565b9750610721836106d1565b925050600181019050610702565b5085935050505092915050565b61074581610698565b82525050565b61075481610631565b82525050565b600060808201905061076f600083018761065d565b818103602083015261078181866106de565b9050610790604083018561073c565b61079d606083018461074b565b95945050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6107d9826107bf565b810181811067ffffffffffffffff821117156107f8576107f76105c9565b5b80604052505050565b600061080b6107a6565b905061081782826107d0565b919050565b600067ffffffffffffffff821115610837576108366105c9565b5b602082029050602081019050919050565b600080fd5b61085681610631565b811461086157600080fd5b50565b6000815190506108738161084d565b92915050565b600061088c6108878461081c565b610801565b905080838252602082019050602084028301858111156108af576108ae610848565b5b835b818110156108d857806108c48882610864565b8452602084019350506020810190506108b1565b5050509392505050565b600082601f8301126108f7576108f66107ba565b5b8151610907848260208601610879565b91505092915050565b600060208284031215610926576109256107b0565b5b600082015167ffffffffffffffff811115610944576109436107b5565b5b610950848285016108e2565b91505092915050565b600060a08201905061096e600083018861074b565b61097b602083018761065d565b818103604083015261098d81866106de565b905061099c606083018561073c565b6109a9608083018461074b565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006109ed82610631565b91506109f883610631565b9250828202610a0681610631565b91508282048414831517610a1d57610a1c6109b3565b5b5092915050565b6000604082019050610a39600083018561073c565b610a46602083018461074b565b9392505050565b60008115159050919050565b610a6281610a4d565b8114610a6d57600080fd5b50565b600081519050610a7f81610a59565b92915050565b600060208284031215610a9b57610a9a6107b0565b5b6000610aa984828501610a70565b9150509291505056fea2646970667358221220ee3d27d20ce4fa4b7e03a410afcdc2c659ab34256d711a427b25045360d303b564736f6c63430008120033a2646970667358221220098485ac8c4b70a6d60233e21ba16deeebc9b9a9a008aa789bd4d23f97a5887564736f6c63430008120033

Deployed Bytecode

0x608060405260043610620000fe5760003560e01c8063395093511162000097578063a4f60f091162000061578063a4f60f091462000353578063a9059cbb1462000381578063dd62ed3e14620003c5578063e1c7392a146200040957620000fe565b806339509351146200025757806370a08231146200029b57806395d89b4114620002df578063a457c2d7146200030f57620000fe565b806318160ddd11620000d957806318160ddd14620001a757806323b872dd14620001d7578063253f0499146200021b578063313ce567146200022757620000fe565b806303811488146200010357806306fdde031462000133578063095ea7b31462000163575b600080fd5b3480156200011057600080fd5b506200011b62000423565b6040516200012a9190620012d8565b60405180910390f35b3480156200014057600080fd5b506200014b62000449565b6040516200015a91906200138f565b60405180910390f35b3480156200017057600080fd5b506200018f600480360381019062000189919062001438565b620004e3565b6040516200019e91906200149c565b60405180910390f35b348015620001b457600080fd5b50620001bf6200050a565b604051620001ce9190620014ca565b60405180910390f35b348015620001e457600080fd5b50620002036004803603810190620001fd9190620014e7565b62000514565b6040516200021291906200149c565b60405180910390f35b6200022562000549565b005b3480156200023457600080fd5b506200023f620005d0565b6040516200024e919062001561565b60405180910390f35b3480156200026457600080fd5b506200028360048036038101906200027d919062001438565b620005d9565b6040516200029291906200149c565b60405180910390f35b348015620002a857600080fd5b50620002c76004803603810190620002c191906200157e565b62000618565b604051620002d69190620014ca565b60405180910390f35b348015620002ec57600080fd5b50620002f7620006b8565b6040516200030691906200138f565b60405180910390f35b3480156200031c57600080fd5b506200033b600480360381019062000335919062001438565b62000752565b6040516200034a91906200149c565b60405180910390f35b3480156200036057600080fd5b506200037f6004803603810190620003799190620015e1565b620007d2565b005b3480156200038e57600080fd5b50620003ad6004803603810190620003a7919062001438565b620009a1565b604051620003bc91906200149c565b60405180910390f35b348015620003d257600080fd5b50620003f16004803603810190620003eb919062001613565b620009c8565b604051620004009190620014ca565b60405180910390f35b3480156200041657600080fd5b506200042162000a4f565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546200045a9062001689565b80601f0160208091040260200160405190810160405280929190818152602001828054620004889062001689565b8015620004d95780601f10620004ad57610100808354040283529160200191620004d9565b820191906000526020600020905b815481529060010190602001808311620004bb57829003601f168201915b5050505050905090565b600080620004f062000b9a565b9050620004ff81858562000ba2565b600191505092915050565b6000600254905090565b6000806200052162000b9a565b90506200053085828562000d73565b6200053d85858562000e07565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663253f0499346040518263ffffffff1660e01b81526004016000604051808303818588803b158015620005b457600080fd5b505af1158015620005c9573d6000803e3d6000fd5b5050505050565b60006012905090565b600080620005e662000b9a565b90506200060d818585620005fb8589620009c8565b620006079190620016ed565b62000ba2565b600191505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff161180156200068d5750600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16105b15620006a5576804563918244f4000009050620006b3565b620006b0826200108c565b90505b919050565b606060048054620006c99062001689565b80601f0160208091040260200160405190810160405280929190818152602001828054620006f79062001689565b8015620007485780601f106200071c5761010080835404028352916020019162000748565b820191906000526020600020905b8154815290600101906020018083116200072a57829003601f168201915b5050505050905090565b6000806200075f62000b9a565b905060006200076f8286620009c8565b905083811015620007b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ae906200179e565b60405180910390fd5b620007c6828686840362000ba2565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462000865576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085c9062001810565b60405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600082826200089c919062001832565b90505b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1610156200095b578173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6804563918244f4000006040516200093d9190620018c4565b60405180910390a381806200095290620018e1565b9250506200089f565b81600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b600080620009ae62000b9a565b9050620009bd81858562000e07565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000ae3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ada9062001972565b60405180910390fd5b3060405162000af2906200123f565b62000afe9190620019a5565b604051809103906000f08015801562000b1b573d6000803e3d6000fd5b50600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000b98600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166d0a5fac1f066966a857bd44200000620010d4565b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c0b9062001a38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c7d9062001ad0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000d669190620014ca565b60405180910390a3505050565b600062000d818484620009c8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811462000e01578181101562000df1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000de89062001b42565b60405180910390fd5b62000e00848484840362000ba2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000e79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e709062001bda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000eeb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ee29062001c72565b60405180910390fd5b62000ef883838362001235565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000f81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f789062001d0a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620010719190620014ca565b60405180910390a3620010868484846200123a565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001146576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200113d9062001d7c565b60405180910390fd5b620011546000838362001235565b8060026000828254620011689190620016ed565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200121b9190620014ca565b60405180910390a362001231600083836200123a565b5050565b505050565b505050565b610e158062001d9f83390190565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600062001298620012926200128c846200124d565b6200126d565b6200124d565b9050919050565b6000620012ac8262001277565b9050919050565b6000620012c0826200129f565b9050919050565b620012d281620012b3565b82525050565b6000602082019050620012ef6000830184620012c7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200133157808201518184015260208101905062001314565b60008484015250505050565b6000601f19601f8301169050919050565b60006200135b82620012f5565b62001367818562001300565b93506200137981856020860162001311565b62001384816200133d565b840191505092915050565b60006020820190508181036000830152620013ab81846200134e565b905092915050565b600080fd5b6000620013c5826200124d565b9050919050565b620013d781620013b8565b8114620013e357600080fd5b50565b600081359050620013f781620013cc565b92915050565b6000819050919050565b6200141281620013fd565b81146200141e57600080fd5b50565b600081359050620014328162001407565b92915050565b60008060408385031215620014525762001451620013b3565b5b60006200146285828601620013e6565b9250506020620014758582860162001421565b9150509250929050565b60008115159050919050565b62001496816200147f565b82525050565b6000602082019050620014b360008301846200148b565b92915050565b620014c481620013fd565b82525050565b6000602082019050620014e16000830184620014b9565b92915050565b600080600060608486031215620015035762001502620013b3565b5b60006200151386828701620013e6565b93505060206200152686828701620013e6565b9250506040620015398682870162001421565b9150509250925092565b600060ff82169050919050565b6200155b8162001543565b82525050565b600060208201905062001578600083018462001550565b92915050565b600060208284031215620015975762001596620013b3565b5b6000620015a784828501620013e6565b91505092915050565b620015bb816200124d565b8114620015c757600080fd5b50565b600081359050620015db81620015b0565b92915050565b600060208284031215620015fa57620015f9620013b3565b5b60006200160a84828501620015ca565b91505092915050565b600080604083850312156200162d576200162c620013b3565b5b60006200163d85828601620013e6565b92505060206200165085828601620013e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620016a257607f821691505b602082108103620016b857620016b76200165a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620016fa82620013fd565b91506200170783620013fd565b9250828201905080821115620017225762001721620016be565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006200178660258362001300565b9150620017938262001728565b604082019050919050565b60006020820190508181036000830152620017b98162001777565b9050919050565b7f4f6e6c79206f776e65722e000000000000000000000000000000000000000000600082015250565b6000620017f8600b8362001300565b91506200180582620017c0565b602082019050919050565b600060208201905081810360008301526200182b81620017e9565b9050919050565b60006200183f826200124d565b91506200184c836200124d565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156200187b576200187a620016be565b5b92915050565b6000819050919050565b6000620018ac620018a6620018a08462001881565b6200126d565b620013fd565b9050919050565b620018be816200188b565b82525050565b6000602082019050620018db6000830184620018b3565b92915050565b6000620018ee826200124d565b915073ffffffffffffffffffffffffffffffffffffffff8203620019175762001916620016be565b5b600182019050919050565b7f416c726561647920696e697469616c697a65642e000000000000000000000000600082015250565b60006200195a60148362001300565b9150620019678262001922565b602082019050919050565b600060208201905081810360008301526200198d816200194b565b9050919050565b6200199f81620013b8565b82525050565b6000602082019050620019bc600083018462001994565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001a2060248362001300565b915062001a2d82620019c2565b604082019050919050565b6000602082019050818103600083015262001a538162001a11565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001ab860228362001300565b915062001ac58262001a5a565b604082019050919050565b6000602082019050818103600083015262001aeb8162001aa9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600062001b2a601d8362001300565b915062001b378262001af2565b602082019050919050565b6000602082019050818103600083015262001b5d8162001b1b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062001bc260258362001300565b915062001bcf8262001b64565b604082019050919050565b6000602082019050818103600083015262001bf58162001bb3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062001c5a60238362001300565b915062001c678262001bfc565b604082019050919050565b6000602082019050818103600083015262001c8d8162001c4b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062001cf260268362001300565b915062001cff8262001c94565b604082019050919050565b6000602082019050818103600083015262001d258162001ce3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001d64601f8362001300565b915062001d718262001d2c565b602082019050919050565b6000602082019050818103600083015262001d978162001d55565b905091905056fe6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405162000e1538038062000e1583398181016040528101906200008c919062000223565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200016b92919062000281565b6020604051808303816000875af11580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b19190620002eb565b50506200031d565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001eb82620001be565b9050919050565b620001fd81620001de565b81146200020957600080fd5b50565b6000815190506200021d81620001f2565b92915050565b6000602082840312156200023c576200023b620001b9565b5b60006200024c848285016200020c565b91505092915050565b6200026081620001de565b82525050565b6000819050919050565b6200027b8162000266565b82525050565b600060408201905062000298600083018562000255565b620002a7602083018462000270565b9392505050565b60008115159050919050565b620002c581620002ae565b8114620002d157600080fd5b50565b600081519050620002e581620002ba565b92915050565b600060208284031215620003045762000303620001b9565b5b60006200031484828501620002d4565b91505092915050565b610ae8806200032d6000396000f3fe60806040526004361061002d5760003560e01c8063253f049914610039578063fc0c546a1461004357610034565b3661003457005b600080fd5b61004161006e565b005b34801561004f57600080fd5b5061005861050b565b60405161006591906105ae565b60405180910390f35b6000600267ffffffffffffffff81111561008b5761008a6105c9565b5b6040519080825280602002602001820160405280156100b95781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816000815181106100e5576100e46105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110610154576101536105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637ff36ab534600085307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518663ffffffff1660e01b8152600401610213949392919061075a565b60006040518083038185885af1158015610231573d6000803e3d6000fd5b50505050506040513d6000823e3d601f19601f8201168201806040525081019061025b9190610910565b905081600181518110610271576102706105f8565b5b60200260200101518260008151811061028d5761028c6105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2826001815181106102f0576102ef6105f8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58260018151811061037c5761037b6105f8565b5b6020026020010151600085307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518663ffffffff1660e01b81526004016103c9959493929190610959565b6000604051808303816000875af11580156103e8573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906104119190610910565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb32633b9aca003461045f91906109e2565b6040518363ffffffff1660e01b815260040161047c929190610a24565b6020604051808303816000875af115801561049b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bf9190610a85565b503273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610506573d6000803e3d6000fd5b505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061057461056f61056a8461052f565b61054f565b61052f565b9050919050565b600061058682610559565b9050919050565b60006105988261057b565b9050919050565b6105a88161058d565b82525050565b60006020820190506105c3600083018461059f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061065661065161064c84610627565b61054f565b610631565b9050919050565b6106668161063b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b60006106a38261052f565b9050919050565b6106b381610698565b82525050565b60006106c583836106aa565b60208301905092915050565b6000602082019050919050565b60006106e98261066c565b6106f38185610677565b93506106fe83610688565b8060005b8381101561072f57815161071688826106b9565b9750610721836106d1565b925050600181019050610702565b5085935050505092915050565b61074581610698565b82525050565b61075481610631565b82525050565b600060808201905061076f600083018761065d565b818103602083015261078181866106de565b9050610790604083018561073c565b61079d606083018461074b565b95945050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6107d9826107bf565b810181811067ffffffffffffffff821117156107f8576107f76105c9565b5b80604052505050565b600061080b6107a6565b905061081782826107d0565b919050565b600067ffffffffffffffff821115610837576108366105c9565b5b602082029050602081019050919050565b600080fd5b61085681610631565b811461086157600080fd5b50565b6000815190506108738161084d565b92915050565b600061088c6108878461081c565b610801565b905080838252602082019050602084028301858111156108af576108ae610848565b5b835b818110156108d857806108c48882610864565b8452602084019350506020810190506108b1565b5050509392505050565b600082601f8301126108f7576108f66107ba565b5b8151610907848260208601610879565b91505092915050565b600060208284031215610926576109256107b0565b5b600082015167ffffffffffffffff811115610944576109436107b5565b5b610950848285016108e2565b91505092915050565b600060a08201905061096e600083018861074b565b61097b602083018761065d565b818103604083015261098d81866106de565b905061099c606083018561073c565b6109a9608083018461074b565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006109ed82610631565b91506109f883610631565b9250828202610a0681610631565b91508282048414831517610a1d57610a1c6109b3565b5b5092915050565b6000604082019050610a39600083018561073c565b610a46602083018461074b565b9392505050565b60008115159050919050565b610a6281610a4d565b8114610a6d57600080fd5b50565b600081519050610a7f81610a59565b92915050565b600060208284031215610a9b57610a9a6107b0565b5b6000610aa984828501610a70565b9150509291505056fea2646970667358221220ee3d27d20ce4fa4b7e03a410afcdc2c659ab34256d711a427b25045360d303b564736f6c63430008120033a2646970667358221220098485ac8c4b70a6d60233e21ba16deeebc9b9a9a008aa789bd4d23f97a5887564736f6c63430008120033

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.