ETH Price: $3,536.99 (+15.04%)
Gas: 60 Gwei

Token

Dogecoin20 (DOGE20)
 

Overview

Max Total Supply

139,999,999,999.9999999999999995 DOGE20

Holders

24,202

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V3: DOGE20
Balance
9,889,366,782.615783393196254336 DOGE20

Value
$0.00
0xd7f70a72e1693804a42afd9d73c77b2f1f8f8f6d
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:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Dogecoin20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

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

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

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

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

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

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

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

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

  /**
   * @dev Throws if the sender is not the owner.
   */
  function _checkOwner() internal view virtual {
    require(owner() == _msgSender(), 'Ownable: caller is not the owner');
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby disabling any functionality that is only available to the owner.
   */
  function renounceOwnership() public virtual onlyOwner {
    _transferOwnership(address(0));
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Can only be called by the current owner.
   */
  function transferOwnership(address newOwner) public virtual onlyOwner {
    require(newOwner != address(0), 'Ownable: new owner is the zero address');
    _transferOwnership(newOwner);
  }

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

contract Token is Context, IERC20Metadata, Ownable {
  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;
  uint8 private constant _decimals = 18;
  uint256 public constant presaleReserve = 70_000_000_000 * (10 ** _decimals);
  uint256 public constant stakingReserve = 35_000_000_000 * (10 ** _decimals);
  uint256 public constant projectFundReserve = 21_000_000_000 * (10 ** _decimals);
  uint256 public constant liquidityReserve = 14_000_000_000 * (10 ** _decimals);

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = 'Dogecoin20';
    _symbol = 'DOGE20';
    _mint(0x1B1050eA03ad75079B289F0Dd2C0db70D427ccd9, presaleReserve);
    _mint(0x7D4ab6E15958e6845e8768A1d429AfEAD607CFfa, stakingReserve);
    _mint(0x6BFb8E1C18652B4b736dD21F07D0eFEd23Ff4236, projectFundReserve);
    _mint(0xE36Bf8eBecB4423C434674aa916a0666a4dD7BD1, liquidityReserve);
  }

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

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

  /**
   * @dev Returns the number of decimals used for token display.
   * @return The number of decimals.
   */
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the total supply of the token.
   * @return The total supply.
   */
  function totalSupply() public view virtual override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev Returns the balance of the specified account.
   * @param account The address to check the balance for.
   * @return The balance of the account.
   */
  function balanceOf(address account) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev Transfers tokens from the caller to a specified recipient.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
   * @param from The address that approves the spending.
   * @param to The address that is allowed to spend.
   * @return The remaining allowance for the spender.
   */
  function allowance(address from, address to) public view virtual override returns (uint256) {
    return _allowances[from][to];
  }

  /**
   * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
   * @param to The address to approve the spending for.
   * @param amount The amount of tokens to approve.
   * @return A boolean value indicating whether the approval was successful.
   */
  function approve(address to, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), to, amount);
    return true;
  }

  /**
   * @dev Transfers tokens from one address to another.
   * @param sender The address to transfer tokens from.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  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 Increases the allowance of the specified address to spend tokens on behalf of the caller.
   * @param to The address to increase the allowance for.
   * @param addedValue The amount of tokens to increase the allowance by.
   * @return A boolean value indicating whether the increase was successful.
   */
  function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
    return true;
  }

  /**
   * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
   * @param to The account allowed to spend the tokens.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   * @return A boolean value indicating whether the operation succeeded.
   */
  function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) {
    uint256 currentAllowance = _allowances[_msgSender()][to];
    require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
      _approve(_msgSender(), to, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Transfers `amount` tokens from `sender` to `recipient`.
   * @param sender The account to transfer tokens from.
   * @param recipient The account to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
    require(amount > 0, 'ERC20: transfer amount zero');
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

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

  /**
   * @dev Creates `amount` tokens and assigns them to `account`.
   * @param account The account to assign the newly created tokens to.
   * @param amount The amount of tokens to create.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');

    _totalSupply += amount;
    _balances[account] += amount;
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the total supply.
   * @param account The account to burn tokens from.
   * @param amount The amount of tokens to burn.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

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

  /**
   * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
   * @param amount The amount of tokens to burn.
   */
  function burn(uint256 amount) external {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
   * @param from The account granting the allowance.
   * @param to The account allowed to spend the tokens.
   * @param amount The amount of tokens to allow.
   */
  function _approve(address from, address to, uint256 amount) internal virtual {
    require(from != address(0), 'ERC20: approve from the zero address');
    require(to != address(0), 'ERC20: approve to the zero address');

    _allowances[from][to] = amount;
    emit Approval(from, to, amount);
  }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityReserve","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":"presaleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectFundReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingReserve","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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506200003262000026620001f060201b60201c565b620001f860201b60201c565b6040518060400160405280600a81526020017f446f6765636f696e323000000000000000000000000000000000000000000000815250600490805190602001906200007f9291906200040e565b506040518060400160405280600681526020017f444f47453230000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd9291906200040e565b5062000115731b1050ea03ad75079b289f0dd2c0db70d427ccd96012600a620000f7919062000658565b64104c533c00620001099190620006a9565b620002bc60201b60201c565b6200015c737d4ab6e15958e6845e8768a1d429afead607cffa6012600a6200013e919062000658565b640826299e00620001509190620006a9565b620002bc60201b60201c565b620001a3736bfb8e1c18652b4b736dd21f07d0efed23ff42366012600a62000185919062000658565b6404e3b29200620001979190620006a9565b620002bc60201b60201c565b620001ea73e36bf8ebecb4423c434674aa916a0666a4dd7bd16012600a620001cc919062000658565b640342770c00620001de9190620006a9565b620002bc60201b60201c565b6200087d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200032f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000326906200076b565b60405180910390fd5b80600360008282546200034391906200078d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200039b91906200078d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004029190620007fb565b60405180910390a35050565b8280546200041c9062000847565b90600052602060002090601f0160209004810192826200044057600085556200048c565b82601f106200045b57805160ff19168380011785556200048c565b828001600101855582156200048c579182015b828111156200048b5782518255916020019190600101906200046e565b5b5090506200049b91906200049f565b5090565b5b80821115620004ba576000816000905550600101620004a0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200054c57808604811115620005245762000523620004be565b5b6001851615620005345780820291505b80810290506200054485620004ed565b945062000504565b94509492505050565b6000826200056757600190506200063a565b816200057757600090506200063a565b81600181146200059057600281146200059b57620005d1565b60019150506200063a565b60ff841115620005b057620005af620004be565b5b8360020a915084821115620005ca57620005c9620004be565b5b506200063a565b5060208310610133831016604e8410600b84101617156200060b5782820a905083811115620006055762000604620004be565b5b6200063a565b6200061a8484846001620004fa565b92509050818404811115620006345762000633620004be565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006658262000641565b915062000672836200064b565b9250620006a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000555565b905092915050565b6000620006b68262000641565b9150620006c38362000641565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006ff57620006fe620004be565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000753601f836200070a565b915062000760826200071b565b602082019050919050565b60006020820190508181036000830152620007868162000744565b9050919050565b60006200079a8262000641565b9150620007a78362000641565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007df57620007de620004be565b5b828201905092915050565b620007f58162000641565b82525050565b6000602082019050620008126000830184620007ea565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086057607f821691505b6020821081141562000877576200087662000818565b5b50919050565b611e6e806200088d6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb1461030e578063b61d43b11461033e578063b753bfe91461035c578063dd62ed3e1461037a578063f2fde38b146103aa57610121565b806370a0823114610268578063715018a6146102985780638da5cb5b146102a257806395d89b41146102c0578063a457c2d7146102de57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806331486dea146101fe578063395093511461021c57806342966c681461024c57610121565b806306fdde0314610126578063095ea7b3146101445780630c900e901461017457806318160ddd14610192575b600080fd5b61012e6103c6565b60405161013b9190611211565b60405180910390f35b61015e600480360381019061015991906112cc565b610458565b60405161016b9190611327565b60405180910390f35b61017c610476565b6040516101899190611351565b60405180910390f35b61019a610497565b6040516101a79190611351565b60405180910390f35b6101ca60048036038101906101c5919061136c565b6104a1565b6040516101d79190611327565b60405180910390f35b6101e8610599565b6040516101f591906113db565b60405180910390f35b6102066105a2565b6040516102139190611351565b60405180910390f35b610236600480360381019061023191906112cc565b6105c3565b6040516102439190611327565b60405180910390f35b610266600480360381019061026191906113f6565b61066f565b005b610282600480360381019061027d9190611423565b610683565b60405161028f9190611351565b60405180910390f35b6102a06106cc565b005b6102aa6106e0565b6040516102b7919061145f565b60405180910390f35b6102c8610709565b6040516102d59190611211565b60405180910390f35b6102f860048036038101906102f391906112cc565b61079b565b6040516103059190611327565b60405180910390f35b610328600480360381019061032391906112cc565b610886565b6040516103359190611327565b60405180910390f35b6103466108a4565b6040516103539190611351565b60405180910390f35b6103646108c5565b6040516103719190611351565b60405180910390f35b610394600480360381019061038f919061147a565b6108e6565b6040516103a19190611351565b60405180910390f35b6103c460048036038101906103bf9190611423565b61096d565b005b6060600480546103d5906114e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610401906114e9565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600061046c6104656109f1565b84846109f9565b6001905092915050565b6012600a610484919061167d565b64104c533c0061049491906116c8565b81565b6000600354905090565b60006104ae848484610bc4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104f96109f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057090611794565b60405180910390fd5b61058d856105856109f1565b8584036109f9565b60019150509392505050565b60006012905090565b6012600a6105b0919061167d565b6404e3b292006105c091906116c8565b81565b60006106656105d06109f1565b8484600260006105de6109f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066091906117b4565b6109f9565b6001905092915050565b61068061067a6109f1565b82610e75565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106d4611036565b6106de60006110b4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610718906114e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610744906114e9565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b600080600260006107aa6109f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e9061187c565b60405180910390fd5b61087b6108726109f1565b858584036109f9565b600191505092915050565b600061089a6108936109f1565b8484610bc4565b6001905092915050565b6012600a6108b2919061167d565b640826299e006108c291906116c8565b81565b6012600a6108d3919061167d565b640342770c006108e391906116c8565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610975611036565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc9061190e565b60405180910390fd5b6109ee816110b4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a60906119a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090611a32565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb79190611351565b60405180910390a3505050565b60008111610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90611a9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90611b30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611bc2565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590611c54565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e0391906117b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e679190611351565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611ce6565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390611d78565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610fc49190611d98565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110299190611351565b60405180910390a3505050565b61103e6109f1565b73ffffffffffffffffffffffffffffffffffffffff1661105c6106e0565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990611e18565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b2578082015181840152602081019050611197565b838111156111c1576000848401525b50505050565b6000601f19601f8301169050919050565b60006111e382611178565b6111ed8185611183565b93506111fd818560208601611194565b611206816111c7565b840191505092915050565b6000602082019050818103600083015261122b81846111d8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061126382611238565b9050919050565b61127381611258565b811461127e57600080fd5b50565b6000813590506112908161126a565b92915050565b6000819050919050565b6112a981611296565b81146112b457600080fd5b50565b6000813590506112c6816112a0565b92915050565b600080604083850312156112e3576112e2611233565b5b60006112f185828601611281565b9250506020611302858286016112b7565b9150509250929050565b60008115159050919050565b6113218161130c565b82525050565b600060208201905061133c6000830184611318565b92915050565b61134b81611296565b82525050565b60006020820190506113666000830184611342565b92915050565b60008060006060848603121561138557611384611233565b5b600061139386828701611281565b93505060206113a486828701611281565b92505060406113b5868287016112b7565b9150509250925092565b600060ff82169050919050565b6113d5816113bf565b82525050565b60006020820190506113f060008301846113cc565b92915050565b60006020828403121561140c5761140b611233565b5b600061141a848285016112b7565b91505092915050565b60006020828403121561143957611438611233565b5b600061144784828501611281565b91505092915050565b61145981611258565b82525050565b60006020820190506114746000830184611450565b92915050565b6000806040838503121561149157611490611233565b5b600061149f85828601611281565b92505060206114b085828601611281565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150157607f821691505b60208210811415611515576115146114ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115a15780860481111561157d5761157c61151b565b5b600185161561158c5780820291505b808102905061159a8561154a565b9450611561565b94509492505050565b6000826115ba5760019050611676565b816115c85760009050611676565b81600181146115de57600281146115e857611617565b6001915050611676565b60ff8411156115fa576115f961151b565b5b8360020a9150848211156116115761161061151b565b5b50611676565b5060208310610133831016604e8410600b841016171561164c5782820a9050838111156116475761164661151b565b5b611676565b6116598484846001611557565b925090508184048111156116705761166f61151b565b5b81810290505b9392505050565b600061168882611296565b9150611693836113bf565b92506116c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115aa565b905092915050565b60006116d382611296565b91506116de83611296565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117175761171661151b565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061177e602883611183565b915061178982611722565b604082019050919050565b600060208201905081810360008301526117ad81611771565b9050919050565b60006117bf82611296565b91506117ca83611296565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117ff576117fe61151b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611866602583611183565b91506118718261180a565b604082019050919050565b6000602082019050818103600083015261189581611859565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f8602683611183565b91506119038261189c565b604082019050919050565b60006020820190508181036000830152611927816118eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061198a602483611183565b91506119958261192e565b604082019050919050565b600060208201905081810360008301526119b98161197d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a1c602283611183565b9150611a27826119c0565b604082019050919050565b60006020820190508181036000830152611a4b81611a0f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611a88601b83611183565b9150611a9382611a52565b602082019050919050565b60006020820190508181036000830152611ab781611a7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b1a602583611183565b9150611b2582611abe565b604082019050919050565b60006020820190508181036000830152611b4981611b0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bac602383611183565b9150611bb782611b50565b604082019050919050565b60006020820190508181036000830152611bdb81611b9f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c3e602683611183565b9150611c4982611be2565b604082019050919050565b60006020820190508181036000830152611c6d81611c31565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd0602183611183565b9150611cdb82611c74565b604082019050919050565b60006020820190508181036000830152611cff81611cc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d62602283611183565b9150611d6d82611d06565b604082019050919050565b60006020820190508181036000830152611d9181611d55565b9050919050565b6000611da382611296565b9150611dae83611296565b925082821015611dc157611dc061151b565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e02602083611183565b9150611e0d82611dcc565b602082019050919050565b60006020820190508181036000830152611e3181611df5565b905091905056fea2646970667358221220fec7535a27e2ab72c05460e2f70ae0e1f2add8b8ab6b7a975666e63292957bd964736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb1461030e578063b61d43b11461033e578063b753bfe91461035c578063dd62ed3e1461037a578063f2fde38b146103aa57610121565b806370a0823114610268578063715018a6146102985780638da5cb5b146102a257806395d89b41146102c0578063a457c2d7146102de57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806331486dea146101fe578063395093511461021c57806342966c681461024c57610121565b806306fdde0314610126578063095ea7b3146101445780630c900e901461017457806318160ddd14610192575b600080fd5b61012e6103c6565b60405161013b9190611211565b60405180910390f35b61015e600480360381019061015991906112cc565b610458565b60405161016b9190611327565b60405180910390f35b61017c610476565b6040516101899190611351565b60405180910390f35b61019a610497565b6040516101a79190611351565b60405180910390f35b6101ca60048036038101906101c5919061136c565b6104a1565b6040516101d79190611327565b60405180910390f35b6101e8610599565b6040516101f591906113db565b60405180910390f35b6102066105a2565b6040516102139190611351565b60405180910390f35b610236600480360381019061023191906112cc565b6105c3565b6040516102439190611327565b60405180910390f35b610266600480360381019061026191906113f6565b61066f565b005b610282600480360381019061027d9190611423565b610683565b60405161028f9190611351565b60405180910390f35b6102a06106cc565b005b6102aa6106e0565b6040516102b7919061145f565b60405180910390f35b6102c8610709565b6040516102d59190611211565b60405180910390f35b6102f860048036038101906102f391906112cc565b61079b565b6040516103059190611327565b60405180910390f35b610328600480360381019061032391906112cc565b610886565b6040516103359190611327565b60405180910390f35b6103466108a4565b6040516103539190611351565b60405180910390f35b6103646108c5565b6040516103719190611351565b60405180910390f35b610394600480360381019061038f919061147a565b6108e6565b6040516103a19190611351565b60405180910390f35b6103c460048036038101906103bf9190611423565b61096d565b005b6060600480546103d5906114e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610401906114e9565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600061046c6104656109f1565b84846109f9565b6001905092915050565b6012600a610484919061167d565b64104c533c0061049491906116c8565b81565b6000600354905090565b60006104ae848484610bc4565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104f96109f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057090611794565b60405180910390fd5b61058d856105856109f1565b8584036109f9565b60019150509392505050565b60006012905090565b6012600a6105b0919061167d565b6404e3b292006105c091906116c8565b81565b60006106656105d06109f1565b8484600260006105de6109f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066091906117b4565b6109f9565b6001905092915050565b61068061067a6109f1565b82610e75565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106d4611036565b6106de60006110b4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610718906114e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610744906114e9565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b600080600260006107aa6109f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e9061187c565b60405180910390fd5b61087b6108726109f1565b858584036109f9565b600191505092915050565b600061089a6108936109f1565b8484610bc4565b6001905092915050565b6012600a6108b2919061167d565b640826299e006108c291906116c8565b81565b6012600a6108d3919061167d565b640342770c006108e391906116c8565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610975611036565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc9061190e565b60405180910390fd5b6109ee816110b4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a60906119a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090611a32565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb79190611351565b60405180910390a3505050565b60008111610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90611a9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e90611b30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611bc2565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590611c54565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e0391906117b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e679190611351565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611ce6565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390611d78565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610fc49190611d98565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110299190611351565b60405180910390a3505050565b61103e6109f1565b73ffffffffffffffffffffffffffffffffffffffff1661105c6106e0565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990611e18565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b2578082015181840152602081019050611197565b838111156111c1576000848401525b50505050565b6000601f19601f8301169050919050565b60006111e382611178565b6111ed8185611183565b93506111fd818560208601611194565b611206816111c7565b840191505092915050565b6000602082019050818103600083015261122b81846111d8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061126382611238565b9050919050565b61127381611258565b811461127e57600080fd5b50565b6000813590506112908161126a565b92915050565b6000819050919050565b6112a981611296565b81146112b457600080fd5b50565b6000813590506112c6816112a0565b92915050565b600080604083850312156112e3576112e2611233565b5b60006112f185828601611281565b9250506020611302858286016112b7565b9150509250929050565b60008115159050919050565b6113218161130c565b82525050565b600060208201905061133c6000830184611318565b92915050565b61134b81611296565b82525050565b60006020820190506113666000830184611342565b92915050565b60008060006060848603121561138557611384611233565b5b600061139386828701611281565b93505060206113a486828701611281565b92505060406113b5868287016112b7565b9150509250925092565b600060ff82169050919050565b6113d5816113bf565b82525050565b60006020820190506113f060008301846113cc565b92915050565b60006020828403121561140c5761140b611233565b5b600061141a848285016112b7565b91505092915050565b60006020828403121561143957611438611233565b5b600061144784828501611281565b91505092915050565b61145981611258565b82525050565b60006020820190506114746000830184611450565b92915050565b6000806040838503121561149157611490611233565b5b600061149f85828601611281565b92505060206114b085828601611281565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150157607f821691505b60208210811415611515576115146114ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115a15780860481111561157d5761157c61151b565b5b600185161561158c5780820291505b808102905061159a8561154a565b9450611561565b94509492505050565b6000826115ba5760019050611676565b816115c85760009050611676565b81600181146115de57600281146115e857611617565b6001915050611676565b60ff8411156115fa576115f961151b565b5b8360020a9150848211156116115761161061151b565b5b50611676565b5060208310610133831016604e8410600b841016171561164c5782820a9050838111156116475761164661151b565b5b611676565b6116598484846001611557565b925090508184048111156116705761166f61151b565b5b81810290505b9392505050565b600061168882611296565b9150611693836113bf565b92506116c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115aa565b905092915050565b60006116d382611296565b91506116de83611296565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117175761171661151b565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061177e602883611183565b915061178982611722565b604082019050919050565b600060208201905081810360008301526117ad81611771565b9050919050565b60006117bf82611296565b91506117ca83611296565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117ff576117fe61151b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611866602583611183565b91506118718261180a565b604082019050919050565b6000602082019050818103600083015261189581611859565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f8602683611183565b91506119038261189c565b604082019050919050565b60006020820190508181036000830152611927816118eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061198a602483611183565b91506119958261192e565b604082019050919050565b600060208201905081810360008301526119b98161197d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a1c602283611183565b9150611a27826119c0565b604082019050919050565b60006020820190508181036000830152611a4b81611a0f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611a88601b83611183565b9150611a9382611a52565b602082019050919050565b60006020820190508181036000830152611ab781611a7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b1a602583611183565b9150611b2582611abe565b604082019050919050565b60006020820190508181036000830152611b4981611b0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bac602383611183565b9150611bb782611b50565b604082019050919050565b60006020820190508181036000830152611bdb81611b9f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c3e602683611183565b9150611c4982611be2565b604082019050919050565b60006020820190508181036000830152611c6d81611c31565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd0602183611183565b9150611cdb82611c74565b604082019050919050565b60006020820190508181036000830152611cff81611cc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d62602283611183565b9150611d6d82611d06565b604082019050919050565b60006020820190508181036000830152611d9181611d55565b9050919050565b6000611da382611296565b9150611dae83611296565b925082821015611dc157611dc061151b565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e02602083611183565b9150611e0d82611dcc565b602082019050919050565b60006020820190508181036000830152611e3181611df5565b905091905056fea2646970667358221220fec7535a27e2ab72c05460e2f70ae0e1f2add8b8ab6b7a975666e63292957bd964736f6c63430008090033

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.