ERC-20
Source Code
Overview
Max Total Supply
69,999,999 LDY
Holders
10
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4.06399999 LDYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
LudiaToken
Compiler Version
v0.5.10+commit.5a6ea5b1
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-10-29
*/
pragma solidity 0.5.10;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
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;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
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;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be 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;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `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.
*
* > 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);
}
/**
* @title ERC20
* @dev Implementation of the basic standard token.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) internal _balances;
mapping (address => mapping (address => uint256)) internal _allowed;
uint256 internal _totalSupply;
/**
* @dev Total number of tokens in existence.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev Get the balance of the specified address.
* @param owner The address to query the balance of.
* @return A uint256 representing the amount owned by the passed address.
*/
function balanceOf(address owner) public view returns (uint256) {
return _balances[owner];
}
/**
* @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 Transfer token to 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) {
_transfer(msg.sender, 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) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev Transfer tokens from one address to another.
* Note that while this function emits an Approval event, this is not required as per the specification,
* and other compliant implementations may not emit the event.
* @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) {
_transfer(from, to, value);
_approve(from, msg.sender, _allowed[from][msg.sender].sub(value, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][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
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param addedValue The amount of tokens to increase the allowance by.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][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
* Emits an Approval event.
* @param spender The address which will spend the funds.
* @param subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Transfer token for a specified address.
* @param from The address to transfer from.
* @param to The address to transfer to.
* @param value The amount to be transferred.
*/
function _transfer(address from, address to, uint256 value) internal {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: cannot transfer to zero address");
_balances[from] = _balances[from].sub(value, "ERC20: transfer amount exceeds balance");
_balances[to] = _balances[to].add(value);
emit Transfer(from, to, value);
}
/**
* @dev Approve an address to spend another addresses' tokens.
* @param owner The address that owns the tokens.
* @param spender The address that will spend the tokens.
* @param value The number of tokens that can be spent.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(owner != address(0), "ERC20: setter cannot be a zero address");
require(spender != address(0), "ERC20: cannot approve to the zero address");
_allowed[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 value) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(value, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowed[account][msg.sender].sub(amount, "ERC20: burn amount exceeds allowance"));
}
}
/**
* @title BurnableToken
* @dev Implement the function of ERC20 token burning.
*/
contract BurnableToken is ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public {
_burn(msg.sender, amount);
}
/**
* @dev See {ERC20-_burnFrom}.
*/
function burnFrom(address account, uint256 amount) public {
_burnFrom(account, amount);
}
}
contract LudiaToken is BurnableToken {
string public constant name = "Ludia";
string public constant symbol = "LDY";
uint8 public constant decimals = 18;
uint256 internal constant INIT_TOTALSUPPLY = 69999999; // Total amount of tokens
address wallet = 0xF365490fcc94556d3C8FEeFfC6b1604c4E7aA04D;
constructor() public {
_totalSupply = INIT_TOTALSUPPLY * 10 ** uint256(decimals);
_balances[wallet] = _totalSupply;
emit Transfer(address(0), wallet, _totalSupply);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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"}]Contract Creation Code
6080604052600380546001600160a01b03191673f365490fcc94556d3c8feeffc6b1604c4e7aa04d17905534801561003657600080fd5b506a39e7138cab52465e9c00006002819055600380546001600160a01b03908116600090815260208181526040808320869055935484519586529351939092169390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3610b7d806100b36000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461029c578063a457c2d7146102a4578063a9059cbb146102d0578063dd62ed3e146102fc576100cf565b806342966c681461022b57806370a082311461024a57806379cc679014610270576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc61032a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b03813516906020013561034b565b604080519115158252519081900360200190f35b610199610361565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b03813581169160208101359091169060400135610367565b6101e96103d6565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b0381351690602001356103db565b6102486004803603602081101561024157600080fd5b5035610417565b005b6101996004803603602081101561026057600080fd5b50356001600160a01b0316610424565b6102486004803603604081101561028657600080fd5b506001600160a01b03813516906020013561043f565b6100dc61044d565b61017d600480360360408110156102ba57600080fd5b506001600160a01b03813516906020013561046c565b61017d600480360360408110156102e657600080fd5b506001600160a01b0381351690602001356104c1565b6101996004803603604081101561031257600080fd5b506001600160a01b03813581169160200135166104ce565b604051806040016040528060058152602001644c7564696160d81b81525081565b60006103583384846104f9565b50600192915050565b60025490565b60006103748484846105e5565b6103cc84336103c785604051806060016040528060288152602001610a6c602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff61074116565b6104f9565b5060019392505050565b601281565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103589185906103c7908663ffffffff6107d816565b6104213382610839565b50565b6001600160a01b031660009081526020819052604090205490565b6104498282610935565b5050565b604051806040016040528060038152602001624c445960e81b81525081565b600061035833846103c785604051806060016040528060258152602001610b24602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff61074116565b60006103583384846105e5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661053e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610a1d6026913960400191505060405180910390fd5b6001600160a01b0382166105835760405162461bcd60e51b8152600401808060200182810382526029815260200180610a436029913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661062a5760405162461bcd60e51b8152600401808060200182810382526025815260200180610ad96025913960400191505060405180910390fd5b6001600160a01b03821661066f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610afe6026913960400191505060405180910390fd5b6106b2816040518060600160405280602681526020016109f7602691396001600160a01b038616600090815260208190526040902054919063ffffffff61074116565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546106e7908263ffffffff6107d816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156107d05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561079557818101518382015260200161077d565b50505050905090810190601f1680156107c25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610832576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661087e5760405162461bcd60e51b8152600401808060200182810382526021815260200180610ab86021913960400191505060405180910390fd5b6108c1816040518060600160405280602281526020016109d5602291396001600160a01b038516600090815260208190526040902054919063ffffffff61074116565b6001600160a01b0383166000908152602081905260409020556002546108ed908263ffffffff61099216565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61093f8282610839565b61044982336103c784604051806060016040528060248152602001610a94602491396001600160a01b0388166000908152600160209081526040808320338452909152902054919063ffffffff61074116565b600061083283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061074156fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207365747465722063616e6e6f742062652061207a65726f206164647265737345524332303a2063616e6e6f7420617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a2063616e6e6f74207472616e7366657220746f207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7230582033d03224db16d94ac5a5c63d0dfe23f32967056075f343a4ced1dd6450cc2dbe64736f6c634300050a0032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461029c578063a457c2d7146102a4578063a9059cbb146102d0578063dd62ed3e146102fc576100cf565b806342966c681461022b57806370a082311461024a57806379cc679014610270576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc61032a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b03813516906020013561034b565b604080519115158252519081900360200190f35b610199610361565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b03813581169160208101359091169060400135610367565b6101e96103d6565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b0381351690602001356103db565b6102486004803603602081101561024157600080fd5b5035610417565b005b6101996004803603602081101561026057600080fd5b50356001600160a01b0316610424565b6102486004803603604081101561028657600080fd5b506001600160a01b03813516906020013561043f565b6100dc61044d565b61017d600480360360408110156102ba57600080fd5b506001600160a01b03813516906020013561046c565b61017d600480360360408110156102e657600080fd5b506001600160a01b0381351690602001356104c1565b6101996004803603604081101561031257600080fd5b506001600160a01b03813581169160200135166104ce565b604051806040016040528060058152602001644c7564696160d81b81525081565b60006103583384846104f9565b50600192915050565b60025490565b60006103748484846105e5565b6103cc84336103c785604051806060016040528060288152602001610a6c602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff61074116565b6104f9565b5060019392505050565b601281565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103589185906103c7908663ffffffff6107d816565b6104213382610839565b50565b6001600160a01b031660009081526020819052604090205490565b6104498282610935565b5050565b604051806040016040528060038152602001624c445960e81b81525081565b600061035833846103c785604051806060016040528060258152602001610b24602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff61074116565b60006103583384846105e5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661053e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610a1d6026913960400191505060405180910390fd5b6001600160a01b0382166105835760405162461bcd60e51b8152600401808060200182810382526029815260200180610a436029913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661062a5760405162461bcd60e51b8152600401808060200182810382526025815260200180610ad96025913960400191505060405180910390fd5b6001600160a01b03821661066f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610afe6026913960400191505060405180910390fd5b6106b2816040518060600160405280602681526020016109f7602691396001600160a01b038616600090815260208190526040902054919063ffffffff61074116565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546106e7908263ffffffff6107d816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156107d05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561079557818101518382015260200161077d565b50505050905090810190601f1680156107c25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610832576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661087e5760405162461bcd60e51b8152600401808060200182810382526021815260200180610ab86021913960400191505060405180910390fd5b6108c1816040518060600160405280602281526020016109d5602291396001600160a01b038516600090815260208190526040902054919063ffffffff61074116565b6001600160a01b0383166000908152602081905260409020556002546108ed908263ffffffff61099216565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61093f8282610839565b61044982336103c784604051806060016040528060248152602001610a94602491396001600160a01b0388166000908152600160209081526040808320338452909152902054919063ffffffff61074116565b600061083283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061074156fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207365747465722063616e6e6f742062652061207a65726f206164647265737345524332303a2063616e6e6f7420617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a2063616e6e6f74207472616e7366657220746f207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7230582033d03224db16d94ac5a5c63d0dfe23f32967056075f343a4ced1dd6450cc2dbe64736f6c634300050a0032
Deployed Bytecode Sourcemap
15530:530:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15530:530:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15574:37;;;:::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;15574:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10270:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10270:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8423:91;;;:::i;:::-;;;;;;;;;;;;;;;;10891:272;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10891:272:0;;;;;;;;;;;;;;;;;:::i;15662:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11689:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11689:203:0;;;;;;;;:::i;15277:81::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15277:81:0;;:::i;:::-;;8732:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8732:106:0;-1:-1:-1;;;;;8732:106:0;;:::i;15420:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15420:103:0;;;;;;;;:::i;15618:37::-;;;:::i;12423:254::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12423:254:0;;;;;;;;:::i;9483:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9483:140:0;;;;;;;;:::i;9177:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9177:131:0;;;;;;;;;;:::i;15574:37::-;;;;;;;;;;;;;;-1:-1:-1;;;15574:37:0;;;;:::o;10270:148::-;10335:4;10352:36;10361:10;10373:7;10382:5;10352:8;:36::i;:::-;-1:-1:-1;10406:4:0;10270:148;;;;:::o;8423:91::-;8494:12;;8423:91;:::o;10891:272::-;10970:4;10987:26;10997:4;11003:2;11007:5;10987:9;:26::i;:::-;11024:109;11033:4;11039:10;11051:81;11082:5;11051:81;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11051:14:0;;;;;;:8;:14;;;;;;;;11066:10;11051:26;;;;;;;;;:81;;:30;:81;:::i;:::-;11024:8;:109::i;:::-;-1:-1:-1;11151:4:0;10891:272;;;;;:::o;15662:35::-;15695:2;15662:35;:::o;11689:203::-;11795:10;11769:4;11816:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11816:29:0;;;;;;;;;;11769:4;;11786:76;;11807:7;;11816:45;;11850:10;11816:45;:33;:45;:::i;15277:81::-;15325:25;15331:10;15343:6;15325:5;:25::i;:::-;15277:81;:::o;8732:106::-;-1:-1:-1;;;;;8814:16:0;8787:7;8814:16;;;;;;;;;;;;8732:106::o;15420:103::-;15489:26;15499:7;15508:6;15489:9;:26::i;:::-;15420:103;;:::o;15618:37::-;;;;;;;;;;;;;;-1:-1:-1;;;15618:37:0;;;;:::o;12423:254::-;12508:4;12525:122;12534:10;12546:7;12555:91;12589:15;12555:91;;;;;;;;;;;;;;;;;12564:10;12555:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;12555:29:0;;;;;;;;;;;:91;;:33;:91;:::i;9483:140::-;9544:4;9561:32;9571:10;9583:2;9587:5;9561:9;:32::i;9177:131::-;-1:-1:-1;;;;;9276:15:0;;;9249:7;9276:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;9177:131::o;13601:341::-;-1:-1:-1;;;;;13694:19:0;;13686:70;;;;-1:-1:-1;;;13686:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13775:21:0;;13767:75;;;;-1:-1:-1;;;13767:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13855:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;13903:31;;;;;;;;;;;;;;;;;13601:341;;;:::o;12903:425::-;-1:-1:-1;;;;;12991:18:0;;12983:68;;;;-1:-1:-1;;;12983:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13070:16:0;;13062:67;;;;-1:-1:-1;;;13062:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13160:68;13180:5;13160:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13160:15:0;;:9;:15;;;;;;;;;;;;:68;;:19;:68;:::i;:::-;-1:-1:-1;;;;;13142:15:0;;;:9;:15;;;;;;;;;;;:86;;;;13255:13;;;;;;;:24;;13273:5;13255:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;13239:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;13295:25;;;;;;;13239:13;;13295:25;;;;;;;;;;;;;12903:425;;;:::o;1746:192::-;1832:7;1868:12;1860:6;;;;1852:29;;;;-1:-1:-1;;;1852:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1852:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1904:5:0;;;1746:192::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;859:181;-1:-1:-1;;;859:181:0:o;14275:344::-;-1:-1:-1;;;;;14350:21:0;;14342:67;;;;-1:-1:-1;;;14342:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14443;14466:5;14443:67;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14443:18:0;;:9;:18;;;;;;;;;;;;:67;;:22;:67;:::i;:::-;-1:-1:-1;;;;;14422:18:0;;:9;:18;;;;;;;;;;:88;14536:12;;:23;;14553:5;14536:23;:16;:23;:::i;:::-;14521:12;:38;14575:36;;;;;;;;14601:1;;-1:-1:-1;;;;;14575:36:0;;;;;;;;;;;;14275:344;;:::o;14805:225::-;14877:22;14883:7;14892:6;14877:5;:22::i;:::-;14910:112;14919:7;14928:10;14940:81;14974:6;14940:81;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14940:17:0;;;;;;:8;:17;;;;;;;;14958:10;14940:29;;;;;;;;;:81;;:33;:81;:::i;1315:136::-;1373:7;1400:43;1404:1;1407;1400:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
bzzr://33d03224db16d94ac5a5c63d0dfe23f32967056075f343a4ced1dd6450cc2dbe
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.
Add Token to MetaMask (Web3)