ETH Price: $2,625.02 (+1.16%)

Token

AURA (AURA)
 

Overview

Max Total Supply

100,000,000 AURA

Holders

298

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,753.042 AURA

Value
$0.00
0x25628571affe5e2e7c599d4ed0412e8bd94f85fe
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:
AURA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-10
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

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

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

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

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

  /**
   
   */
 

  /**
   * @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 `recipient`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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


contract Context {
  // Empty internal constructor, to prevent people from mistakenly deploying
  // an instance of this contract, which should be used via inheritance.
  constructor ()  { }

  function _msgSender() internal view returns (address payable) {
    return payable (msg.sender);
  }

  function _msgData() internal view returns (bytes memory) {
    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    return msg.data;
  }
}


library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }


  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafeMath: subtraction overflow");
  }


  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }


  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }


  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }


  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }


  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, "SafeMath: modulo by zero");
  }


  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}


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 ()  {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(_owner == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions anymore. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby removing any functionality that is only available to the owner.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = 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 onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}
library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash =
            0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) =
            target.call{value: weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract AURA is Context, IERC20, Ownable {
  using Address for address;
  using SafeMath for uint256;
  mapping (address => uint256) private _balances;

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

  uint256 private _totalSupply;
  uint8 public _decimals;
  string public _symbol;
  string public _name;

  constructor()  {
    _name = "AURA";
    _symbol = "AURA";
    _decimals = 18;
    _totalSupply = 100000000 * 10**18;
    _balances[msg.sender] = _totalSupply;

    emit Transfer(address(0), msg.sender, _totalSupply);
  }





  function decimals() external override view returns (uint8) {
    return _decimals;
  }


  function symbol() external override view returns (string memory) {
    return _symbol;
  }


  function name() external override view returns (string memory) {
    return _name;
  }

 
  function totalSupply() public override view returns (uint256) {
    return _totalSupply;
  }


  function balanceOf(address account) external override view returns (uint256) {
    return _balances[account];
  }


  function transfer(address recipient, uint256 amount) external override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }


  function allowance(address owner, address spender) external override view returns (uint256) {
    return _allowances[owner][spender];
  }

  function approve(address spender, uint256 amount) external override returns (bool) {
    _approve(_msgSender(), spender, amount);
    return true;
  }


  function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, " transfer amount exceeds allowance"));
    return true;
  }


  function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
    return true;
  }


  function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
    _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, " decreased allowance below zero"));
    return true;
  }


  function burn(uint256 amount) public returns (bool) {
    _burn(_msgSender(), amount);
    return true;
  }


  function _transfer(address sender, address recipient, uint256 amount) internal {
    require(sender != address(0), " transfer from the zero address");
    require(recipient != address(0), " transfer to the zero address");

    _balances[sender] = _balances[sender].sub(amount, " transfer amount exceeds balance");
    _balances[recipient] = _balances[recipient].add(amount);
    emit Transfer(sender, recipient, amount);
  }


  function _mint(address account, uint256 amount) internal {
    require(account != address(0), " mint to the zero address");

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


  function _burn(address account, uint256 amount) internal {
    require(account != address(0), "burn from the zero address");

    _balances[account] = _balances[account].sub(amount, ": burn amount exceeds balance");
    _totalSupply = _totalSupply.sub(amount);
    emit Transfer(account, address(0), amount);
  }

  function _approve(address owner, address spender, uint256 amount) internal {
    require(owner != address(0), ": approve fromm the zero address");
    require(spender != address(0), ": approvee to the zero address");

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


  function _burnFrom(address account, uint256 amount) internal {
    _burn(account, amount);
    _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, ": burn amount exceeds allowance"));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b506000620000246200024260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600481526020017f4155524100000000000000000000000000000000000000000000000000000000815250600690805190602001906200010f9291906200024a565b506040518060400160405280600481526020017f4155524100000000000000000000000000000000000000000000000000000000815250600590805190602001906200015d9291906200024a565b506012600460006101000a81548160ff021916908360ff1602179055506a52b7d2dcc80cd2e4000000600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003546040516200023491906200030b565b60405180910390a362000397565b600033905090565b828054620002589062000332565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b620003058162000328565b82525050565b6000602082019050620003226000830184620002fa565b92915050565b6000819050919050565b600060028204905060018216806200034b57607f821691505b6020821081141562000362576200036162000368565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611c9280620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102f9578063b09f126614610329578063d28d885214610347578063dd62ed3e14610365578063f2fde38b1461039557610116565b8063715018a6146102835780638da5cb5b1461028d57806395d89b41146102ab578063a457c2d7146102c957610116565b8063313ce567116100e9578063313ce567146101b757806332424aa3146101d557806339509351146101f357806342966c681461022357806370a082311461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b1565b6040516101309190611772565b60405180910390f35b610153600480360381019061014e9190611542565b610443565b6040516101609190611757565b60405180910390f35b610171610461565b60405161017e9190611894565b60405180910390f35b6101a1600480360381019061019c91906114ef565b61046b565b6040516101ae9190611757565b60405180910390f35b6101bf610544565b6040516101cc91906118af565b60405180910390f35b6101dd61055b565b6040516101ea91906118af565b60405180910390f35b61020d60048036038101906102089190611542565b61056e565b60405161021a9190611757565b60405180910390f35b61023d60048036038101906102389190611582565b610621565b60405161024a9190611757565b60405180910390f35b61026d60048036038101906102689190611482565b61063d565b60405161027a9190611894565b60405180910390f35b61028b610686565b005b6102956107d9565b6040516102a2919061173c565b60405180910390f35b6102b3610802565b6040516102c09190611772565b60405180910390f35b6102e360048036038101906102de9190611542565b610894565b6040516102f09190611757565b60405180910390f35b610313600480360381019061030e9190611542565b61097e565b6040516103209190611757565b60405180910390f35b61033161099c565b60405161033e9190611772565b60405180910390f35b61034f610a2a565b60405161035c9190611772565b60405180910390f35b61037f600480360381019061037a91906114af565b610ab8565b60405161038c9190611894565b60405180910390f35b6103af60048036038101906103aa9190611482565b610b3f565b005b6060600680546103c0906119f8565b80601f01602080910402602001604051908101604052809291908181526020018280546103ec906119f8565b80156104395780601f1061040e57610100808354040283529160200191610439565b820191906000526020600020905b81548152906001019060200180831161041c57829003601f168201915b5050505050905090565b6000610457610450610be0565b8484610be8565b6001905092915050565b6000600354905090565b6000610478848484610db3565b61053984610484610be0565b61053485604051806060016040528060228152602001611c3b60229139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ea610be0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b610be8565b600190509392505050565b6000600460009054906101000a900460ff16905090565b600460009054906101000a900460ff1681565b600061061761057b610be0565b84610612856002600061058c610be0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c290919063ffffffff16565b610be8565b6001905092915050565b600061063461062e610be0565b83611120565b60019050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068e610be0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290611854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610811906119f8565b80601f016020809104026020016040519081016040528092919081815260200182805461083d906119f8565b801561088a5780601f1061085f5761010080835404028352916020019161088a565b820191906000526020600020905b81548152906001019060200180831161086d57829003601f168201915b5050505050905090565b60006109746108a1610be0565b8461096f856040518060400160405280601f81526020017f2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f00815250600260006108e8610be0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b610be8565b6001905092915050565b600061099261098b610be0565b8484610db3565b6001905092915050565b600580546109a9906119f8565b80601f01602080910402602001604051908101604052809291908181526020018280546109d5906119f8565b8015610a225780601f106109f757610100808354040283529160200191610a22565b820191906000526020600020905b815481529060010190602001808311610a0557829003601f168201915b505050505081565b60068054610a37906119f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a63906119f8565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b47610be0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90611854565b60405180910390fd5b610bdd816112e1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90611814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906117d4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da69190611894565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906117f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90611834565b60405180910390fd5b610f1c816040518060400160405280602081526020017f207472616e7366657220616d6f756e7420657863656564732062616c616e6365815250600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fb181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110519190611894565b60405180910390a3505050565b60008383111582906110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9190611772565b60405180910390fd5b50600083856110b5919061193c565b9050809150509392505050565b60008082846110d191906118e6565b905083811015611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906117b4565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790611874565b60405180910390fd5b611219816040518060400160405280601d81526020017f3a206275726e20616d6f756e7420657863656564732062616c616e6365000000815250600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112718160035461140e90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112d59190611894565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890611794565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061145083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061105e565b905092915050565b60008135905061146781611c0c565b92915050565b60008135905061147c81611c23565b92915050565b60006020828403121561149857611497611a88565b5b60006114a684828501611458565b91505092915050565b600080604083850312156114c6576114c5611a88565b5b60006114d485828601611458565b92505060206114e585828601611458565b9150509250929050565b60008060006060848603121561150857611507611a88565b5b600061151686828701611458565b935050602061152786828701611458565b92505060406115388682870161146d565b9150509250925092565b6000806040838503121561155957611558611a88565b5b600061156785828601611458565b92505060206115788582860161146d565b9150509250929050565b60006020828403121561159857611597611a88565b5b60006115a68482850161146d565b91505092915050565b6115b881611970565b82525050565b6115c781611982565b82525050565b60006115d8826118ca565b6115e281856118d5565b93506115f28185602086016119c5565b6115fb81611a8d565b840191505092915050565b60006116136026836118d5565b915061161e82611a9e565b604082019050919050565b6000611636601b836118d5565b915061164182611aed565b602082019050919050565b6000611659601e836118d5565b915061166482611b16565b602082019050919050565b600061167c601f836118d5565b915061168782611b3f565b602082019050919050565b600061169f6020836118d5565b91506116aa82611b68565b602082019050919050565b60006116c2601d836118d5565b91506116cd82611b91565b602082019050919050565b60006116e56020836118d5565b91506116f082611bba565b602082019050919050565b6000611708601a836118d5565b915061171382611be3565b602082019050919050565b611727816119ae565b82525050565b611736816119b8565b82525050565b600060208201905061175160008301846115af565b92915050565b600060208201905061176c60008301846115be565b92915050565b6000602082019050818103600083015261178c81846115cd565b905092915050565b600060208201905081810360008301526117ad81611606565b9050919050565b600060208201905081810360008301526117cd81611629565b9050919050565b600060208201905081810360008301526117ed8161164c565b9050919050565b6000602082019050818103600083015261180d8161166f565b9050919050565b6000602082019050818103600083015261182d81611692565b9050919050565b6000602082019050818103600083015261184d816116b5565b9050919050565b6000602082019050818103600083015261186d816116d8565b9050919050565b6000602082019050818103600083015261188d816116fb565b9050919050565b60006020820190506118a9600083018461171e565b92915050565b60006020820190506118c4600083018461172d565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118f1826119ae565b91506118fc836119ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561193157611930611a2a565b5b828201905092915050565b6000611947826119ae565b9150611952836119ae565b92508282101561196557611964611a2a565b5b828203905092915050565b600061197b8261198e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119e35780820151818401526020810190506119c8565b838111156119f2576000848401525b50505050565b60006002820490506001821680611a1057607f821691505b60208210811415611a2457611a23611a59565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f3a20617070726f76656520746f20746865207a65726f20616464726573730000600082015250565b7f207472616e736665722066726f6d20746865207a65726f206164647265737300600082015250565b7f3a20617070726f76652066726f6d6d20746865207a65726f2061646472657373600082015250565b7f207472616e7366657220746f20746865207a65726f2061646472657373000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6275726e2066726f6d20746865207a65726f2061646472657373000000000000600082015250565b611c1581611970565b8114611c2057600080fd5b50565b611c2c816119ae565b8114611c3757600080fd5b5056fe207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212205a1fc8582e0095f4752701140d5e00028d46c65e9f5db2982ab469b89dfe5fc764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102f9578063b09f126614610329578063d28d885214610347578063dd62ed3e14610365578063f2fde38b1461039557610116565b8063715018a6146102835780638da5cb5b1461028d57806395d89b41146102ab578063a457c2d7146102c957610116565b8063313ce567116100e9578063313ce567146101b757806332424aa3146101d557806339509351146101f357806342966c681461022357806370a082311461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b1565b6040516101309190611772565b60405180910390f35b610153600480360381019061014e9190611542565b610443565b6040516101609190611757565b60405180910390f35b610171610461565b60405161017e9190611894565b60405180910390f35b6101a1600480360381019061019c91906114ef565b61046b565b6040516101ae9190611757565b60405180910390f35b6101bf610544565b6040516101cc91906118af565b60405180910390f35b6101dd61055b565b6040516101ea91906118af565b60405180910390f35b61020d60048036038101906102089190611542565b61056e565b60405161021a9190611757565b60405180910390f35b61023d60048036038101906102389190611582565b610621565b60405161024a9190611757565b60405180910390f35b61026d60048036038101906102689190611482565b61063d565b60405161027a9190611894565b60405180910390f35b61028b610686565b005b6102956107d9565b6040516102a2919061173c565b60405180910390f35b6102b3610802565b6040516102c09190611772565b60405180910390f35b6102e360048036038101906102de9190611542565b610894565b6040516102f09190611757565b60405180910390f35b610313600480360381019061030e9190611542565b61097e565b6040516103209190611757565b60405180910390f35b61033161099c565b60405161033e9190611772565b60405180910390f35b61034f610a2a565b60405161035c9190611772565b60405180910390f35b61037f600480360381019061037a91906114af565b610ab8565b60405161038c9190611894565b60405180910390f35b6103af60048036038101906103aa9190611482565b610b3f565b005b6060600680546103c0906119f8565b80601f01602080910402602001604051908101604052809291908181526020018280546103ec906119f8565b80156104395780601f1061040e57610100808354040283529160200191610439565b820191906000526020600020905b81548152906001019060200180831161041c57829003601f168201915b5050505050905090565b6000610457610450610be0565b8484610be8565b6001905092915050565b6000600354905090565b6000610478848484610db3565b61053984610484610be0565b61053485604051806060016040528060228152602001611c3b60229139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ea610be0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b610be8565b600190509392505050565b6000600460009054906101000a900460ff16905090565b600460009054906101000a900460ff1681565b600061061761057b610be0565b84610612856002600061058c610be0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c290919063ffffffff16565b610be8565b6001905092915050565b600061063461062e610be0565b83611120565b60019050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068e610be0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290611854565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610811906119f8565b80601f016020809104026020016040519081016040528092919081815260200182805461083d906119f8565b801561088a5780601f1061085f5761010080835404028352916020019161088a565b820191906000526020600020905b81548152906001019060200180831161086d57829003601f168201915b5050505050905090565b60006109746108a1610be0565b8461096f856040518060400160405280601f81526020017f2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f00815250600260006108e8610be0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b610be8565b6001905092915050565b600061099261098b610be0565b8484610db3565b6001905092915050565b600580546109a9906119f8565b80601f01602080910402602001604051908101604052809291908181526020018280546109d5906119f8565b8015610a225780601f106109f757610100808354040283529160200191610a22565b820191906000526020600020905b815481529060010190602001808311610a0557829003601f168201915b505050505081565b60068054610a37906119f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a63906119f8565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b47610be0565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90611854565b60405180910390fd5b610bdd816112e1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90611814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906117d4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610da69190611894565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906117f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90611834565b60405180910390fd5b610f1c816040518060400160405280602081526020017f207472616e7366657220616d6f756e7420657863656564732062616c616e6365815250600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fb181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110c290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110519190611894565b60405180910390a3505050565b60008383111582906110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9190611772565b60405180910390fd5b50600083856110b5919061193c565b9050809150509392505050565b60008082846110d191906118e6565b905083811015611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906117b4565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790611874565b60405180910390fd5b611219816040518060400160405280601d81526020017f3a206275726e20616d6f756e7420657863656564732062616c616e6365000000815250600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461105e9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112718160035461140e90919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112d59190611894565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890611794565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061145083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061105e565b905092915050565b60008135905061146781611c0c565b92915050565b60008135905061147c81611c23565b92915050565b60006020828403121561149857611497611a88565b5b60006114a684828501611458565b91505092915050565b600080604083850312156114c6576114c5611a88565b5b60006114d485828601611458565b92505060206114e585828601611458565b9150509250929050565b60008060006060848603121561150857611507611a88565b5b600061151686828701611458565b935050602061152786828701611458565b92505060406115388682870161146d565b9150509250925092565b6000806040838503121561155957611558611a88565b5b600061156785828601611458565b92505060206115788582860161146d565b9150509250929050565b60006020828403121561159857611597611a88565b5b60006115a68482850161146d565b91505092915050565b6115b881611970565b82525050565b6115c781611982565b82525050565b60006115d8826118ca565b6115e281856118d5565b93506115f28185602086016119c5565b6115fb81611a8d565b840191505092915050565b60006116136026836118d5565b915061161e82611a9e565b604082019050919050565b6000611636601b836118d5565b915061164182611aed565b602082019050919050565b6000611659601e836118d5565b915061166482611b16565b602082019050919050565b600061167c601f836118d5565b915061168782611b3f565b602082019050919050565b600061169f6020836118d5565b91506116aa82611b68565b602082019050919050565b60006116c2601d836118d5565b91506116cd82611b91565b602082019050919050565b60006116e56020836118d5565b91506116f082611bba565b602082019050919050565b6000611708601a836118d5565b915061171382611be3565b602082019050919050565b611727816119ae565b82525050565b611736816119b8565b82525050565b600060208201905061175160008301846115af565b92915050565b600060208201905061176c60008301846115be565b92915050565b6000602082019050818103600083015261178c81846115cd565b905092915050565b600060208201905081810360008301526117ad81611606565b9050919050565b600060208201905081810360008301526117cd81611629565b9050919050565b600060208201905081810360008301526117ed8161164c565b9050919050565b6000602082019050818103600083015261180d8161166f565b9050919050565b6000602082019050818103600083015261182d81611692565b9050919050565b6000602082019050818103600083015261184d816116b5565b9050919050565b6000602082019050818103600083015261186d816116d8565b9050919050565b6000602082019050818103600083015261188d816116fb565b9050919050565b60006020820190506118a9600083018461171e565b92915050565b60006020820190506118c4600083018461172d565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118f1826119ae565b91506118fc836119ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561193157611930611a2a565b5b828201905092915050565b6000611947826119ae565b9150611952836119ae565b92508282101561196557611964611a2a565b5b828203905092915050565b600061197b8261198e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156119e35780820151818401526020810190506119c8565b838111156119f2576000848401525b50505050565b60006002820490506001821680611a1057607f821691505b60208210811415611a2457611a23611a59565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f3a20617070726f76656520746f20746865207a65726f20616464726573730000600082015250565b7f207472616e736665722066726f6d20746865207a65726f206164647265737300600082015250565b7f3a20617070726f76652066726f6d6d20746865207a65726f2061646472657373600082015250565b7f207472616e7366657220746f20746865207a65726f2061646472657373000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6275726e2066726f6d20746865207a65726f2061646472657373000000000000600082015250565b611c1581611970565b8114611c2057600080fd5b50565b611c2c816119ae565b8114611c3757600080fd5b5056fe207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212205a1fc8582e0095f4752701140d5e00028d46c65e9f5db2982ab469b89dfe5fc764736f6c63430008070033

Deployed Bytecode Sourcemap

12163:4060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12951:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13585:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13048:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13746:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12755:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12433:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14049:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14510:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13150:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6461:130;;;:::i;:::-;;5859:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12851:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14257:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13273:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12460:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12486:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13440:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6736:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12951:88;12999:13;13028:5;13021:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12951:88;:::o;13585:153::-;13662:4;13675:39;13684:12;:10;:12::i;:::-;13698:7;13707:6;13675:8;:39::i;:::-;13728:4;13721:11;;13585:153;;;;:::o;13048:94::-;13101:7;13124:12;;13117:19;;13048:94;:::o;13746:295::-;13846:4;13859:36;13869:6;13877:9;13888:6;13859:9;:36::i;:::-;13902:115;13911:6;13919:12;:10;:12::i;:::-;13933:83;13971:6;13933:83;;;;;;;;;;;;;;;;;:11;:19;13945:6;13933:19;;;;;;;;;;;;;;;:33;13953:12;:10;:12::i;:::-;13933:33;;;;;;;;;;;;;;;;:37;;:83;;;;;:::i;:::-;13902:8;:115::i;:::-;14031:4;14024:11;;13746:295;;;;;:::o;12755:88::-;12807:5;12828:9;;;;;;;;;;;12821:16;;12755:88;:::o;12433:22::-;;;;;;;;;;;;;:::o;14049:200::-;14129:4;14142:83;14151:12;:10;:12::i;:::-;14165:7;14174:50;14213:10;14174:11;:25;14186:12;:10;:12::i;:::-;14174:25;;;;;;;;;;;;;;;:34;14200:7;14174:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14142:8;:83::i;:::-;14239:4;14232:11;;14049:200;;;;:::o;14510:110::-;14556:4;14569:27;14575:12;:10;:12::i;:::-;14589:6;14569:5;:27::i;:::-;14610:4;14603:11;;14510:110;;;:::o;13150:115::-;13218:7;13241:9;:18;13251:7;13241:18;;;;;;;;;;;;;;;;13234:25;;13150:115;;;:::o;6461:130::-;6063:12;:10;:12::i;:::-;6053:22;;:6;;;;;;;;;;:22;;;6045:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6556:1:::1;6519:40;;6540:6;::::0;::::1;;;;;;;;6519:40;;;;;;;;;;;;6583:1;6566:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;6461:130::o:0;5859:73::-;5897:7;5920:6;;;;;;;;;;;5913:13;;5859:73;:::o;12851:92::-;12901:13;12930:7;12923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12851:92;:::o;14257:245::-;14342:4;14355:123;14364:12;:10;:12::i;:::-;14378:7;14387:90;14426:15;14387:90;;;;;;;;;;;;;;;;;:11;:25;14399:12;:10;:12::i;:::-;14387:25;;;;;;;;;;;;;;;:34;14413:7;14387:34;;;;;;;;;;;;;;;;:38;;:90;;;;;:::i;:::-;14355:8;:123::i;:::-;14492:4;14485:11;;14257:245;;;;:::o;13273:159::-;13353:4;13366:42;13376:12;:10;:12::i;:::-;13390:9;13401:6;13366:9;:42::i;:::-;13422:4;13415:11;;13273:159;;;;:::o;12460:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12486:19::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13440:139::-;13523:7;13546:11;:18;13558:5;13546:18;;;;;;;;;;;;;;;:27;13565:7;13546:27;;;;;;;;;;;;;;;;13539:34;;13440:139;;;;:::o;6736:103::-;6063:12;:10;:12::i;:::-;6053:22;;:6;;;;;;;;;;:22;;;6045:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6805:28:::1;6824:8;6805:18;:28::i;:::-;6736:103:::0;:::o;3133:102::-;3178:15;3218:10;3202:27;;3133:102;:::o;15683:312::-;15790:1;15773:19;;:5;:19;;;;15765:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15863:1;15844:21;;:7;:21;;;;15836:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15939:6;15909:11;:18;15921:5;15909:18;;;;;;;;;;;;;;;:27;15928:7;15909:27;;;;;;;;;;;;;;;:36;;;;15973:7;15957:32;;15966:5;15957:32;;;15982:6;15957:32;;;;;;:::i;:::-;;;;;;;;15683:312;;;:::o;14628:431::-;14740:1;14722:20;;:6;:20;;;;14714:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14814:1;14793:23;;:9;:23;;;;14785:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14879;14901:6;14879:65;;;;;;;;;;;;;;;;;:9;:17;14889:6;14879:17;;;;;;;;;;;;;;;;:21;;:65;;;;;:::i;:::-;14859:9;:17;14869:6;14859:17;;;;;;;;;;;;;;;:85;;;;14974:32;14999:6;14974:9;:20;14984:9;14974:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14951:9;:20;14961:9;14951:20;;;;;;;;;;;;;;;:55;;;;15035:9;15018:35;;15027:6;15018:35;;;15046:6;15018:35;;;;;;:::i;:::-;;;;;;;;14628:431;;;:::o;4013:178::-;4099:7;4128:1;4123;:6;;4131:12;4115:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4151:9;4167:1;4163;:5;;;;:::i;:::-;4151:17;;4184:1;4177:8;;;4013:178;;;;;:::o;3700:167::-;3758:7;3774:9;3790:1;3786;:5;;;;:::i;:::-;3774:17;;3811:1;3806;:6;;3798:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3860:1;3853:8;;;3700:167;;;;:::o;15359:318::-;15450:1;15431:21;;:7;:21;;;;15423:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;15513:63;15536:6;15513:63;;;;;;;;;;;;;;;;;:9;:18;15523:7;15513:18;;;;;;;;;;;;;;;;:22;;:63;;;;;:::i;:::-;15492:9;:18;15502:7;15492:18;;;;;;;;;;;;;;;:84;;;;15598:24;15615:6;15598:12;;:16;;:24;;;;:::i;:::-;15583:12;:39;;;;15660:1;15634:37;;15643:7;15634:37;;;15664:6;15634:37;;;;;;:::i;:::-;;;;;;;;15359:318;;:::o;6937:215::-;7027:1;7007:22;;:8;:22;;;;6999:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7113:8;7084:38;;7105:6;;;;;;;;;;7084:38;;;;;;;;;;;;7138:8;7129:6;;:17;;;;;;;;;;;;;;;;;;6937:215;:::o;3875:130::-;3933:7;3956:43;3960:1;3963;3956:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3949:50;;3875:130;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:118::-;6224:24;6242:5;6224:24;:::i;:::-;6219:3;6212:37;6137:118;;:::o;6261:112::-;6344:22;6360:5;6344:22;:::i;:::-;6339:3;6332:35;6261:112;;:::o;6379:222::-;6472:4;6510:2;6499:9;6495:18;6487:26;;6523:71;6591:1;6580:9;6576:17;6567:6;6523:71;:::i;:::-;6379:222;;;;:::o;6607:210::-;6694:4;6732:2;6721:9;6717:18;6709:26;;6745:65;6807:1;6796:9;6792:17;6783:6;6745:65;:::i;:::-;6607:210;;;;:::o;6823:313::-;6936:4;6974:2;6963:9;6959:18;6951:26;;7023:9;7017:4;7013:20;7009:1;6998:9;6994:17;6987:47;7051:78;7124:4;7115:6;7051:78;:::i;:::-;7043:86;;6823:313;;;;:::o;7142:419::-;7308:4;7346:2;7335:9;7331:18;7323:26;;7395:9;7389:4;7385:20;7381:1;7370:9;7366:17;7359:47;7423:131;7549:4;7423:131;:::i;:::-;7415:139;;7142:419;;;:::o;7567:::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7820:9;7814:4;7810:20;7806:1;7795:9;7791:17;7784:47;7848:131;7974:4;7848:131;:::i;:::-;7840:139;;7567:419;;;:::o;7992:::-;8158:4;8196:2;8185:9;8181:18;8173:26;;8245:9;8239:4;8235:20;8231:1;8220:9;8216:17;8209:47;8273:131;8399:4;8273:131;:::i;:::-;8265:139;;7992:419;;;:::o;8417:::-;8583:4;8621:2;8610:9;8606:18;8598:26;;8670:9;8664:4;8660:20;8656:1;8645:9;8641:17;8634:47;8698:131;8824:4;8698:131;:::i;:::-;8690:139;;8417:419;;;:::o;8842:::-;9008:4;9046:2;9035:9;9031:18;9023:26;;9095:9;9089:4;9085:20;9081:1;9070:9;9066:17;9059:47;9123:131;9249:4;9123:131;:::i;:::-;9115:139;;8842:419;;;:::o;9267:::-;9433:4;9471:2;9460:9;9456:18;9448:26;;9520:9;9514:4;9510:20;9506:1;9495:9;9491:17;9484:47;9548:131;9674:4;9548:131;:::i;:::-;9540:139;;9267:419;;;:::o;9692:::-;9858:4;9896:2;9885:9;9881:18;9873:26;;9945:9;9939:4;9935:20;9931:1;9920:9;9916:17;9909:47;9973:131;10099:4;9973:131;:::i;:::-;9965:139;;9692:419;;;:::o;10117:::-;10283:4;10321:2;10310:9;10306:18;10298:26;;10370:9;10364:4;10360:20;10356:1;10345:9;10341:17;10334:47;10398:131;10524:4;10398:131;:::i;:::-;10390:139;;10117:419;;;:::o;10542:222::-;10635:4;10673:2;10662:9;10658:18;10650:26;;10686:71;10754:1;10743:9;10739:17;10730:6;10686:71;:::i;:::-;10542:222;;;;:::o;10770:214::-;10859:4;10897:2;10886:9;10882:18;10874:26;;10910:67;10974:1;10963:9;10959:17;10950:6;10910:67;:::i;:::-;10770:214;;;;:::o;11071:99::-;11123:6;11157:5;11151:12;11141:22;;11071:99;;;:::o;11176:169::-;11260:11;11294:6;11289:3;11282:19;11334:4;11329:3;11325:14;11310:29;;11176:169;;;;:::o;11351:305::-;11391:3;11410:20;11428:1;11410:20;:::i;:::-;11405:25;;11444:20;11462:1;11444:20;:::i;:::-;11439:25;;11598:1;11530:66;11526:74;11523:1;11520:81;11517:107;;;11604:18;;:::i;:::-;11517:107;11648:1;11645;11641:9;11634:16;;11351:305;;;;:::o;11662:191::-;11702:4;11722:20;11740:1;11722:20;:::i;:::-;11717:25;;11756:20;11774:1;11756:20;:::i;:::-;11751:25;;11795:1;11792;11789:8;11786:34;;;11800:18;;:::i;:::-;11786:34;11845:1;11842;11838:9;11830:17;;11662:191;;;;:::o;11859:96::-;11896:7;11925:24;11943:5;11925:24;:::i;:::-;11914:35;;11859:96;;;:::o;11961:90::-;11995:7;12038:5;12031:13;12024:21;12013:32;;11961:90;;;:::o;12057:126::-;12094:7;12134:42;12127:5;12123:54;12112:65;;12057:126;;;:::o;12189:77::-;12226:7;12255:5;12244:16;;12189:77;;;:::o;12272:86::-;12307:7;12347:4;12340:5;12336:16;12325:27;;12272:86;;;:::o;12364:307::-;12432:1;12442:113;12456:6;12453:1;12450:13;12442:113;;;12541:1;12536:3;12532:11;12526:18;12522:1;12517:3;12513:11;12506:39;12478:2;12475:1;12471:10;12466:15;;12442:113;;;12573:6;12570:1;12567:13;12564:101;;;12653:1;12644:6;12639:3;12635:16;12628:27;12564:101;12413:258;12364:307;;;:::o;12677:320::-;12721:6;12758:1;12752:4;12748:12;12738:22;;12805:1;12799:4;12795:12;12826:18;12816:81;;12882:4;12874:6;12870:17;12860:27;;12816:81;12944:2;12936:6;12933:14;12913:18;12910:38;12907:84;;;12963:18;;:::i;:::-;12907:84;12728:269;12677:320;;;:::o;13003:180::-;13051:77;13048:1;13041:88;13148:4;13145:1;13138:15;13172:4;13169:1;13162:15;13189:180;13237:77;13234:1;13227:88;13334:4;13331:1;13324:15;13358:4;13355:1;13348:15;13498:117;13607:1;13604;13597:12;13621:102;13662:6;13713:2;13709:7;13704:2;13697:5;13693:14;13689:28;13679:38;;13621:102;;;:::o;13729:225::-;13869:34;13865:1;13857:6;13853:14;13846:58;13938:8;13933:2;13925:6;13921:15;13914:33;13729:225;:::o;13960:177::-;14100:29;14096:1;14088:6;14084:14;14077:53;13960:177;:::o;14143:180::-;14283:32;14279:1;14271:6;14267:14;14260:56;14143:180;:::o;14329:181::-;14469:33;14465:1;14457:6;14453:14;14446:57;14329:181;:::o;14516:182::-;14656:34;14652:1;14644:6;14640:14;14633:58;14516:182;:::o;14704:179::-;14844:31;14840:1;14832:6;14828:14;14821:55;14704:179;:::o;14889:182::-;15029:34;15025:1;15017:6;15013:14;15006:58;14889:182;:::o;15077:176::-;15217:28;15213:1;15205:6;15201:14;15194:52;15077:176;:::o;15259:122::-;15332:24;15350:5;15332:24;:::i;:::-;15325:5;15322:35;15312:63;;15371:1;15368;15361:12;15312:63;15259:122;:::o;15387:::-;15460:24;15478:5;15460:24;:::i;:::-;15453:5;15450:35;15440:63;;15499:1;15496;15489:12;15440:63;15387:122;:::o

Swarm Source

ipfs://5a1fc8582e0095f4752701140d5e00028d46c65e9f5db2982ab469b89dfe5fc7
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.