ETH Price: $2,896.12 (-10.11%)
Gas: 12 Gwei

Token

XRP20 (XRP20)
 

Overview

Max Total Supply

89,754,024,044.92157040731726285 XRP20

Holders

6,251

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
flicksparks.eth
Balance
1,196,686.352462380492069525 XRP20

Value
$0.00
0x4d5662d3c4e21517c79f145019ac05f544cd0918
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:
XRP20Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-11
*/

// 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 XRP20Token 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 hardCap = 100_000_000_000 * (10 ** _decimals); //100 billion
  mapping(address => bool) public isWhitelisted;

  /**
   * @dev Contract constructor.
   * @param name_ The name of the token.
   * @param symbol_ The symbol of the token.
   * @param _to The initial address to mint the total supply to.
   */
  constructor(string memory name_, string memory symbol_, address _to) {
    _name = name_;
    _symbol = symbol_;
    _mint(_to, hardCap);
  }

  /**
   * @dev change whitelist status of a particular address
   * @param _address address of the user to change status
   * @param _status bool value for the status
   */
  function whitelistAddress(address _address, bool _status) external onlyOwner {
    isWhitelisted[_address] = _status;
  }

  /**
   * @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) {
    uint256 burnTax = isWhitelisted[_msgSender()] || isWhitelisted[recipient] ? 0 : (amount / 1000);
    if (burnTax > 0) _burn(_msgSender(), burnTax);
    _transfer(_msgSender(), recipient, amount - burnTax);
    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) {
    uint256 burnTax = isWhitelisted[sender] || isWhitelisted[recipient] ? 0 : (amount / 1000);
    if (burnTax > 0) _burn(sender, burnTax);
    _transfer(sender, recipient, amount - burnTax);
    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);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"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":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002b0938038062002b09833981810160405281019062000037919062000595565b620000576200004b620000c560201b60201c565b620000cd60201b60201c565b82600490805190602001906200006f929190620002e3565b50816005908051906020019062000088929190620002e3565b50620000bc816012600a6200009e9190620007c9565b64174876e800620000b091906200081a565b6200019160201b60201c565b505050620009ee565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000204576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001fb90620008dc565b60405180910390fd5b8060036000828254620002189190620008fe565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002709190620008fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002d791906200096c565b60405180910390a35050565b828054620002f190620009b8565b90600052602060002090601f01602090048101928262000315576000855562000361565b82601f106200033057805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036057825182559160200191906001019062000343565b5b50905062000370919062000374565b5090565b5b808211156200038f57600081600090555060010162000375565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003fc82620003b1565b810181811067ffffffffffffffff821117156200041e576200041d620003c2565b5b80604052505050565b60006200043362000393565b9050620004418282620003f1565b919050565b600067ffffffffffffffff821115620004645762000463620003c2565b5b6200046f82620003b1565b9050602081019050919050565b60005b838110156200049c5780820151818401526020810190506200047f565b83811115620004ac576000848401525b50505050565b6000620004c9620004c38462000446565b62000427565b905082815260208101848484011115620004e857620004e7620003ac565b5b620004f58482856200047c565b509392505050565b600082601f830112620005155762000514620003a7565b5b815162000527848260208601620004b2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200055d8262000530565b9050919050565b6200056f8162000550565b81146200057b57600080fd5b50565b6000815190506200058f8162000564565b92915050565b600080600060608486031215620005b157620005b06200039d565b5b600084015167ffffffffffffffff811115620005d257620005d1620003a2565b5b620005e086828701620004fd565b935050602084015167ffffffffffffffff811115620006045762000603620003a2565b5b6200061286828701620004fd565b925050604062000625868287016200057e565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006bd578086048111156200069557620006946200062f565b5b6001851615620006a55780820291505b8081029050620006b5856200065e565b945062000675565b94509492505050565b600082620006d85760019050620007ab565b81620006e85760009050620007ab565b81600181146200070157600281146200070c5762000742565b6001915050620007ab565b60ff8411156200072157620007206200062f565b5b8360020a9150848211156200073b576200073a6200062f565b5b50620007ab565b5060208310610133831016604e8410600b84101617156200077c5782820a9050838111156200077657620007756200062f565b5b620007ab565b6200078b84848460016200066b565b92509050818404811115620007a557620007a46200062f565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620007d682620007b2565b9150620007e383620007bc565b9250620008127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006c6565b905092915050565b60006200082782620007b2565b91506200083483620007b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000870576200086f6200062f565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008c4601f836200087b565b9150620008d1826200088c565b602082019050919050565b60006020820190508181036000830152620008f781620008b5565b9050919050565b60006200090b82620007b2565b91506200091883620007b2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000950576200094f6200062f565b5b828201905092915050565b6200096681620007b2565b82525050565b60006020820190506200098360008301846200095b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009d157607f821691505b60208210811415620009e857620009e762000989565b5b50919050565b61210b80620009fe6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102f7578063b9a45aac14610327578063dd62ed3e14610343578063f2fde38b14610373578063fb86a4041461038f57610116565b8063715018a6146102815780638da5cb5b1461028b57806395d89b41146102a9578063a457c2d7146102c757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633af32abf1461020557806342966c681461023557806370a082311461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ad565b60405161013091906113e2565b60405180910390f35b610153600480360381019061014e919061149d565b61043f565b60405161016091906114f8565b60405180910390f35b61017161045d565b60405161017e9190611522565b60405180910390f35b6101a1600480360381019061019c919061153d565b610467565b6040516101ae91906114f8565b60405180910390f35b6101bf61063d565b6040516101cc91906115ac565b60405180910390f35b6101ef60048036038101906101ea919061149d565b610646565b6040516101fc91906114f8565b60405180910390f35b61021f600480360381019061021a91906115c7565b6106f2565b60405161022c91906114f8565b60405180910390f35b61024f600480360381019061024a91906115f4565b610712565b005b61026b600480360381019061026691906115c7565b610726565b6040516102789190611522565b60405180910390f35b61028961076f565b005b610293610783565b6040516102a09190611630565b60405180910390f35b6102b16107ac565b6040516102be91906113e2565b60405180910390f35b6102e160048036038101906102dc919061149d565b61083e565b6040516102ee91906114f8565b60405180910390f35b610311600480360381019061030c919061149d565b610929565b60405161031e91906114f8565b60405180910390f35b610341600480360381019061033c9190611677565b610a33565b005b61035d600480360381019061035891906116b7565b610a96565b60405161036a9190611522565b60405180910390f35b61038d600480360381019061038891906115c7565b610b1d565b005b610397610ba1565b6040516103a49190611522565b60405180910390f35b6060600480546103bc90611726565b80601f01602080910402602001604051908101604052809291908181526020018280546103e890611726565b80156104355780601f1061040a57610100808354040283529160200191610435565b820191906000526020600020905b81548152906001019060200180831161041857829003601f168201915b5050505050905090565b600061045361044c610bc2565b8484610bca565b6001905092915050565b6000600354905090565b600080600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061050b5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610522576103e88361051d91906117b6565b610525565b60005b9050600081111561053b5761053a8582610d95565b5b6105518585838661054c91906117e7565b610f56565b6000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061059c610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561061c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106139061188d565b60405180910390fd5b61063086610628610bc2565b868403610bca565b6001925050509392505050565b60006012905090565b60006106e8610653610bc2565b848460026000610661610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e391906118ad565b610bca565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b61072361071d610bc2565b82610d95565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610777611207565b6107816000611285565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107bb90611726565b80601f01602080910402602001604051908101604052809291908181526020018280546107e790611726565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b6000806002600061084d610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190611975565b60405180910390fd5b61091e610915610bc2565b85858403610bca565b600191505092915050565b60008060066000610938610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109d45750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6109eb576103e8836109e691906117b6565b6109ee565b60005b90506000811115610a0b57610a0a610a04610bc2565b82610d95565b5b610a28610a16610bc2565b858386610a2391906117e7565b610f56565b600191505092915050565b610a3b611207565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b25611207565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90611a07565b60405180910390fd5b610b9e81611285565b50565b6012600a610baf9190611b5a565b64174876e800610bbf9190611ba5565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190611c71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190611d03565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d889190611522565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90611d95565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390611e27565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610ee491906117e7565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f499190611522565b60405180910390a3505050565b60008111610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090611e93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090611f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090611fb7565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612049565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119591906118ad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f99190611522565b60405180910390a350505050565b61120f610bc2565b73ffffffffffffffffffffffffffffffffffffffff1661122d610783565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906120b5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611383578082015181840152602081019050611368565b83811115611392576000848401525b50505050565b6000601f19601f8301169050919050565b60006113b482611349565b6113be8185611354565b93506113ce818560208601611365565b6113d781611398565b840191505092915050565b600060208201905081810360008301526113fc81846113a9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061143482611409565b9050919050565b61144481611429565b811461144f57600080fd5b50565b6000813590506114618161143b565b92915050565b6000819050919050565b61147a81611467565b811461148557600080fd5b50565b60008135905061149781611471565b92915050565b600080604083850312156114b4576114b3611404565b5b60006114c285828601611452565b92505060206114d385828601611488565b9150509250929050565b60008115159050919050565b6114f2816114dd565b82525050565b600060208201905061150d60008301846114e9565b92915050565b61151c81611467565b82525050565b60006020820190506115376000830184611513565b92915050565b60008060006060848603121561155657611555611404565b5b600061156486828701611452565b935050602061157586828701611452565b925050604061158686828701611488565b9150509250925092565b600060ff82169050919050565b6115a681611590565b82525050565b60006020820190506115c1600083018461159d565b92915050565b6000602082840312156115dd576115dc611404565b5b60006115eb84828501611452565b91505092915050565b60006020828403121561160a57611609611404565b5b600061161884828501611488565b91505092915050565b61162a81611429565b82525050565b60006020820190506116456000830184611621565b92915050565b611654816114dd565b811461165f57600080fd5b50565b6000813590506116718161164b565b92915050565b6000806040838503121561168e5761168d611404565b5b600061169c85828601611452565b92505060206116ad85828601611662565b9150509250929050565b600080604083850312156116ce576116cd611404565b5b60006116dc85828601611452565b92505060206116ed85828601611452565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061173e57607f821691505b60208210811415611752576117516116f7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117c182611467565b91506117cc83611467565b9250826117dc576117db611758565b5b828204905092915050565b60006117f282611467565b91506117fd83611467565b9250828210156118105761180f611787565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611877602883611354565b91506118828261181b565b604082019050919050565b600060208201905081810360008301526118a68161186a565b9050919050565b60006118b882611467565b91506118c383611467565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118f8576118f7611787565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061195f602583611354565b915061196a82611903565b604082019050919050565b6000602082019050818103600083015261198e81611952565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119f1602683611354565b91506119fc82611995565b604082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115611a7e57808604811115611a5a57611a59611787565b5b6001851615611a695780820291505b8081029050611a7785611a27565b9450611a3e565b94509492505050565b600082611a975760019050611b53565b81611aa55760009050611b53565b8160018114611abb5760028114611ac557611af4565b6001915050611b53565b60ff841115611ad757611ad6611787565b5b8360020a915084821115611aee57611aed611787565b5b50611b53565b5060208310610133831016604e8410600b8410161715611b295782820a905083811115611b2457611b23611787565b5b611b53565b611b368484846001611a34565b92509050818404811115611b4d57611b4c611787565b5b81810290505b9392505050565b6000611b6582611467565b9150611b7083611590565b9250611b9d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a87565b905092915050565b6000611bb082611467565b9150611bbb83611467565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bf457611bf3611787565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c5b602483611354565b9150611c6682611bff565b604082019050919050565b60006020820190508181036000830152611c8a81611c4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ced602283611354565b9150611cf882611c91565b604082019050919050565b60006020820190508181036000830152611d1c81611ce0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7f602183611354565b9150611d8a82611d23565b604082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e11602283611354565b9150611e1c82611db5565b604082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611e7d601b83611354565b9150611e8882611e47565b602082019050919050565b60006020820190508181036000830152611eac81611e70565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f0f602583611354565b9150611f1a82611eb3565b604082019050919050565b60006020820190508181036000830152611f3e81611f02565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa1602383611354565b9150611fac82611f45565b604082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612033602683611354565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061209f602083611354565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b905091905056fea26469706673582212202c0d306f9df19e3144e1c8b3cbab9abce027311d819de5eb25edbdaf702bf64c64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e8537ffcddbdd073ef6fcecbdf8d194a44b481410000000000000000000000000000000000000000000000000000000000000005585250323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055852503230000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102f7578063b9a45aac14610327578063dd62ed3e14610343578063f2fde38b14610373578063fb86a4041461038f57610116565b8063715018a6146102815780638da5cb5b1461028b57806395d89b41146102a9578063a457c2d7146102c757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633af32abf1461020557806342966c681461023557806370a082311461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ad565b60405161013091906113e2565b60405180910390f35b610153600480360381019061014e919061149d565b61043f565b60405161016091906114f8565b60405180910390f35b61017161045d565b60405161017e9190611522565b60405180910390f35b6101a1600480360381019061019c919061153d565b610467565b6040516101ae91906114f8565b60405180910390f35b6101bf61063d565b6040516101cc91906115ac565b60405180910390f35b6101ef60048036038101906101ea919061149d565b610646565b6040516101fc91906114f8565b60405180910390f35b61021f600480360381019061021a91906115c7565b6106f2565b60405161022c91906114f8565b60405180910390f35b61024f600480360381019061024a91906115f4565b610712565b005b61026b600480360381019061026691906115c7565b610726565b6040516102789190611522565b60405180910390f35b61028961076f565b005b610293610783565b6040516102a09190611630565b60405180910390f35b6102b16107ac565b6040516102be91906113e2565b60405180910390f35b6102e160048036038101906102dc919061149d565b61083e565b6040516102ee91906114f8565b60405180910390f35b610311600480360381019061030c919061149d565b610929565b60405161031e91906114f8565b60405180910390f35b610341600480360381019061033c9190611677565b610a33565b005b61035d600480360381019061035891906116b7565b610a96565b60405161036a9190611522565b60405180910390f35b61038d600480360381019061038891906115c7565b610b1d565b005b610397610ba1565b6040516103a49190611522565b60405180910390f35b6060600480546103bc90611726565b80601f01602080910402602001604051908101604052809291908181526020018280546103e890611726565b80156104355780601f1061040a57610100808354040283529160200191610435565b820191906000526020600020905b81548152906001019060200180831161041857829003601f168201915b5050505050905090565b600061045361044c610bc2565b8484610bca565b6001905092915050565b6000600354905090565b600080600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061050b5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610522576103e88361051d91906117b6565b610525565b60005b9050600081111561053b5761053a8582610d95565b5b6105518585838661054c91906117e7565b610f56565b6000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061059c610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561061c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106139061188d565b60405180910390fd5b61063086610628610bc2565b868403610bca565b6001925050509392505050565b60006012905090565b60006106e8610653610bc2565b848460026000610661610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e391906118ad565b610bca565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b61072361071d610bc2565b82610d95565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610777611207565b6107816000611285565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107bb90611726565b80601f01602080910402602001604051908101604052809291908181526020018280546107e790611726565b80156108345780601f1061080957610100808354040283529160200191610834565b820191906000526020600020905b81548152906001019060200180831161081757829003601f168201915b5050505050905090565b6000806002600061084d610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190611975565b60405180910390fd5b61091e610915610bc2565b85858403610bca565b600191505092915050565b60008060066000610938610bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109d45750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6109eb576103e8836109e691906117b6565b6109ee565b60005b90506000811115610a0b57610a0a610a04610bc2565b82610d95565b5b610a28610a16610bc2565b858386610a2391906117e7565b610f56565b600191505092915050565b610a3b611207565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b25611207565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90611a07565b60405180910390fd5b610b9e81611285565b50565b6012600a610baf9190611b5a565b64174876e800610bbf9190611ba5565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190611c71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190611d03565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d889190611522565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90611d95565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390611e27565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610ee491906117e7565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f499190611522565b60405180910390a3505050565b60008111610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090611e93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090611f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090611fb7565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612049565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119591906118ad565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f99190611522565b60405180910390a350505050565b61120f610bc2565b73ffffffffffffffffffffffffffffffffffffffff1661122d610783565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906120b5565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611383578082015181840152602081019050611368565b83811115611392576000848401525b50505050565b6000601f19601f8301169050919050565b60006113b482611349565b6113be8185611354565b93506113ce818560208601611365565b6113d781611398565b840191505092915050565b600060208201905081810360008301526113fc81846113a9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061143482611409565b9050919050565b61144481611429565b811461144f57600080fd5b50565b6000813590506114618161143b565b92915050565b6000819050919050565b61147a81611467565b811461148557600080fd5b50565b60008135905061149781611471565b92915050565b600080604083850312156114b4576114b3611404565b5b60006114c285828601611452565b92505060206114d385828601611488565b9150509250929050565b60008115159050919050565b6114f2816114dd565b82525050565b600060208201905061150d60008301846114e9565b92915050565b61151c81611467565b82525050565b60006020820190506115376000830184611513565b92915050565b60008060006060848603121561155657611555611404565b5b600061156486828701611452565b935050602061157586828701611452565b925050604061158686828701611488565b9150509250925092565b600060ff82169050919050565b6115a681611590565b82525050565b60006020820190506115c1600083018461159d565b92915050565b6000602082840312156115dd576115dc611404565b5b60006115eb84828501611452565b91505092915050565b60006020828403121561160a57611609611404565b5b600061161884828501611488565b91505092915050565b61162a81611429565b82525050565b60006020820190506116456000830184611621565b92915050565b611654816114dd565b811461165f57600080fd5b50565b6000813590506116718161164b565b92915050565b6000806040838503121561168e5761168d611404565b5b600061169c85828601611452565b92505060206116ad85828601611662565b9150509250929050565b600080604083850312156116ce576116cd611404565b5b60006116dc85828601611452565b92505060206116ed85828601611452565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061173e57607f821691505b60208210811415611752576117516116f7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117c182611467565b91506117cc83611467565b9250826117dc576117db611758565b5b828204905092915050565b60006117f282611467565b91506117fd83611467565b9250828210156118105761180f611787565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611877602883611354565b91506118828261181b565b604082019050919050565b600060208201905081810360008301526118a68161186a565b9050919050565b60006118b882611467565b91506118c383611467565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118f8576118f7611787565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061195f602583611354565b915061196a82611903565b604082019050919050565b6000602082019050818103600083015261198e81611952565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119f1602683611354565b91506119fc82611995565b604082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115611a7e57808604811115611a5a57611a59611787565b5b6001851615611a695780820291505b8081029050611a7785611a27565b9450611a3e565b94509492505050565b600082611a975760019050611b53565b81611aa55760009050611b53565b8160018114611abb5760028114611ac557611af4565b6001915050611b53565b60ff841115611ad757611ad6611787565b5b8360020a915084821115611aee57611aed611787565b5b50611b53565b5060208310610133831016604e8410600b8410161715611b295782820a905083811115611b2457611b23611787565b5b611b53565b611b368484846001611a34565b92509050818404811115611b4d57611b4c611787565b5b81810290505b9392505050565b6000611b6582611467565b9150611b7083611590565b9250611b9d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a87565b905092915050565b6000611bb082611467565b9150611bbb83611467565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bf457611bf3611787565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c5b602483611354565b9150611c6682611bff565b604082019050919050565b60006020820190508181036000830152611c8a81611c4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ced602283611354565b9150611cf882611c91565b604082019050919050565b60006020820190508181036000830152611d1c81611ce0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7f602183611354565b9150611d8a82611d23565b604082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e11602283611354565b9150611e1c82611db5565b604082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611e7d601b83611354565b9150611e8882611e47565b602082019050919050565b60006020820190508181036000830152611eac81611e70565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f0f602583611354565b9150611f1a82611eb3565b604082019050919050565b60006020820190508181036000830152611f3e81611f02565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa1602383611354565b9150611fac82611f45565b604082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612033602683611354565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061209f602083611354565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b905091905056fea26469706673582212202c0d306f9df19e3144e1c8b3cbab9abce027311d819de5eb25edbdaf702bf64c64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e8537ffcddbdd073ef6fcecbdf8d194a44b481410000000000000000000000000000000000000000000000000000000000000005585250323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055852503230000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): XRP20
Arg [1] : symbol_ (string): XRP20
Arg [2] : _to (address): 0xe8537FFcddBDD073Ef6fCecbdf8D194A44B48141

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000e8537ffcddbdd073ef6fcecbdf8d194a44b48141
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 5852503230000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5852503230000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6285:8590:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7494:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9855:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8109:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10328:576;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7913:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11237:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6689:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14231:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8389:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5518:97;;;:::i;:::-;;4913:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7691:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11745:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8790:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7272:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9407:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5760:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6601:69;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7494:94;7548:13;7577:5;7570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7494:94;:::o;9855:149::-;9933:4;9946:34;9955:12;:10;:12::i;:::-;9969:2;9973:6;9946:8;:34::i;:::-;9994:4;9987:11;;9855:149;;;;:::o;8109:102::-;8170:7;8193:12;;8186:19;;8109:102;:::o;10328:576::-;10434:4;10447:15;10465:13;:21;10479:6;10465:21;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;10490:13;:24;10504:9;10490:24;;;;;;;;;;;;;;;;;;;;;;;;;10465:49;:71;;10531:4;10522:6;:13;;;;:::i;:::-;10465:71;;;10517:1;10465:71;10447:89;;10557:1;10547:7;:11;10543:39;;;10560:22;10566:6;10574:7;10560:5;:22::i;:::-;10543:39;10589:46;10599:6;10607:9;10627:7;10618:6;:16;;;;:::i;:::-;10589:9;:46::i;:::-;10642:24;10669:11;:19;10681:6;10669:19;;;;;;;;;;;;;;;:33;10689:12;:10;:12::i;:::-;10669:33;;;;;;;;;;;;;;;;10642:60;;10737:6;10717:16;:26;;10709:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:57;10823:6;10831:12;:10;:12::i;:::-;10864:6;10845:16;:25;10814:8;:57::i;:::-;10894:4;10887:11;;;;10328:576;;;;;:::o;7913:94::-;7971:5;6594:2;7985:16;;7913:94;:::o;11237:190::-;11320:4;11333:70;11342:12;:10;:12::i;:::-;11356:2;11392:10;11360:11;:25;11372:12;:10;:12::i;:::-;11360:25;;;;;;;;;;;;;;;:29;11386:2;11360:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;11333:8;:70::i;:::-;11417:4;11410:11;;11237:190;;;;:::o;6689:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;14231:79::-;14277:27;14283:12;:10;:12::i;:::-;14297:6;14277:5;:27::i;:::-;14231:79;:::o;8389:121::-;8463:7;8486:9;:18;8496:7;8486:18;;;;;;;;;;;;;;;;8479:25;;8389:121;;;:::o;5518:97::-;4813:13;:11;:13::i;:::-;5579:30:::1;5606:1;5579:18;:30::i;:::-;5518:97::o:0;4913:81::-;4959:7;4982:6;;;;;;;;;;;4975:13;;4913:81;:::o;7691:98::-;7747:13;7776:7;7769:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7691:98;:::o;11745:370::-;11833:4;11846:24;11873:11;:25;11885:12;:10;:12::i;:::-;11873:25;;;;;;;;;;;;;;;:29;11899:2;11873:29;;;;;;;;;;;;;;;;11846:56;;11937:15;11917:16;:35;;11909:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12020:62;12029:12;:10;:12::i;:::-;12043:2;12066:15;12047:16;:34;12020:8;:62::i;:::-;12105:4;12098:11;;;11745:370;;;;:::o;8790:329::-;8876:4;8889:15;8907:13;:27;8921:12;:10;:12::i;:::-;8907:27;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;8938:13;:24;8952:9;8938:24;;;;;;;;;;;;;;;;;;;;;;;;;8907:55;:77;;8979:4;8970:6;:13;;;;:::i;:::-;8907:77;;;8965:1;8907:77;8889:95;;9005:1;8995:7;:11;8991:45;;;9008:28;9014:12;:10;:12::i;:::-;9028:7;9008:5;:28::i;:::-;8991:45;9043:52;9053:12;:10;:12::i;:::-;9067:9;9087:7;9078:6;:16;;;;:::i;:::-;9043:9;:52::i;:::-;9109:4;9102:11;;;8790:329;;;;:::o;7272:123::-;4813:13;:11;:13::i;:::-;7382:7:::1;7356:13;:23;7370:8;7356:23;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;7272:123:::0;;:::o;9407:133::-;9490:7;9513:11;:17;9525:4;9513:17;;;;;;;;;;;;;;;:21;9531:2;9513:21;;;;;;;;;;;;;;;;9506:28;;9407:133;;;;:::o;5760:191::-;4813:13;:11;:13::i;:::-;5865:1:::1;5845:22;;:8;:22;;;;5837:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5917:28;5936:8;5917:18;:28::i;:::-;5760:191:::0;:::o;6601:69::-;6594:2;6654;:15;;;;:::i;:::-;6635;:35;;;;:::i;:::-;6601:69;:::o;3680:92::-;3733:7;3756:10;3749:17;;3680:92;:::o;14568:304::-;14676:1;14660:18;;:4;:18;;;;14652:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14748:1;14734:16;;:2;:16;;;;14726:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14822:6;14798:11;:17;14810:4;14798:17;;;;;;;;;;;;;;;:21;14816:2;14798:21;;;;;;;;;;;;;;;:30;;;;14855:2;14840:26;;14849:4;14840:26;;;14859:6;14840:26;;;;;;:::i;:::-;;;;;;;;14568:304;;;:::o;13639:432::-;13738:1;13719:21;;:7;:21;;;;13711:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13787:22;13812:9;:18;13822:7;13812:18;;;;;;;;;;;;;;;;13787:43;;13863:6;13845:14;:24;;13837:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13972:6;13955:14;:23;13934:9;:18;13944:7;13934:18;;;;;;;;;;;;;;;:44;;;;14008:6;13992:12;;:22;;;;;;;:::i;:::-;;;;;;;;14054:1;14028:37;;14037:7;14028:37;;;14058:6;14028:37;;;;;;:::i;:::-;;;;;;;;13704:367;13639:432;;:::o;12371:597::-;12482:1;12473:6;:10;12465:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;12548:1;12530:20;;:6;:20;;;;12522:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12628:1;12607:23;;:9;:23;;;;12599:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:21;12703:9;:17;12713:6;12703:17;;;;;;;;;;;;;;;;12679:41;;12752:6;12735:13;:23;;12727:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12863:6;12847:13;:22;12827:9;:17;12837:6;12827:17;;;;;;;;;;;;;;;:42;;;;12907:6;12883:9;:20;12893:9;12883:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12944:9;12927:35;;12936:6;12927:35;;;12955:6;12927:35;;;;;;:::i;:::-;;;;;;;;12458:510;12371:597;;;:::o;5064:126::-;5135:12;:10;:12::i;:::-;5124:23;;:7;:5;:7::i;:::-;:23;;;5116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5064:126::o;6101:177::-;6171:16;6190:6;;;;;;;;;;;6171:25;;6212:8;6203:6;;:17;;;;;;;;;;;;;;;;;;6263:8;6232:40;;6253:8;6232:40;;;;;;;;;;;;6164:114;6101:177;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:116::-;5993:21;6008:5;5993:21;:::i;:::-;5986:5;5983:32;5973:60;;6029:1;6026;6019:12;5973:60;5923:116;:::o;6045:133::-;6088:5;6126:6;6113:20;6104:29;;6142:30;6166:5;6142:30;:::i;:::-;6045:133;;;;:::o;6184:468::-;6249:6;6257;6306:2;6294:9;6285:7;6281:23;6277:32;6274:119;;;6312:79;;:::i;:::-;6274:119;6432:1;6457:53;6502:7;6493:6;6482:9;6478:22;6457:53;:::i;:::-;6447:63;;6403:117;6559:2;6585:50;6627:7;6618:6;6607:9;6603:22;6585:50;:::i;:::-;6575:60;;6530:115;6184:468;;;;;:::o;6658:474::-;6726:6;6734;6783:2;6771:9;6762:7;6758:23;6754:32;6751:119;;;6789:79;;:::i;:::-;6751:119;6909:1;6934:53;6979:7;6970:6;6959:9;6955:22;6934:53;:::i;:::-;6924:63;;6880:117;7036:2;7062:53;7107:7;7098:6;7087:9;7083:22;7062:53;:::i;:::-;7052:63;;7007:118;6658:474;;;;;:::o;7138:180::-;7186:77;7183:1;7176:88;7283:4;7280:1;7273:15;7307:4;7304:1;7297:15;7324:320;7368:6;7405:1;7399:4;7395:12;7385:22;;7452:1;7446:4;7442:12;7473:18;7463:81;;7529:4;7521:6;7517:17;7507:27;;7463:81;7591:2;7583:6;7580:14;7560:18;7557:38;7554:84;;;7610:18;;:::i;:::-;7554:84;7375:269;7324:320;;;:::o;7650:180::-;7698:77;7695:1;7688:88;7795:4;7792:1;7785:15;7819:4;7816:1;7809:15;7836:180;7884:77;7881:1;7874:88;7981:4;7978:1;7971:15;8005:4;8002:1;7995:15;8022:185;8062:1;8079:20;8097:1;8079:20;:::i;:::-;8074:25;;8113:20;8131:1;8113:20;:::i;:::-;8108:25;;8152:1;8142:35;;8157:18;;:::i;:::-;8142:35;8199:1;8196;8192:9;8187:14;;8022:185;;;;:::o;8213:191::-;8253:4;8273:20;8291:1;8273:20;:::i;:::-;8268:25;;8307:20;8325:1;8307:20;:::i;:::-;8302:25;;8346:1;8343;8340:8;8337:34;;;8351:18;;:::i;:::-;8337:34;8396:1;8393;8389:9;8381:17;;8213:191;;;;:::o;8410:227::-;8550:34;8546:1;8538:6;8534:14;8527:58;8619:10;8614:2;8606:6;8602:15;8595:35;8410:227;:::o;8643:366::-;8785:3;8806:67;8870:2;8865:3;8806:67;:::i;:::-;8799:74;;8882:93;8971:3;8882:93;:::i;:::-;9000:2;8995:3;8991:12;8984:19;;8643:366;;;:::o;9015:419::-;9181:4;9219:2;9208:9;9204:18;9196:26;;9268:9;9262:4;9258:20;9254:1;9243:9;9239:17;9232:47;9296:131;9422:4;9296:131;:::i;:::-;9288:139;;9015:419;;;:::o;9440:305::-;9480:3;9499:20;9517:1;9499:20;:::i;:::-;9494:25;;9533:20;9551:1;9533:20;:::i;:::-;9528:25;;9687:1;9619:66;9615:74;9612:1;9609:81;9606:107;;;9693:18;;:::i;:::-;9606:107;9737:1;9734;9730:9;9723:16;;9440:305;;;;:::o;9751:224::-;9891:34;9887:1;9879:6;9875:14;9868:58;9960:7;9955:2;9947:6;9943:15;9936:32;9751:224;:::o;9981:366::-;10123:3;10144:67;10208:2;10203:3;10144:67;:::i;:::-;10137:74;;10220:93;10309:3;10220:93;:::i;:::-;10338:2;10333:3;10329:12;10322:19;;9981:366;;;:::o;10353:419::-;10519:4;10557:2;10546:9;10542:18;10534:26;;10606:9;10600:4;10596:20;10592:1;10581:9;10577:17;10570:47;10634:131;10760:4;10634:131;:::i;:::-;10626:139;;10353:419;;;:::o;10778:225::-;10918:34;10914:1;10906:6;10902:14;10895:58;10987:8;10982:2;10974:6;10970:15;10963:33;10778:225;:::o;11009:366::-;11151:3;11172:67;11236:2;11231:3;11172:67;:::i;:::-;11165:74;;11248:93;11337:3;11248:93;:::i;:::-;11366:2;11361:3;11357:12;11350:19;;11009:366;;;:::o;11381:419::-;11547:4;11585:2;11574:9;11570:18;11562:26;;11634:9;11628:4;11624:20;11620:1;11609:9;11605:17;11598:47;11662:131;11788:4;11662:131;:::i;:::-;11654:139;;11381:419;;;:::o;11806:102::-;11848:8;11895:5;11892:1;11888:13;11867:34;;11806:102;;;:::o;11914:848::-;11975:5;11982:4;12006:6;11997:15;;12030:5;12021:14;;12044:712;12065:1;12055:8;12052:15;12044:712;;;12160:4;12155:3;12151:14;12145:4;12142:24;12139:50;;;12169:18;;:::i;:::-;12139:50;12219:1;12209:8;12205:16;12202:451;;;12634:4;12627:5;12623:16;12614:25;;12202:451;12684:4;12678;12674:15;12666:23;;12714:32;12737:8;12714:32;:::i;:::-;12702:44;;12044:712;;;11914:848;;;;;;;:::o;12768:1073::-;12822:5;13013:8;13003:40;;13034:1;13025:10;;13036:5;;13003:40;13062:4;13052:36;;13079:1;13070:10;;13081:5;;13052:36;13148:4;13196:1;13191:27;;;;13232:1;13227:191;;;;13141:277;;13191:27;13209:1;13200:10;;13211:5;;;13227:191;13272:3;13262:8;13259:17;13256:43;;;13279:18;;:::i;:::-;13256:43;13328:8;13325:1;13321:16;13312:25;;13363:3;13356:5;13353:14;13350:40;;;13370:18;;:::i;:::-;13350:40;13403:5;;;13141:277;;13527:2;13517:8;13514:16;13508:3;13502:4;13499:13;13495:36;13477:2;13467:8;13464:16;13459:2;13453:4;13450:12;13446:35;13430:111;13427:246;;;13583:8;13577:4;13573:19;13564:28;;13618:3;13611:5;13608:14;13605:40;;;13625:18;;:::i;:::-;13605:40;13658:5;;13427:246;13698:42;13736:3;13726:8;13720:4;13717:1;13698:42;:::i;:::-;13683:57;;;;13772:4;13767:3;13763:14;13756:5;13753:25;13750:51;;;13781:18;;:::i;:::-;13750:51;13830:4;13823:5;13819:16;13810:25;;12768:1073;;;;;;:::o;13847:281::-;13905:5;13929:23;13947:4;13929:23;:::i;:::-;13921:31;;13973:25;13989:8;13973:25;:::i;:::-;13961:37;;14017:104;14054:66;14044:8;14038:4;14017:104;:::i;:::-;14008:113;;13847:281;;;;:::o;14134:348::-;14174:7;14197:20;14215:1;14197:20;:::i;:::-;14192:25;;14231:20;14249:1;14231:20;:::i;:::-;14226:25;;14419:1;14351:66;14347:74;14344:1;14341:81;14336:1;14329:9;14322:17;14318:105;14315:131;;;14426:18;;:::i;:::-;14315:131;14474:1;14471;14467:9;14456:20;;14134:348;;;;:::o;14488:223::-;14628:34;14624:1;14616:6;14612:14;14605:58;14697:6;14692:2;14684:6;14680:15;14673:31;14488:223;:::o;14717:366::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:419::-;15255:4;15293:2;15282:9;15278:18;15270:26;;15342:9;15336:4;15332:20;15328:1;15317:9;15313:17;15306:47;15370:131;15496:4;15370:131;:::i;:::-;15362:139;;15089:419;;;:::o;15514:221::-;15654:34;15650:1;15642:6;15638:14;15631:58;15723:4;15718:2;15710:6;15706:15;15699:29;15514:221;:::o;15741:366::-;15883:3;15904:67;15968:2;15963:3;15904:67;:::i;:::-;15897:74;;15980:93;16069:3;15980:93;:::i;:::-;16098:2;16093:3;16089:12;16082:19;;15741:366;;;:::o;16113:419::-;16279:4;16317:2;16306:9;16302:18;16294:26;;16366:9;16360:4;16356:20;16352:1;16341:9;16337:17;16330:47;16394:131;16520:4;16394:131;:::i;:::-;16386:139;;16113:419;;;:::o;16538:220::-;16678:34;16674:1;16666:6;16662:14;16655:58;16747:3;16742:2;16734:6;16730:15;16723:28;16538:220;:::o;16764:366::-;16906:3;16927:67;16991:2;16986:3;16927:67;:::i;:::-;16920:74;;17003:93;17092:3;17003:93;:::i;:::-;17121:2;17116:3;17112:12;17105:19;;16764:366;;;:::o;17136:419::-;17302:4;17340:2;17329:9;17325:18;17317:26;;17389:9;17383:4;17379:20;17375:1;17364:9;17360:17;17353:47;17417:131;17543:4;17417:131;:::i;:::-;17409:139;;17136:419;;;:::o;17561:221::-;17701:34;17697:1;17689:6;17685:14;17678:58;17770:4;17765:2;17757:6;17753:15;17746:29;17561:221;:::o;17788:366::-;17930:3;17951:67;18015:2;18010:3;17951:67;:::i;:::-;17944:74;;18027:93;18116:3;18027:93;:::i;:::-;18145:2;18140:3;18136:12;18129:19;;17788:366;;;:::o;18160:419::-;18326:4;18364:2;18353:9;18349:18;18341:26;;18413:9;18407:4;18403:20;18399:1;18388:9;18384:17;18377:47;18441:131;18567:4;18441:131;:::i;:::-;18433:139;;18160:419;;;:::o;18585:177::-;18725:29;18721:1;18713:6;18709:14;18702:53;18585:177;:::o;18768:366::-;18910:3;18931:67;18995:2;18990:3;18931:67;:::i;:::-;18924:74;;19007:93;19096:3;19007:93;:::i;:::-;19125:2;19120:3;19116:12;19109:19;;18768:366;;;:::o;19140:419::-;19306:4;19344:2;19333:9;19329:18;19321:26;;19393:9;19387:4;19383:20;19379:1;19368:9;19364:17;19357:47;19421:131;19547:4;19421:131;:::i;:::-;19413:139;;19140:419;;;:::o;19565:224::-;19705:34;19701:1;19693:6;19689:14;19682:58;19774:7;19769:2;19761:6;19757:15;19750:32;19565:224;:::o;19795:366::-;19937:3;19958:67;20022:2;20017:3;19958:67;:::i;:::-;19951:74;;20034:93;20123:3;20034:93;:::i;:::-;20152:2;20147:3;20143:12;20136:19;;19795:366;;;:::o;20167:419::-;20333:4;20371:2;20360:9;20356:18;20348:26;;20420:9;20414:4;20410:20;20406:1;20395:9;20391:17;20384:47;20448:131;20574:4;20448:131;:::i;:::-;20440:139;;20167:419;;;:::o;20592:222::-;20732:34;20728:1;20720:6;20716:14;20709:58;20801:5;20796:2;20788:6;20784:15;20777:30;20592:222;:::o;20820:366::-;20962:3;20983:67;21047:2;21042:3;20983:67;:::i;:::-;20976:74;;21059:93;21148:3;21059:93;:::i;:::-;21177:2;21172:3;21168:12;21161:19;;20820:366;;;:::o;21192:419::-;21358:4;21396:2;21385:9;21381:18;21373:26;;21445:9;21439:4;21435:20;21431:1;21420:9;21416:17;21409:47;21473:131;21599:4;21473:131;:::i;:::-;21465:139;;21192:419;;;:::o;21617:225::-;21757:34;21753:1;21745:6;21741:14;21734:58;21826:8;21821:2;21813:6;21809:15;21802:33;21617:225;:::o;21848:366::-;21990:3;22011:67;22075:2;22070:3;22011:67;:::i;:::-;22004:74;;22087:93;22176:3;22087:93;:::i;:::-;22205:2;22200:3;22196:12;22189:19;;21848:366;;;:::o;22220:419::-;22386:4;22424:2;22413:9;22409:18;22401:26;;22473:9;22467:4;22463:20;22459:1;22448:9;22444:17;22437:47;22501:131;22627:4;22501:131;:::i;:::-;22493:139;;22220:419;;;:::o;22645:182::-;22785:34;22781:1;22773:6;22769:14;22762:58;22645:182;:::o;22833:366::-;22975:3;22996:67;23060:2;23055:3;22996:67;:::i;:::-;22989:74;;23072:93;23161:3;23072:93;:::i;:::-;23190:2;23185:3;23181:12;23174:19;;22833:366;;;:::o;23205:419::-;23371:4;23409:2;23398:9;23394:18;23386:26;;23458:9;23452:4;23448:20;23444:1;23433:9;23429:17;23422:47;23486:131;23612:4;23486:131;:::i;:::-;23478:139;;23205:419;;;:::o

Swarm Source

ipfs://2c0d306f9df19e3144e1c8b3cbab9abce027311d819de5eb25edbdaf702bf64c
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.