ETH Price: $2,639.03 (-1.07%)

Token

Pearl Core Finance (PRCF)
 

Overview

Max Total Supply

49,000 PRCF

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
254.593231364426246381 PRCF

Value
$0.00
0x0d0542840f0a831ab16cc71932001617d6d88588
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:
Pearl_Core_Finance

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-10-27
*/

pragma solidity 0.5.17;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || 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;
  }
}


/**
 * @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.
   */
  constructor() 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) onlyOwner public {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }
}

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


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

  mapping(address => uint256) internal 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) && _to != address(this));

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit 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];
  }
}

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


/**
 * @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) && _to != address(this));

    uint256 _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    emit 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;
    emit 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 remaining) {
    return allowed[_owner][_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
   */
  function increaseApproval (address _spender, uint _addedValue) public
    returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public
    returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }
}


interface tokenRecipient { 
    function receiveApproval(address _from, uint256 _value, bytes calldata _extraData) external;
}

contract Pearl_Core_Finance is StandardToken, Ownable {

    string public constant name = "Pearl Core Finance";
    string public constant symbol = "PRCF";
    uint public constant decimals = 18;
    // there is no problem in using * here instead of .mul()
    uint256 public constant initialSupply = 49000 * (10 ** uint256(decimals));

    // Constructors
    constructor () public {
        totalSupply = initialSupply;
        balances[msg.sender] = initialSupply; // Send all tokens to owner
        emit Transfer(address(0), msg.sender, initialSupply);
    }
    
    function approveAndCall(address _spender, uint256 _value, bytes calldata _extraData)
        external
        returns (bool success) 
    {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, _extraData);
            return true;
        }
    }
    
    function transferAnyERC20Token(address _tokenAddress, address _to, uint _amount) public onlyOwner {
        ERC20(_tokenAddress).transfer(_to, _amount);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50600380546001600160a01b03191633908117909155690a604b9a42df9ca00000600081815582815260016020908152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3610b158061008a6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d493b9ac11610066578063d493b9ac14610351578063d73dd62314610389578063dd62ed3e146103b5578063f2fde38b146103e357610100565b80638da5cb5b1461027457806395d89b4114610298578063a9059cbb146102a0578063cae9ca51146102cc57610100565b8063313ce567116100d3578063313ce56714610212578063378dc3dc1461021a578063661884631461022257806370a082311461024e57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610409565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610437565b604080519115158252519081900360200190f35b6101ca61049d565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b038135811691602081013590911690604001356104a3565b6101ca6105d8565b6101ca6105dd565b6101ae6004803603604081101561023857600080fd5b506001600160a01b0381351690602001356105eb565b6101ca6004803603602081101561026457600080fd5b50356001600160a01b03166106db565b61027c6106f6565b604080516001600160a01b039092168252519081900360200190f35b61010d610705565b6101ae600480360360408110156102b657600080fd5b506001600160a01b038135169060200135610725565b6101ae600480360360608110156102e257600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561031257600080fd5b82018360208201111561032457600080fd5b8035906020019184600183028401116401000000008311171561034657600080fd5b509092509050610801565b6103876004803603606081101561036757600080fd5b506001600160a01b038135811691602081013590911690604001356108c6565b005b6101ae6004803603604081101561039f57600080fd5b506001600160a01b03813516906020013561096e565b6101ca600480360360408110156103cb57600080fd5b506001600160a01b0381358116916020013516610a07565b610387600480360360208110156103f957600080fd5b50356001600160a01b0316610a32565b60405180604001604052806012815260200171506561726c20436f72652046696e616e636560701b81525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b038316158015906104c657506001600160a01b0383163014155b6104cf57600080fd5b6001600160a01b0384166000818152600260209081526040808320338452825280832054938352600190915290205461050e908463ffffffff610ab816565b6001600160a01b038087166000908152600160205260408082209390935590861681522054610543908463ffffffff610aca16565b6001600160a01b03851660009081526001602052604090205561056c818463ffffffff610ab816565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b690a604b9a42df9ca0000081565b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610640573360009081526002602090815260408083206001600160a01b0388168452909152812055610675565b610650818463ffffffff610ab816565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60405180604001604052806004815260200163282921a360e11b81525081565b60006001600160a01b0383161580159061074857506001600160a01b0383163014155b61075157600080fd5b33600090815260016020526040902054610771908363ffffffff610ab816565b33600090815260016020526040808220929092556001600160a01b038516815220546107a3908363ffffffff610aca16565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008461080e8186610437565b156108bc5760405163a2d5785360e01b8152336004820181815260248301889052606060448401908152606484018790526001600160a01b0385169363a2d5785393928a928a928a929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561089a57600080fd5b505af11580156108ae573d6000803e3d6000fd5b5050505060019150506108be565b505b949350505050565b6003546001600160a01b031633146108dd57600080fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561093d57600080fd5b505af1158015610951573d6000803e3d6000fd5b505050506040513d602081101561096757600080fd5b5050505050565b3360009081526002602090815260408083206001600160a01b03861684529091528120546109a2908363ffffffff610aca16565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a4957600080fd5b6001600160a01b038116610a5c57600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610ac457fe5b50900390565b600082820183811015610ad957fe5b939250505056fea265627a7a72315820a7d0fbc7a415ac536587bdd4799d8f232f6f10edd8750f85fb1277e7e162766e64736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d493b9ac11610066578063d493b9ac14610351578063d73dd62314610389578063dd62ed3e146103b5578063f2fde38b146103e357610100565b80638da5cb5b1461027457806395d89b4114610298578063a9059cbb146102a0578063cae9ca51146102cc57610100565b8063313ce567116100d3578063313ce56714610212578063378dc3dc1461021a578063661884631461022257806370a082311461024e57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610409565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610437565b604080519115158252519081900360200190f35b6101ca61049d565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b038135811691602081013590911690604001356104a3565b6101ca6105d8565b6101ca6105dd565b6101ae6004803603604081101561023857600080fd5b506001600160a01b0381351690602001356105eb565b6101ca6004803603602081101561026457600080fd5b50356001600160a01b03166106db565b61027c6106f6565b604080516001600160a01b039092168252519081900360200190f35b61010d610705565b6101ae600480360360408110156102b657600080fd5b506001600160a01b038135169060200135610725565b6101ae600480360360608110156102e257600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561031257600080fd5b82018360208201111561032457600080fd5b8035906020019184600183028401116401000000008311171561034657600080fd5b509092509050610801565b6103876004803603606081101561036757600080fd5b506001600160a01b038135811691602081013590911690604001356108c6565b005b6101ae6004803603604081101561039f57600080fd5b506001600160a01b03813516906020013561096e565b6101ca600480360360408110156103cb57600080fd5b506001600160a01b0381358116916020013516610a07565b610387600480360360208110156103f957600080fd5b50356001600160a01b0316610a32565b60405180604001604052806012815260200171506561726c20436f72652046696e616e636560701b81525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b038316158015906104c657506001600160a01b0383163014155b6104cf57600080fd5b6001600160a01b0384166000818152600260209081526040808320338452825280832054938352600190915290205461050e908463ffffffff610ab816565b6001600160a01b038087166000908152600160205260408082209390935590861681522054610543908463ffffffff610aca16565b6001600160a01b03851660009081526001602052604090205561056c818463ffffffff610ab816565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b690a604b9a42df9ca0000081565b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610640573360009081526002602090815260408083206001600160a01b0388168452909152812055610675565b610650818463ffffffff610ab816565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b6003546001600160a01b031681565b60405180604001604052806004815260200163282921a360e11b81525081565b60006001600160a01b0383161580159061074857506001600160a01b0383163014155b61075157600080fd5b33600090815260016020526040902054610771908363ffffffff610ab816565b33600090815260016020526040808220929092556001600160a01b038516815220546107a3908363ffffffff610aca16565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008461080e8186610437565b156108bc5760405163a2d5785360e01b8152336004820181815260248301889052606060448401908152606484018790526001600160a01b0385169363a2d5785393928a928a928a929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561089a57600080fd5b505af11580156108ae573d6000803e3d6000fd5b5050505060019150506108be565b505b949350505050565b6003546001600160a01b031633146108dd57600080fd5b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561093d57600080fd5b505af1158015610951573d6000803e3d6000fd5b505050506040513d602081101561096757600080fd5b5050505050565b3360009081526002602090815260408083206001600160a01b03861684529091528120546109a2908363ffffffff610aca16565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a4957600080fd5b6001600160a01b038116610a5c57600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600082821115610ac457fe5b50900390565b600082820183811015610ad957fe5b939250505056fea265627a7a72315820a7d0fbc7a415ac536587bdd4799d8f232f6f10edd8750f85fb1277e7e162766e64736f6c63430005110032

Deployed Bytecode Sourcemap

7438:1128:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7438:1128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7501:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7501:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5680:192;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5680:192:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2012:26;;;:::i;:::-;;;;;;;;;;;;;;;;4470:575;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4470:575:0;;;;;;;;;;;;;;;;;:::i;7603:34::-;;;:::i;7706:73::-;;;:::i;6871:426::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6871:426:0;;;;;;;;:::i;3214:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3214:109:0;-1:-1:-1;;;;;3214:109:0;;:::i;1050:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1050:20:0;;;;;;;;;;;;;;7558:38;;;:::i;2634:371::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2634:371:0;;;;;;;;:::i;8027:358::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;8027:358:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;8027:358:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;8027:358:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;8027:358:0;;-1:-1:-1;8027:358:0;-1:-1:-1;8027:358:0;:::i;8397:160::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8397:160:0;;;;;;;;;;;;;;;;;:::i;:::-;;6585:280;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6585:280:0;;;;;;;;:::i;6199:138::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6199:138:0;;;;;;;;;;:::i;1669:178::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1669:178:0;-1:-1:-1;;;;;1669:178:0;;:::i;7501:50::-;;;;;;;;;;;;;;-1:-1:-1;;;7501:50:0;;;;:::o;5680:192::-;5768:10;5747:4;5760:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5760:29:0;;;;;;;;;;;:38;;;5810;;;;;;;5747:4;;5760:29;;5768:10;;5810:38;;;;;;;;-1:-1:-1;5862:4:0;5680:192;;;;:::o;2012:26::-;;;;:::o;4470:575::-;4552:4;-1:-1:-1;;;;;4573:17:0;;;;;;:41;;-1:-1:-1;;;;;;4594:20:0;;4609:4;4594:20;;4573:41;4565:50;;;;;;-1:-1:-1;;;;;4645:14:0;;4624:18;4645:14;;;:7;:14;;;;;;;;4660:10;4645:26;;;;;;;;4848:15;;;:8;:15;;;;;;:27;;4868:6;4848:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4830:15:0;;;;;;;:8;:15;;;;;;:45;;;;4898:13;;;;;;;:25;;4916:6;4898:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4882:13:0;;;;;;:8;:13;;;;;:41;4959:22;:10;4974:6;4959:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;4930:14:0;;;;;;;:7;:14;;;;;;;;4945:10;4930:26;;;;;;;;:51;;;;4993:28;;;;;;;;;;;4930:14;;4993:28;;;;;;;;;;;-1:-1:-1;5035:4:0;;4470:575;-1:-1:-1;;;;4470:575:0:o;7603:34::-;7635:2;7603:34;:::o;7706:73::-;7746:33;7706:73;:::o;6871:426::-;7005:10;6960:12;6997:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6997:29:0;;;;;;;;;;7037:27;;;7033:168;;;7083:10;7107:1;7075:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7075:29:0;;;;;;;;;:33;7033:168;;;7163:30;:8;7176:16;7163:30;:12;:30;:::i;:::-;7139:10;7131:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7131:29:0;;;;;;;;;:62;7033:168;7221:10;7243:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7212:61:0;;7243:29;;;;;;;;;;;7212:61;;;;;;;;;7221:10;7212:61;;;;;;;;;;;-1:-1:-1;7287:4:0;;6871:426;-1:-1:-1;;;6871:426:0:o;3214:109::-;-1:-1:-1;;;;;3301:16:0;3270:15;3301:16;;;:8;:16;;;;;;;3214:109::o;1050:20::-;;;-1:-1:-1;;;;;1050:20:0;;:::o;7558:38::-;;;;;;;;;;;;;;-1:-1:-1;;;7558:38:0;;;;:::o;2634:371::-;2697:4;-1:-1:-1;;;;;2718:17:0;;;;;;:41;;-1:-1:-1;;;;;;2739:20:0;;2754:4;2739:20;;2718:41;2710:50;;;;;;2865:10;2856:20;;;;:8;:20;;;;;;:32;;2881:6;2856:32;:24;:32;:::i;:::-;2842:10;2833:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;2911:13:0;;;;;;:25;;2929:6;2911:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2895:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;2948:33;;;;;;;2895:13;;2957:10;;2948:33;;;;;;;;;;-1:-1:-1;2995:4:0;2634:371;;;;:::o;8027:358::-;8148:12;8219:8;8243:25;8219:8;8261:6;8243:7;:25::i;:::-;8239:139;;;8285:55;;-1:-1:-1;;;8285:55:0;;8309:10;8285:55;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8285:23:0;;;;;8309:10;8321:6;;8329:10;;;;8285:55;;;;8329:10;;;;8285:55;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;8285:55:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8285:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8285:55:0;;;;8362:4;8355:11;;;;;8239:139;8027:358;;;;;;;;:::o;8397:160::-;1480:5;;-1:-1:-1;;;;;1480:5:0;1466:10;:19;1458:28;;;;;;8512:13;-1:-1:-1;;;;;8506:29:0;;8536:3;8541:7;8506:43;;;;;;;;;;;;;-1:-1:-1;;;;;8506:43:0;-1:-1:-1;;;;;8506:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8506:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8506:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;8397:160:0:o;6585:280::-;6730:10;6669:12;6722:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6722:29:0;;;;;;;;;;:46;;6756:11;6722:46;:33;:46;:::i;:::-;6698:10;6690:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6690:29:0;;;;;;;;;;;;:78;;;6780:61;;;;;;6690:29;;6780:61;;;;;;;;;;;-1:-1:-1;6855:4:0;6585:280;;;;:::o;6199:138::-;-1:-1:-1;;;;;6306:15:0;;;6273:17;6306:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6199:138::o;1669:178::-;1480:5;;-1:-1:-1;;;;;1480:5:0;1466:10;:19;1458:28;;;;;;-1:-1:-1;;;;;1746:22:0;;1738:31;;;;;;1802:5;;1781:37;;-1:-1:-1;;;;;1781:37:0;;;;1802:5;;1781:37;;1802:5;;1781:37;1825:5;:16;;-1:-1:-1;;;;;;1825:16:0;-1:-1:-1;;;;;1825:16:0;;;;;;;;;;1669:178::o;572:113::-;630:7;658:1;653;:6;;646:14;;;;-1:-1:-1;674:5:0;;;572:113::o;691:133::-;749:7;777:5;;;796:6;;;;789:14;;;;817:1;691:133;-1:-1:-1;;;691:133:0:o

Swarm Source

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