ETH Price: $3,091.71 (+0.63%)
Gas: 5 Gwei

Token

KAI (KAI)
 

Overview

Max Total Supply

6,000,006,242 KAI

Holders

464

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
887,738,424.967563547097216012 KAI

Value
$0.00
0xae1a4ae9aa5fcd10cac09c7e05a00bc913910230
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 : Token.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 = 2_000_002_080 * (10 ** _decimals);
  uint256 public constant stakingReserve = 1_500_001_561 * (10 ** _decimals);
  uint256 public constant marketingReserve = 2_500_002_601 * (10 ** _decimals);
  uint256 public constant liquidityReserve = 1_500_001_561 * (10 ** _decimals);
  uint256 public constant communityRewardsReserve = 2_500_002_601 * (10 ** _decimals);

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = 'KAI';
    _symbol = 'KAI';
    _mint(0xF34a8CD71cC84690F40B07F1A98F746BE26351C4, presaleReserve);
    _mint(0x26bF125Da1D9e0f23Ff407f4b1475C7101E56d67, stakingReserve);
    _mint(0x362b0480331569806517aAff9AD9540785507dE9, marketingReserve);
    _mint(0x5e8388d7164A5Df563bf77f00ff39598736dee56, liquidityReserve);
    _mint(0x6e6f4D041FC26332408488728a9710E8FD04Ce65, communityRewardsReserve);
  }

  /**
   * @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":"communityRewardsReserve","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":"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":"marketingReserve","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":"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"}]

60806040523480156200001157600080fd5b5062000032620000266200023260201b60201c565b6200023a60201b60201c565b6040518060400160405280600381526020017f4b41490000000000000000000000000000000000000000000000000000000000815250600490805190602001906200007f92919062000450565b506040518060400160405280600381526020017f4b4149000000000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd92919062000450565b506200011473f34a8cd71cc84690f40b07f1a98f746be26351c46012600a620000f791906200069a565b6377359c20620001089190620006eb565b620002fe60201b60201c565b6200015a7326bf125da1d9e0f23ff407f4b1475c7101e56d676012600a6200013d91906200069a565b63596835196200014e9190620006eb565b620002fe60201b60201c565b620001a073362b0480331569806517aaff9ad9540785507de96012600a6200018391906200069a565b6395030329620001949190620006eb565b620002fe60201b60201c565b620001e6735e8388d7164a5df563bf77f00ff39598736dee566012600a620001c991906200069a565b6359683519620001da9190620006eb565b620002fe60201b60201c565b6200022c736e6f4d041fc26332408488728a9710e8fd04ce656012600a6200020f91906200069a565b6395030329620002209190620006eb565b620002fe60201b60201c565b620008bf565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036890620007ad565b60405180910390fd5b8060036000828254620003859190620007cf565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003dd9190620007cf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200044491906200083d565b60405180910390a35050565b8280546200045e9062000889565b90600052602060002090601f016020900481019282620004825760008555620004ce565b82601f106200049d57805160ff1916838001178555620004ce565b82800160010185558215620004ce579182015b82811115620004cd578251825591602001919060010190620004b0565b5b509050620004dd9190620004e1565b5090565b5b80821115620004fc576000816000905550600101620004e2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200058e5780860481111562000566576200056562000500565b5b6001851615620005765780820291505b808102905062000586856200052f565b945062000546565b94509492505050565b600082620005a957600190506200067c565b81620005b957600090506200067c565b8160018114620005d25760028114620005dd5762000613565b60019150506200067c565b60ff841115620005f257620005f162000500565b5b8360020a9150848211156200060c576200060b62000500565b5b506200067c565b5060208310610133831016604e8410600b84101617156200064d5782820a90508381111562000647576200064662000500565b5b6200067c565b6200065c84848460016200053c565b9250905081840481111562000676576200067562000500565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006a78262000683565b9150620006b4836200068d565b9250620006e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000597565b905092915050565b6000620006f88262000683565b9150620007058362000683565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000741576200074062000500565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000795601f836200074c565b9150620007a2826200075d565b602082019050919050565b60006020820190508181036000830152620007c88162000786565b9050919050565b6000620007dc8262000683565b9150620007e98362000683565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000821576200082062000500565b5b828201905092915050565b620008378162000683565b82525050565b60006020820190506200085460008301846200082c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a257607f821691505b60208210811415620008b957620008b86200085a565b5b50919050565b611eb380620008cf6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610337578063b61d43b114610367578063b753bfe914610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b8063715018a6146102a35780637e50c644146102ad5780638da5cb5b146102cb57806395d89b41146102e9578063a457c2d7146103075761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633e85713d1461023957806342966c681461025757806370a08231146102735761012c565b806306fdde0314610131578063095ea7b31461014f5780630c900e901461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ef565b6040516101469190611256565b60405180910390f35b61016960048036038101906101649190611311565b610481565b604051610176919061136c565b60405180910390f35b61018761049f565b6040516101949190611396565b60405180910390f35b6101a56104bf565b6040516101b29190611396565b60405180910390f35b6101d560048036038101906101d091906113b1565b6104c9565b6040516101e2919061136c565b60405180910390f35b6101f36105c1565b6040516102009190611420565b60405180910390f35b610223600480360381019061021e9190611311565b6105ca565b604051610230919061136c565b60405180910390f35b610241610676565b60405161024e9190611396565b60405180910390f35b610271600480360381019061026c919061143b565b610696565b005b61028d60048036038101906102889190611468565b6106aa565b60405161029a9190611396565b60405180910390f35b6102ab6106f3565b005b6102b5610707565b6040516102c29190611396565b60405180910390f35b6102d3610727565b6040516102e091906114a4565b60405180910390f35b6102f1610750565b6040516102fe9190611256565b60405180910390f35b610321600480360381019061031c9190611311565b6107e2565b60405161032e919061136c565b60405180910390f35b610351600480360381019061034c9190611311565b6108cd565b60405161035e919061136c565b60405180910390f35b61036f6108eb565b60405161037c9190611396565b60405180910390f35b61038d61090b565b60405161039a9190611396565b60405180910390f35b6103bd60048036038101906103b891906114bf565b61092b565b6040516103ca9190611396565b60405180910390f35b6103ed60048036038101906103e89190611468565b6109b2565b005b6060600480546103fe9061152e565b80601f016020809104026020016040519081016040528092919081815260200182805461042a9061152e565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a36565b8484610a3e565b6001905092915050565b6012600a6104ad91906116c2565b6377359c206104bc919061170d565b81565b6000600354905090565b60006104d6848484610c09565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610521610a36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610598906117d9565b60405180910390fd5b6105b5856105ad610a36565b858403610a3e565b60019150509392505050565b60006012905090565b600061066c6105d7610a36565b8484600260006105e5610a36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066791906117f9565b610a3e565b6001905092915050565b6012600a61068491906116c2565b6395030329610693919061170d565b81565b6106a76106a1610a36565b82610eba565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106fb61107b565b61070560006110f9565b565b6012600a61071591906116c2565b6395030329610724919061170d565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461075f9061152e565b80601f016020809104026020016040519081016040528092919081815260200182805461078b9061152e565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b600080600260006107f1610a36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906118c1565b60405180910390fd5b6108c26108b9610a36565b85858403610a3e565b600191505092915050565b60006108e16108da610a36565b8484610c09565b6001905092915050565b6012600a6108f991906116c2565b6359683519610908919061170d565b81565b6012600a61091991906116c2565b6359683519610928919061170d565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109ba61107b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611953565b60405180910390fd5b610a33816110f9565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa5906119e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590611a77565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfc9190611396565b60405180910390a3505050565b60008111610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390611ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611c07565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90611c99565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4891906117f9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eac9190611396565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190611d2b565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611dbd565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110099190611ddd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106e9190611396565b60405180910390a3505050565b611083610a36565b73ffffffffffffffffffffffffffffffffffffffff166110a1610727565b73ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90611e5d565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111f75780820151818401526020810190506111dc565b83811115611206576000848401525b50505050565b6000601f19601f8301169050919050565b6000611228826111bd565b61123281856111c8565b93506112428185602086016111d9565b61124b8161120c565b840191505092915050565b60006020820190508181036000830152611270818461121d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a88261127d565b9050919050565b6112b88161129d565b81146112c357600080fd5b50565b6000813590506112d5816112af565b92915050565b6000819050919050565b6112ee816112db565b81146112f957600080fd5b50565b60008135905061130b816112e5565b92915050565b6000806040838503121561132857611327611278565b5b6000611336858286016112c6565b9250506020611347858286016112fc565b9150509250929050565b60008115159050919050565b61136681611351565b82525050565b6000602082019050611381600083018461135d565b92915050565b611390816112db565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6000806000606084860312156113ca576113c9611278565b5b60006113d8868287016112c6565b93505060206113e9868287016112c6565b92505060406113fa868287016112fc565b9150509250925092565b600060ff82169050919050565b61141a81611404565b82525050565b60006020820190506114356000830184611411565b92915050565b60006020828403121561145157611450611278565b5b600061145f848285016112fc565b91505092915050565b60006020828403121561147e5761147d611278565b5b600061148c848285016112c6565b91505092915050565b61149e8161129d565b82525050565b60006020820190506114b96000830184611495565b92915050565b600080604083850312156114d6576114d5611278565b5b60006114e4858286016112c6565b92505060206114f5858286016112c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154657607f821691505b6020821081141561155a576115596114ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115e6578086048111156115c2576115c1611560565b5b60018516156115d15780820291505b80810290506115df8561158f565b94506115a6565b94509492505050565b6000826115ff57600190506116bb565b8161160d57600090506116bb565b8160018114611623576002811461162d5761165c565b60019150506116bb565b60ff84111561163f5761163e611560565b5b8360020a91508482111561165657611655611560565b5b506116bb565b5060208310610133831016604e8410600b84101617156116915782820a90508381111561168c5761168b611560565b5b6116bb565b61169e848484600161159c565b925090508184048111156116b5576116b4611560565b5b81810290505b9392505050565b60006116cd826112db565b91506116d883611404565b92506117057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115ef565b905092915050565b6000611718826112db565b9150611723836112db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561175c5761175b611560565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117c36028836111c8565b91506117ce82611767565b604082019050919050565b600060208201905081810360008301526117f2816117b6565b9050919050565b6000611804826112db565b915061180f836112db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184457611843611560565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118ab6025836111c8565b91506118b68261184f565b604082019050919050565b600060208201905081810360008301526118da8161189e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061193d6026836111c8565b9150611948826118e1565b604082019050919050565b6000602082019050818103600083015261196c81611930565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119cf6024836111c8565b91506119da82611973565b604082019050919050565b600060208201905081810360008301526119fe816119c2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a616022836111c8565b9150611a6c82611a05565b604082019050919050565b60006020820190508181036000830152611a9081611a54565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611acd601b836111c8565b9150611ad882611a97565b602082019050919050565b60006020820190508181036000830152611afc81611ac0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b5f6025836111c8565b9150611b6a82611b03565b604082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf16023836111c8565b9150611bfc82611b95565b604082019050919050565b60006020820190508181036000830152611c2081611be4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c836026836111c8565b9150611c8e82611c27565b604082019050919050565b60006020820190508181036000830152611cb281611c76565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d156021836111c8565b9150611d2082611cb9565b604082019050919050565b60006020820190508181036000830152611d4481611d08565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611da76022836111c8565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b6000611de8826112db565b9150611df3836112db565b925082821015611e0657611e05611560565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e476020836111c8565b9150611e5282611e11565b602082019050919050565b60006020820190508181036000830152611e7681611e3a565b905091905056fea26469706673582212200f8bc01d09dba46b1c859c8a2009b2755d82cfdbe2bf55b3ec1ea2fd1832e90f64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610337578063b61d43b114610367578063b753bfe914610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b8063715018a6146102a35780637e50c644146102ad5780638da5cb5b146102cb57806395d89b41146102e9578063a457c2d7146103075761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633e85713d1461023957806342966c681461025757806370a08231146102735761012c565b806306fdde0314610131578063095ea7b31461014f5780630c900e901461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ef565b6040516101469190611256565b60405180910390f35b61016960048036038101906101649190611311565b610481565b604051610176919061136c565b60405180910390f35b61018761049f565b6040516101949190611396565b60405180910390f35b6101a56104bf565b6040516101b29190611396565b60405180910390f35b6101d560048036038101906101d091906113b1565b6104c9565b6040516101e2919061136c565b60405180910390f35b6101f36105c1565b6040516102009190611420565b60405180910390f35b610223600480360381019061021e9190611311565b6105ca565b604051610230919061136c565b60405180910390f35b610241610676565b60405161024e9190611396565b60405180910390f35b610271600480360381019061026c919061143b565b610696565b005b61028d60048036038101906102889190611468565b6106aa565b60405161029a9190611396565b60405180910390f35b6102ab6106f3565b005b6102b5610707565b6040516102c29190611396565b60405180910390f35b6102d3610727565b6040516102e091906114a4565b60405180910390f35b6102f1610750565b6040516102fe9190611256565b60405180910390f35b610321600480360381019061031c9190611311565b6107e2565b60405161032e919061136c565b60405180910390f35b610351600480360381019061034c9190611311565b6108cd565b60405161035e919061136c565b60405180910390f35b61036f6108eb565b60405161037c9190611396565b60405180910390f35b61038d61090b565b60405161039a9190611396565b60405180910390f35b6103bd60048036038101906103b891906114bf565b61092b565b6040516103ca9190611396565b60405180910390f35b6103ed60048036038101906103e89190611468565b6109b2565b005b6060600480546103fe9061152e565b80601f016020809104026020016040519081016040528092919081815260200182805461042a9061152e565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a36565b8484610a3e565b6001905092915050565b6012600a6104ad91906116c2565b6377359c206104bc919061170d565b81565b6000600354905090565b60006104d6848484610c09565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610521610a36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610598906117d9565b60405180910390fd5b6105b5856105ad610a36565b858403610a3e565b60019150509392505050565b60006012905090565b600061066c6105d7610a36565b8484600260006105e5610a36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066791906117f9565b610a3e565b6001905092915050565b6012600a61068491906116c2565b6395030329610693919061170d565b81565b6106a76106a1610a36565b82610eba565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106fb61107b565b61070560006110f9565b565b6012600a61071591906116c2565b6395030329610724919061170d565b81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461075f9061152e565b80601f016020809104026020016040519081016040528092919081815260200182805461078b9061152e565b80156107d85780601f106107ad576101008083540402835291602001916107d8565b820191906000526020600020905b8154815290600101906020018083116107bb57829003601f168201915b5050505050905090565b600080600260006107f1610a36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906118c1565b60405180910390fd5b6108c26108b9610a36565b85858403610a3e565b600191505092915050565b60006108e16108da610a36565b8484610c09565b6001905092915050565b6012600a6108f991906116c2565b6359683519610908919061170d565b81565b6012600a61091991906116c2565b6359683519610928919061170d565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109ba61107b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611953565b60405180910390fd5b610a33816110f9565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa5906119e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590611a77565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bfc9190611396565b60405180910390a3505050565b60008111610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390611ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611c07565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90611c99565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4891906117f9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eac9190611396565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190611d2b565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611dbd565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546110099190611ddd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106e9190611396565b60405180910390a3505050565b611083610a36565b73ffffffffffffffffffffffffffffffffffffffff166110a1610727565b73ffffffffffffffffffffffffffffffffffffffff16146110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90611e5d565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111f75780820151818401526020810190506111dc565b83811115611206576000848401525b50505050565b6000601f19601f8301169050919050565b6000611228826111bd565b61123281856111c8565b93506112428185602086016111d9565b61124b8161120c565b840191505092915050565b60006020820190508181036000830152611270818461121d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a88261127d565b9050919050565b6112b88161129d565b81146112c357600080fd5b50565b6000813590506112d5816112af565b92915050565b6000819050919050565b6112ee816112db565b81146112f957600080fd5b50565b60008135905061130b816112e5565b92915050565b6000806040838503121561132857611327611278565b5b6000611336858286016112c6565b9250506020611347858286016112fc565b9150509250929050565b60008115159050919050565b61136681611351565b82525050565b6000602082019050611381600083018461135d565b92915050565b611390816112db565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6000806000606084860312156113ca576113c9611278565b5b60006113d8868287016112c6565b93505060206113e9868287016112c6565b92505060406113fa868287016112fc565b9150509250925092565b600060ff82169050919050565b61141a81611404565b82525050565b60006020820190506114356000830184611411565b92915050565b60006020828403121561145157611450611278565b5b600061145f848285016112fc565b91505092915050565b60006020828403121561147e5761147d611278565b5b600061148c848285016112c6565b91505092915050565b61149e8161129d565b82525050565b60006020820190506114b96000830184611495565b92915050565b600080604083850312156114d6576114d5611278565b5b60006114e4858286016112c6565b92505060206114f5858286016112c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154657607f821691505b6020821081141561155a576115596114ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115e6578086048111156115c2576115c1611560565b5b60018516156115d15780820291505b80810290506115df8561158f565b94506115a6565b94509492505050565b6000826115ff57600190506116bb565b8161160d57600090506116bb565b8160018114611623576002811461162d5761165c565b60019150506116bb565b60ff84111561163f5761163e611560565b5b8360020a91508482111561165657611655611560565b5b506116bb565b5060208310610133831016604e8410600b84101617156116915782820a90508381111561168c5761168b611560565b5b6116bb565b61169e848484600161159c565b925090508184048111156116b5576116b4611560565b5b81810290505b9392505050565b60006116cd826112db565b91506116d883611404565b92506117057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115ef565b905092915050565b6000611718826112db565b9150611723836112db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561175c5761175b611560565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117c36028836111c8565b91506117ce82611767565b604082019050919050565b600060208201905081810360008301526117f2816117b6565b9050919050565b6000611804826112db565b915061180f836112db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184457611843611560565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118ab6025836111c8565b91506118b68261184f565b604082019050919050565b600060208201905081810360008301526118da8161189e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061193d6026836111c8565b9150611948826118e1565b604082019050919050565b6000602082019050818103600083015261196c81611930565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119cf6024836111c8565b91506119da82611973565b604082019050919050565b600060208201905081810360008301526119fe816119c2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a616022836111c8565b9150611a6c82611a05565b604082019050919050565b60006020820190508181036000830152611a9081611a54565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611acd601b836111c8565b9150611ad882611a97565b602082019050919050565b60006020820190508181036000830152611afc81611ac0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b5f6025836111c8565b9150611b6a82611b03565b604082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf16023836111c8565b9150611bfc82611b95565b604082019050919050565b60006020820190508181036000830152611c2081611be4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c836026836111c8565b9150611c8e82611c27565b604082019050919050565b60006020820190508181036000830152611cb281611c76565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d156021836111c8565b9150611d2082611cb9565b604082019050919050565b60006020820190508181036000830152611d4481611d08565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611da76022836111c8565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b6000611de8826112db565b9150611df3836112db565b925082821015611e0657611e05611560565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e476020836111c8565b9150611e5282611e11565b602082019050919050565b60006020820190508181036000830152611e7681611e3a565b905091905056fea26469706673582212200f8bc01d09dba46b1c859c8a2009b2755d82cfdbe2bf55b3ec1ea2fd1832e90f64736f6c63430008090033

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.