ETH Price: $3,183.31 (+2.14%)
Gas: 2 Gwei

Token

MAR (MAR)
 

Overview

Max Total Supply

410,408,201.000000000012 MAR

Holders

10,007 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,150 MAR

Value
$0.00
0x570bd50cfb94379ad6a248d623f7894613df4548
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Markyt is the integration of blockchain technology with e-commerce thru the platform 'www.MARKYT.shop' (MAR), allowing for the first time a true Smart Contract between buyer & seller to provide complete transparency, with every transaction being recorded, and visible to the public.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MAR

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-08-31
*/

pragma solidity ^0.4.18;

// File: node_modules/zeppelin-solidity/contracts/ownership/Ownable.sol

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }


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


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

// File: node_modules/zeppelin-solidity/contracts/lifecycle/Pausable.sol

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    Unpause();
  }
}

// File: node_modules/zeppelin-solidity/contracts/math/SafeMath.sol

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

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

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

// File: node_modules/zeppelin-solidity/contracts/token/ERC20Basic.sol

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

// File: node_modules/zeppelin-solidity/contracts/token/BasicToken.sol

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}

// File: node_modules/zeppelin-solidity/contracts/token/ERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: node_modules/zeppelin-solidity/contracts/token/StandardToken.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

// File: node_modules/zeppelin-solidity/contracts/token/MintableToken.sol

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
//   function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
//     totalSupply = totalSupply.add(_amount);
//     balances[_to] = balances[_to].add(_amount);
//     Mint(_to, _amount);
//     Transfer(address(0), _to, _amount);
//     return true;
//   }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }
}

contract MAR is MintableToken, Pausable {
  string public constant name = "MAR";
  string public constant symbol = "MAR";
  uint8 public constant decimals = 18;
  uint256 internal constant MILLION_TOKENS = 1e6 * 1e18;

  address public teamWallet;
  bool public teamTokensMinted = false;
  uint256 public circulationStartTime;

  event Burn(address indexed burnedFrom, uint256 value);

  function MARToken() public {
    paused = true;
  }

  function setTeamWallet(address _teamWallet) public onlyOwner canMint {
    require(teamWallet == address(0));
    require(_teamWallet != address(0));

    teamWallet = _teamWallet;
  }
  
  
   function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    require(totalSupply + _amount <= 1000 * MILLION_TOKENS && circulationStartTime != 0);
    if(now > circulationStartTime && now < circulationStartTime + 2 years)
    {
        require(totalSupply + _amount <= 450 * MILLION_TOKENS);
    }
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(address(0), _to, _amount);
    return true;
  }
    



  /*
   * @overrides Pausable#unpause
   * Change: store the time when it was first unpaused
   */
  function unpause() onlyOwner whenPaused public {
    if (circulationStartTime == 0) {
      circulationStartTime = now;
    }

    super.unpause();
  }

  /*
   * @overrides BasicToken#transfer
   * Changes:
   * - added whenNotPaused modifier
   * - added validation that teamWallet balance must not fall below amount of locked tokens
   */
  function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
    require(validTransfer(msg.sender, _value));
    return super.transfer(_to, _value);
  }

  /*
   * @overrides StandardToken#transferFrom
   * Changes:
   * - added whenNotPaused modifier
   * - added validation that teamWallet balance must not fall below amount of locked tokens
   */
  function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
    require(validTransfer(_from, _value));
    return super.transferFrom(_from, _to, _value);
  }

  function validTransfer(address _from, uint256 _amount) internal view returns (bool) {
    if (_from != teamWallet) {
      return true;
    }

    uint256 balanceAfterTransfer = balanceOf(_from).sub(_amount);
    return balanceAfterTransfer >= minimumTeamWalletBalance();
  }

  
  function minimumTeamWalletBalance() internal view returns (uint256) {
    if (now < circulationStartTime + 2 years) {
      return 550 * MILLION_TOKENS;
    } else {
      return 0;
    }
  }

  /*
   * Copy of BurnableToken#burn
   * Changes:
   * - only allow owner to burn tokens and burn from given address, not msg.sender
   */
  function burn(address _from, uint256 _value) external onlyOwner {
    require(_value <= balances[_from]);

    balances[_from] = balances[_from].sub(_value);
    totalSupply = totalSupply.sub(_value);
    Burn(_from, _value);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_teamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamTokensMinted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"circulationStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"teamWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"MARToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burnedFrom","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

6060604052600380546004805460a060020a60ff0219169055600160b060020a03191633600160a060020a03161790556110b58061003e6000396000f3006060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806306fdde0314610174578063095ea7b3146101fe5780631525ff7d1461022057806318160ddd1461024157806322cb1ec81461026657806323b872dd14610279578063313ce567146102a157806338b9499b146102ca5780633f4ba83a146102dd57806340c10f19146102f057806359927044146103125780635c975abb14610341578063661884631461035457806370a08231146103765780637d64bcb4146103955780638456cb59146103a85780638da5cb5b146103bb57806395d89b41146101745780639dc29fac146103ce578063a9059cbb146103f0578063d73dd62314610412578063dd62ed3e14610434578063f2fde38b14610459578063f4c9a20c14610478575b600080fd5b341561015857600080fd5b61016061048b565b604051901515815260200160405180910390f35b341561017f57600080fd5b61018761049b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c35780820151838201526020016101ab565b50505050905090810190601f1680156101f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020957600080fd5b610160600160a060020a03600435166024356104d2565b341561022b57600080fd5b61023f600160a060020a036004351661053e565b005b341561024c57600080fd5b6102546105ca565b60405190815260200160405180910390f35b341561027157600080fd5b6101606105d0565b341561028457600080fd5b610160600160a060020a03600435811690602435166044356105e0565b34156102ac57600080fd5b6102b4610622565b60405160ff909116815260200160405180910390f35b34156102d557600080fd5b610254610627565b34156102e857600080fd5b61023f61062d565b34156102fb57600080fd5b610160600160a060020a0360043516602435610678565b341561031d57600080fd5b6103256107ed565b604051600160a060020a03909116815260200160405180910390f35b341561034c57600080fd5b6101606107fc565b341561035f57600080fd5b610160600160a060020a036004351660243561080c565b341561038157600080fd5b610254600160a060020a0360043516610908565b34156103a057600080fd5b610160610923565b34156103b357600080fd5b61023f6109af565b34156103c657600080fd5b610325610a34565b34156103d957600080fd5b61023f600160a060020a0360043516602435610a43565b34156103fb57600080fd5b610160600160a060020a0360043516602435610b1d565b341561041d57600080fd5b610160600160a060020a0360043516602435610b5d565b341561043f57600080fd5b610254600160a060020a0360043581169060243516610c01565b341561046457600080fd5b61023f600160a060020a0360043516610c2c565b341561048357600080fd5b61023f610cc7565b60035460a060020a900460ff1681565b60408051908101604052600381527f4d41520000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461055957600080fd5b60035460a060020a900460ff161561057057600080fd5b600454600160a060020a03161561058657600080fd5b600160a060020a038116151561059b57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005481565b60045460a060020a900460ff1681565b60035460009060a860020a900460ff16156105fa57600080fd5b6106048483610cee565b151561060f57600080fd5b61061a848484610d3e565b949350505050565b601281565b60055481565b60035433600160a060020a0390811691161461064857600080fd5b60035460a860020a900460ff16151561066057600080fd5b600554151561066e57426005555b610676610ec0565b565b60035460009033600160a060020a0390811691161461069657600080fd5b60035460a060020a900460ff16156106ad57600080fd5b6000546b033b2e3c9fd0803ce8000000908301118015906106cf575060055415155b15156106da57600080fd5b600554421180156106f257506005546303c267000142105b15610715576000546b01743b34e18439b502000000908301111561071557600080fd5b600054610728908363ffffffff610f4016565b6000908155600160a060020a038416815260016020526040902054610753908363ffffffff610f4016565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600454600160a060020a031681565b60035460a860020a900460ff1681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561086957600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108a0565b610879818463ffffffff610f4f16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461094157600080fd5b60035460a060020a900460ff161561095857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b90565b60035433600160a060020a039081169116146109ca57600080fd5b60035460a860020a900460ff16156109e157600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60035433600160a060020a03908116911614610a5e57600080fd5b600160a060020a038216600090815260016020526040902054811115610a8357600080fd5b600160a060020a038216600090815260016020526040902054610aac908263ffffffff610f4f16565b600160a060020a03831660009081526001602052604081209190915554610ad9908263ffffffff610f4f16565b600055600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a25050565b60035460009060a860020a900460ff1615610b3757600080fd5b610b413383610cee565b1515610b4c57600080fd5b610b568383610f61565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b95908363ffffffff610f4016565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c4757600080fd5b600160a060020a0381161515610c5c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6003805475ff000000000000000000000000000000000000000000191660a860020a179055565b6004546000908190600160a060020a03858116911614610d115760019150610901565b610d2a83610d1e86610908565b9063ffffffff610f4f16565b9050610d3461105c565b9010159392505050565b6000600160a060020a0383161515610d5557600080fd5b600160a060020a038416600090815260016020526040902054821115610d7a57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610dad57600080fd5b600160a060020a038416600090815260016020526040902054610dd6908363ffffffff610f4f16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610e0b908363ffffffff610f4016565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610e53908363ffffffff610f4f16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035433600160a060020a03908116911614610edb57600080fd5b60035460a860020a900460ff161515610ef357600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600082820183811015610b5657fe5b600082821115610f5b57fe5b50900390565b6000600160a060020a0383161515610f7857600080fd5b600160a060020a033316600090815260016020526040902054821115610f9d57600080fd5b600160a060020a033316600090815260016020526040902054610fc6908363ffffffff610f4f16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ffb908363ffffffff610f4016565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60006005546303c267000142101561108157506b01c6f307be4c4687e60000006109ac565b5060006109ac5600a165627a7a723058200f8ec684c3aa189896835febef438aaaf2e85058f5010e9edc5424a952a9cfd60029

Deployed Bytecode

0x6060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806306fdde0314610174578063095ea7b3146101fe5780631525ff7d1461022057806318160ddd1461024157806322cb1ec81461026657806323b872dd14610279578063313ce567146102a157806338b9499b146102ca5780633f4ba83a146102dd57806340c10f19146102f057806359927044146103125780635c975abb14610341578063661884631461035457806370a08231146103765780637d64bcb4146103955780638456cb59146103a85780638da5cb5b146103bb57806395d89b41146101745780639dc29fac146103ce578063a9059cbb146103f0578063d73dd62314610412578063dd62ed3e14610434578063f2fde38b14610459578063f4c9a20c14610478575b600080fd5b341561015857600080fd5b61016061048b565b604051901515815260200160405180910390f35b341561017f57600080fd5b61018761049b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c35780820151838201526020016101ab565b50505050905090810190601f1680156101f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020957600080fd5b610160600160a060020a03600435166024356104d2565b341561022b57600080fd5b61023f600160a060020a036004351661053e565b005b341561024c57600080fd5b6102546105ca565b60405190815260200160405180910390f35b341561027157600080fd5b6101606105d0565b341561028457600080fd5b610160600160a060020a03600435811690602435166044356105e0565b34156102ac57600080fd5b6102b4610622565b60405160ff909116815260200160405180910390f35b34156102d557600080fd5b610254610627565b34156102e857600080fd5b61023f61062d565b34156102fb57600080fd5b610160600160a060020a0360043516602435610678565b341561031d57600080fd5b6103256107ed565b604051600160a060020a03909116815260200160405180910390f35b341561034c57600080fd5b6101606107fc565b341561035f57600080fd5b610160600160a060020a036004351660243561080c565b341561038157600080fd5b610254600160a060020a0360043516610908565b34156103a057600080fd5b610160610923565b34156103b357600080fd5b61023f6109af565b34156103c657600080fd5b610325610a34565b34156103d957600080fd5b61023f600160a060020a0360043516602435610a43565b34156103fb57600080fd5b610160600160a060020a0360043516602435610b1d565b341561041d57600080fd5b610160600160a060020a0360043516602435610b5d565b341561043f57600080fd5b610254600160a060020a0360043581169060243516610c01565b341561046457600080fd5b61023f600160a060020a0360043516610c2c565b341561048357600080fd5b61023f610cc7565b60035460a060020a900460ff1681565b60408051908101604052600381527f4d41520000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035433600160a060020a0390811691161461055957600080fd5b60035460a060020a900460ff161561057057600080fd5b600454600160a060020a03161561058657600080fd5b600160a060020a038116151561059b57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005481565b60045460a060020a900460ff1681565b60035460009060a860020a900460ff16156105fa57600080fd5b6106048483610cee565b151561060f57600080fd5b61061a848484610d3e565b949350505050565b601281565b60055481565b60035433600160a060020a0390811691161461064857600080fd5b60035460a860020a900460ff16151561066057600080fd5b600554151561066e57426005555b610676610ec0565b565b60035460009033600160a060020a0390811691161461069657600080fd5b60035460a060020a900460ff16156106ad57600080fd5b6000546b033b2e3c9fd0803ce8000000908301118015906106cf575060055415155b15156106da57600080fd5b600554421180156106f257506005546303c267000142105b15610715576000546b01743b34e18439b502000000908301111561071557600080fd5b600054610728908363ffffffff610f4016565b6000908155600160a060020a038416815260016020526040902054610753908363ffffffff610f4016565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600454600160a060020a031681565b60035460a860020a900460ff1681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561086957600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108a0565b610879818463ffffffff610f4f16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a0390811691161461094157600080fd5b60035460a060020a900460ff161561095857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a15060015b90565b60035433600160a060020a039081169116146109ca57600080fd5b60035460a860020a900460ff16156109e157600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60035433600160a060020a03908116911614610a5e57600080fd5b600160a060020a038216600090815260016020526040902054811115610a8357600080fd5b600160a060020a038216600090815260016020526040902054610aac908263ffffffff610f4f16565b600160a060020a03831660009081526001602052604081209190915554610ad9908263ffffffff610f4f16565b600055600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a25050565b60035460009060a860020a900460ff1615610b3757600080fd5b610b413383610cee565b1515610b4c57600080fd5b610b568383610f61565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b95908363ffffffff610f4016565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c4757600080fd5b600160a060020a0381161515610c5c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6003805475ff000000000000000000000000000000000000000000191660a860020a179055565b6004546000908190600160a060020a03858116911614610d115760019150610901565b610d2a83610d1e86610908565b9063ffffffff610f4f16565b9050610d3461105c565b9010159392505050565b6000600160a060020a0383161515610d5557600080fd5b600160a060020a038416600090815260016020526040902054821115610d7a57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610dad57600080fd5b600160a060020a038416600090815260016020526040902054610dd6908363ffffffff610f4f16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610e0b908363ffffffff610f4016565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610e53908363ffffffff610f4f16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60035433600160a060020a03908116911614610edb57600080fd5b60035460a860020a900460ff161515610ef357600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600082820183811015610b5657fe5b600082821115610f5b57fe5b50900390565b6000600160a060020a0383161515610f7857600080fd5b600160a060020a033316600090815260016020526040902054821115610f9d57600080fd5b600160a060020a033316600090815260016020526040902054610fc6908363ffffffff610f4f16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ffb908363ffffffff610f4016565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60006005546303c267000142101561108157506b01c6f307be4c4687e60000006109ac565b5060006109ac5600a165627a7a723058200f8ec684c3aa189896835febef438aaaf2e85058f5010e9edc5424a952a9cfd60029

Deployed Bytecode Sourcemap

10691:3127:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9783:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10736;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7014:187:0;;;;;;;;;;-1:-1:-1;;;;;7014:187:0;;;;;;;11150:189;;;;;;;;;;-1:-1:-1;;;;;11150:189:0;;;;;;;3246:26;;;;;;;;;;;;;;;;;;;;;;;;;;;10948:36;;;;;;;;;;;;12730:204;;;;;;;;;;-1:-1:-1;;;;;12730:204:0;;;;;;;;;;;;10818:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10989;;;;;;;;;;;;11985:157;;;;;;;;;;;;11352:514;;;;;;;;;;-1:-1:-1;;;;;11352:514:0;;;;;;;10918:25;;;;;;;;;;;;;;;-1:-1:-1;;;;;10918:25:0;;;;;;;;;;;;;;1393:26;;;;;;;;;;;;8860:407;;;;;;;;;;-1:-1:-1;;;;;8860:407:0;;;;;;;4528:109;;;;;;;;;;-1:-1:-1;;;;;4528:109:0;;;;;10545:139;;;;;;;;;;;;1834:88;;;;;;;;;;;;320:20;;;;;;;;;;;;13580:235;;;;;;;;;;-1:-1:-1;;;;;13580:235:0;;;;;;;12343:179;;;;;;;;;;-1:-1:-1;;;;;12343:179:0;;;;;;;8125:261;;;;;;;;;;-1:-1:-1;;;;;8125:261:0;;;;;;;7528:128;;;;;;;;;;-1:-1:-1;;;;;7528:128:0;;;;;;;;;;944:173;;;;;;;;;;-1:-1:-1;;;;;944:173:0;;;;;11091:53;;;;;;;;;;;;9783:35;;;-1:-1:-1;;;9783:35:0;;;;;:::o;10736:::-;;;;;;;;;;;;;;;;;;:::o;7014:187::-;-1:-1:-1;;;;;7102:10:0;7094:19;;7081:4;7094:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;7081:4;;7094:29;:19;7139:38;;7126:6;;7139:38;;;;;;;;;;;;;-1:-1:-1;7191:4:0;7014:187;;;;:::o;11150:189::-;755:5;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;9862:15;;-1:-1:-1;;;9862:15:0;;;;9861:16;9853:25;;;;;;11234:10;;-1:-1:-1;;;;;11234:10:0;:24;11226:33;;;;;;-1:-1:-1;;;;;11274:25:0;;;;11266:34;;;;;;11309:10;:24;;-1:-1:-1;;11309:24:0;-1:-1:-1;;;;;11309:24:0;;;;;;;;;;11150:189::o;3246:26::-;;;;:::o;10948:36::-;;;-1:-1:-1;;;10948:36:0;;;;;:::o;12730:204::-;1569:6;;12826:4;;-1:-1:-1;;;1569:6:0;;;;1568:7;1560:16;;;;;;12847:28;12861:5;12868:6;12847:13;:28::i;:::-;12839:37;;;;;;;;12890:38;12909:5;12916:3;12921:6;12890:18;:38::i;:::-;12883:45;12730:204;-1:-1:-1;;;;12730:204:0:o;10818:35::-;10851:2;10818:35;:::o;10989:::-;;;;:::o;11985:157::-;755:5;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;1729:6;;-1:-1:-1;;;1729:6:0;;;;1721:15;;;;;;;;12043:20;;:25;12039:74;;;12102:3;12079:20;:26;12039:74;12121:15;:13;:15::i;:::-;11985:157::o;11352:514::-;755:5;;11430:4;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;9862:15;;-1:-1:-1;;;9862:15:0;;;;9861:16;9853:25;;;;;;11451:11;;11476:21;11451;;;:46;;;;:75;;-1:-1:-1;11501:20:0;;:25;;11451:75;11443:84;;;;;;;;11543:20;;11537:3;:26;:66;;;;;11573:20;;11596:7;11573:30;11567:3;:36;11537:66;11534:149;;;11629:11;;11654:20;11629:21;;;:45;;11621:54;;;;;;11703:11;;:24;;11719:7;11703:24;:15;:24;:::i;:::-;11689:11;:38;;;-1:-1:-1;;;;;11750:13:0;;;;:8;:13;;;;;;:26;;11768:7;11750:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;11734:13:0;;;;;;:8;:13;;;;;;;:42;;;;:13;11783:18;;11793:7;;11783:18;;;;;;;;;;;;;-1:-1:-1;;;;;11808:34:0;;11825:1;11808:34;11834:7;11808:34;;;;;;;;;;;;;;-1:-1:-1;11856:4:0;11352:514;;;;:::o;10918:25::-;;;-1:-1:-1;;;;;10918:25:0;;:::o;1393:26::-;;;-1:-1:-1;;;1393:26:0;;;;;:::o;8860:407::-;-1:-1:-1;;;;;8980:10:0;8972:19;;8943:4;8972:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;9012:27;;;9008:168;;;-1:-1:-1;;;;;9058:10:0;9050:19;;9082:1;9050:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;9008:168;;;9138:30;:8;9151:16;9138:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;9114:10:0;9106:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;9008:168;-1:-1:-1;;;;;9191:10:0;9182:61;;9213:19;;;;:7;:19;;;;;;;;9182:61;;;9213:29;;;;;;;;;;;;9182:61;;;;;;;;;;;;;;;9257:4;9250:11;;8860:407;;;;;;:::o;4528:109::-;-1:-1:-1;;;;;4615:16:0;4584:15;4615:16;;;:8;:16;;;;;;;4528:109::o;10545:139::-;755:5;;10604:4;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;9862:15;;-1:-1:-1;;;9862:15:0;;;;9861:16;9853:25;;;;;;10617:15;:22;;-1:-1:-1;;10617:22:0;-1:-1:-1;;;10617:22:0;;;10646:14;;;;;;;;;;-1:-1:-1;10674:4:0;9885:1;10545:139;:::o;1834:88::-;755:5;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;1569:6;;-1:-1:-1;;;1569:6:0;;;;1568:7;1560:16;;;;;;1889:6;:13;;-1:-1:-1;;1889:13:0;-1:-1:-1;;;1889:13:0;;;1909:7;;;;;;;;;;1834:88::o;320:20::-;;;-1:-1:-1;;;;;320:20:0;;:::o;13580:235::-;755:5;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;-1:-1:-1;;;;;13669:15:0;;;;;;:8;:15;;;;;;13659:25;;;13651:34;;;;;;-1:-1:-1;;;;;13712:15:0;;;;;;:8;:15;;;;;;:27;;13732:6;13712:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;13694:15:0;;;;;;:8;:15;;;;;:45;;;;13760:11;:23;;13776:6;13760:23;:15;:23;:::i;:::-;13746:11;:37;-1:-1:-1;;;;;13790:19:0;;;13802:6;13790:19;;;;;;;;;;;;;;13580:235;;:::o;12343:179::-;1569:6;;12420:4;;-1:-1:-1;;;1569:6:0;;;;1568:7;1560:16;;;;;;12441:33;12455:10;12467:6;12441:13;:33::i;:::-;12433:42;;;;;;;;12489:27;12504:3;12509:6;12489:14;:27::i;:::-;12482:34;12343:179;-1:-1:-1;;;12343:179:0:o;8125:261::-;-1:-1:-1;;;;;8256:10:0;8248:19;;8203:4;8248:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;8282:11;8248:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;8224:10:0;8216:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:78;;;:29;;:19;;8301:61;;8216:78;8301:61;;;;;;;;;;;;;-1:-1:-1;8376:4:0;8125:261;;;;:::o;7528:128::-;-1:-1:-1;;;;;7625:15:0;;;7602:7;7625:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7528:128::o;944:173::-;755:5;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;-1:-1:-1;;;;;1021:22:0;;;;1013:31;;;;;;1072:5;;-1:-1:-1;;;;;1051:37:0;;;;1072:5;1051:37;;;;;;;;;;1095:5;:16;;-1:-1:-1;;1095:16:0;-1:-1:-1;;;;;1095:16:0;;;;;;;;;;944:173::o;11091:53::-;11125:6;:13;;-1:-1:-1;;11125:13:0;-1:-1:-1;;;11125:13:0;;;11091:53::o;12940:282::-;13044:10;;13018:4;;;;-1:-1:-1;;;;;13035:19:0;;;13044:10;;13035:19;13031:53;;13072:4;13065:11;;;;13031:53;13123:29;13144:7;13123:16;13133:5;13123:9;:16::i;:::-;:20;:29;:20;:29;:::i;:::-;13092:60;;13190:26;:24;:26::i;:::-;13166:50;;;;12940:282;-1:-1:-1;;;12940:282:0:o;5930:449::-;6012:4;-1:-1:-1;;;;;6033:17:0;;;;6025:26;;;;;;-1:-1:-1;;;;;6076:15:0;;;;;;:8;:15;;;;;;6066:25;;;6058:34;;;;;;-1:-1:-1;;;;;6117:14:0;;;;;;;:7;:14;;;;;;;;6132:10;6117:26;;;;;;;;;;6107:36;;;6099:45;;;;;;-1:-1:-1;;;;;6171:15:0;;;;;;:8;:15;;;;;;:27;;6191:6;6171:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6153:15:0;;;;;;;:8;:15;;;;;;:45;;;;6221:13;;;;;;;:25;;6239:6;6221:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6205:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;6282:14;;;;;:7;:14;;;;;6297:10;6282:26;;;;;;;;;;;:38;;6313:6;6282:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6253:14:0;;;;;;;:7;:14;;;;;;;;6268:10;6253:26;;;;;;;;;;;:67;;;;6327:28;;;;;;6348:6;;6327:28;;;;;;;;;;;;;-1:-1:-1;6369:4:0;5930:449;;;;;:::o;2009:90::-;755:5;;741:10;-1:-1:-1;;;;;741:19:0;;;755:5;;741:19;733:28;;;;;;1729:6;;-1:-1:-1;;;1729:6:0;;;;1721:15;;;;;;;;2063:6;:14;;-1:-1:-1;;2063:14:0;;;2084:9;;;;;;;;;;2009:90::o;2874:133::-;2932:7;2960:5;;;2979:6;;;;2972:14;;;2755:113;2813:7;2836:6;;;;2829:14;;;;-1:-1:-1;2857:5:0;;;2755:113::o;3931:388::-;3994:4;-1:-1:-1;;;;;4015:17:0;;;;4007:26;;;;;;-1:-1:-1;;;;;4067:10:0;4058:20;;;;;:8;:20;;;;;;4048:30;;;4040:39;;;;;;-1:-1:-1;;;;;4184:10:0;4175:20;;;;;:8;:20;;;;;;:32;;4200:6;4175:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;4161:10:0;4152:20;;;;;;:8;:20;;;;;;:55;;;;4230:13;;;;;;;:25;;4248:6;4230:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4214:13:0;;;;;;;:8;:13;;;;;;;:41;;;;:13;4271:10;4262:33;;;;;;4288:6;;4262:33;;;;;;;;;;;;;-1:-1:-1;4309:4:0;3931:388;;;;:::o;13232:197::-;13291:7;13317:20;;13340:7;13317:30;13311:3;:36;13307:117;;;-1:-1:-1;13365:20:0;13358:27;;13307:117;-1:-1:-1;13415:1:0;13408:8;

Swarm Source

bzzr://0f8ec684c3aa189896835febef438aaaf2e85058f5010e9edc5424a952a9cfd6
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.