BscScan - Sponsored slots available. Book your slot here!
Overview
Max Total Supply
192,967.891736bBITTO
Holders
100 (0.00%)
Market
Price
$0.0379 @ 0.000062 BNB
Onchain Market Cap
$7,319.31
Circulating Supply Market Cap
$123,238.13
Other Info
Token Contract (WITH 18 Decimals)
Balance
8 bBITTOValue
$0.30 ( ~0.000487477900914279 BNB) [0.0041%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xE64F5Cb8...B4aE89Fbe The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
BurgerERC20
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/**
*Submitted for verification at BscScan.com on 2020-10-13
*/
/**
* @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) {
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;
}
}
// Dependency file: contracts/BSC/BurgerERC20.sol
// SPDX-License-Identifier: MIT
// pragma solidity >=0.5.16;
// import 'contracts/BSC/libraries/SafeMath.sol';
contract BurgerERC20 {
using SafeMath for uint;
bytes32 public constant TokenSignature = "BURGER_TRANSIT";
address public platform;
string public name;
string public symbol;
uint8 public decimals = 18;
uint public totalSupply;
mapping(address => uint) public balanceOf;
mapping(address => mapping(address => uint)) public allowance;
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
event Mint(address indexed from, address indexed to, uint256 value);
event Burn(address indexed from, address indexed to, uint256 value);
constructor() public
{
platform = msg.sender;
}
function initialize(string memory _name, string memory _symbol, uint8 _decimals) public {
require(msg.sender == platform, "FORBIDDEN");
name = _name;
symbol = _symbol;
decimals = _decimals;
}
function _transfer(address from, address to, uint value) private {
require(balanceOf[from] >= value, 'ERC20Token: INSUFFICIENT_BALANCE');
balanceOf[from] = balanceOf[from].sub(value);
balanceOf[to] = balanceOf[to].add(value);
if (to == address(0)) { // burn
totalSupply = totalSupply.sub(value);
}
emit Transfer(from, to, value);
}
function approve(address spender, uint value) external returns (bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
function transfer(address to, uint value) external returns (bool) {
_transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint value) external returns (bool) {
require(allowance[from][msg.sender] >= value, 'ERC20Token: INSUFFICIENT_ALLOWANCE');
allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
_transfer(from, to, value);
return true;
}
function mint(address to, uint256 value) external {
require(msg.sender == platform, "FORBIDDEN");
totalSupply = totalSupply.add(value);
balanceOf[to] = balanceOf[to].add(value);
emit Mint(address(0), to, value);
}
function burn(address from, uint256 value) external {
require(msg.sender == platform, "FORBIDDEN");
balanceOf[from] = balanceOf[from].sub(value);
totalSupply = totalSupply.sub(value);
emit Burn(from, address(0), value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Burn","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":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TokenSignature","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platform","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x60806040526003805460ff1916601217905534801561001d57600080fd5b50600080546001600160a01b03191633179055610cc08061003f6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80634bde38c81161008c5780639dc29fac116100665780639dc29fac146103cc578063a9059cbb146103f8578063dd62ed3e14610424578063ecda052614610452576100ea565b80634bde38c81461037a57806370a082311461039e57806395d89b41146103c4576100ea565b806318160ddd116100c857806318160ddd146102e057806323b872dd146102fa578063313ce5671461033057806340c10f191461034e576100ea565b806306fdde03146100ef578063095ea7b31461016c5780631624f6c6146101ac575b600080fd5b6100f761045a565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356104e7565b604080519115158252519081900360200190f35b6102de600480360360608110156101c257600080fd5b8101906020810181356401000000008111156101dd57600080fd5b8201836020820111156101ef57600080fd5b8035906020019184600183028401116401000000008311171561021157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561026457600080fd5b82018360208201111561027657600080fd5b8035906020019184600183028401116401000000008311171561029857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061054d9050565b005b6102e86105d8565b60408051918252519081900360200190f35b6101986004803603606081101561031057600080fd5b506001600160a01b038135811691602081013590911690604001356105de565b6103386106ad565b6040805160ff9092168252519081900360200190f35b6102de6004803603604081101561036457600080fd5b506001600160a01b0381351690602001356106b6565b610382610798565b604080516001600160a01b039092168252519081900360200190f35b6102e8600480360360208110156103b457600080fd5b50356001600160a01b03166107a7565b6100f76107b9565b6102de600480360360408110156103e257600080fd5b506001600160a01b038135169060200135610811565b6101986004803603604081101561040e57600080fd5b506001600160a01b0381351690602001356108f9565b6102e86004803603604081101561043a57600080fd5b506001600160a01b038135811691602001351661090f565b6102e861092c565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b505050505081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000546001600160a01b03163314610598576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b82516105ab906001906020860190610bcd565b5081516105bf906002906020850190610bcd565b506003805460ff191660ff929092169190911790555050565b60045481565b6001600160a01b03831660009081526006602090815260408083203384529091528120548211156106405760405162461bcd60e51b8152600401808060200182810382526022815260200180610c696022913960400191505060405180910390fd5b6001600160a01b0384166000908152600660209081526040808320338452909152902054610674908363ffffffff61094116565b6001600160a01b03851660009081526006602090815260408083203384529091529020556106a384848461098a565b5060019392505050565b60035460ff1681565b6000546001600160a01b03163314610701576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b600454610714908263ffffffff610adc16565b6004556001600160a01b038216600090815260056020526040902054610740908263ffffffff610adc16565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89281900390910190a35050565b6000546001600160a01b031681565b60056020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b6000546001600160a01b0316331461085c576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b038216600090815260056020526040902054610885908263ffffffff61094116565b6001600160a01b0383166000908152600560205260409020556004546108b1908263ffffffff61094116565b6004556040805182815290516000916001600160a01b038516917fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b94539181900360200190a35050565b600061090633848461098a565b50600192915050565b600660209081526000928352604080842090915290825290205481565b6d10955491d15497d514905394d25560921b81565b600061098383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b36565b9392505050565b6001600160a01b0383166000908152600560205260409020548111156109f7576040805162461bcd60e51b815260206004820181905260248201527f4552433230546f6b656e3a20494e53554646494349454e545f42414c414e4345604482015290519081900360640190fd5b6001600160a01b038316600090815260056020526040902054610a20908263ffffffff61094116565b6001600160a01b038085166000908152600560205260408082209390935590841681522054610a55908263ffffffff610adc16565b6001600160a01b038316600081815260056020526040902091909155610a8c57600454610a88908263ffffffff61094116565b6004555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082820183811015610983576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610bc55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b8a578181015183820152602001610b72565b50505050905090810190601f168015610bb75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610c0e57805160ff1916838001178555610c3b565b82800160010185558215610c3b579182015b82811115610c3b578251825591602001919060010190610c20565b50610c47929150610c4b565b5090565b610c6591905b80821115610c475760008155600101610c51565b9056fe4552433230546f6b656e3a20494e53554646494349454e545f414c4c4f57414e4345a2646970667358221220ed1949a34d1507fc3035977a60712271536dd6d13dce2d00fb71025d08af7d3464736f6c63430006060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80634bde38c81161008c5780639dc29fac116100665780639dc29fac146103cc578063a9059cbb146103f8578063dd62ed3e14610424578063ecda052614610452576100ea565b80634bde38c81461037a57806370a082311461039e57806395d89b41146103c4576100ea565b806318160ddd116100c857806318160ddd146102e057806323b872dd146102fa578063313ce5671461033057806340c10f191461034e576100ea565b806306fdde03146100ef578063095ea7b31461016c5780631624f6c6146101ac575b600080fd5b6100f761045a565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356104e7565b604080519115158252519081900360200190f35b6102de600480360360608110156101c257600080fd5b8101906020810181356401000000008111156101dd57600080fd5b8201836020820111156101ef57600080fd5b8035906020019184600183028401116401000000008311171561021157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561026457600080fd5b82018360208201111561027657600080fd5b8035906020019184600183028401116401000000008311171561029857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff16915061054d9050565b005b6102e86105d8565b60408051918252519081900360200190f35b6101986004803603606081101561031057600080fd5b506001600160a01b038135811691602081013590911690604001356105de565b6103386106ad565b6040805160ff9092168252519081900360200190f35b6102de6004803603604081101561036457600080fd5b506001600160a01b0381351690602001356106b6565b610382610798565b604080516001600160a01b039092168252519081900360200190f35b6102e8600480360360208110156103b457600080fd5b50356001600160a01b03166107a7565b6100f76107b9565b6102de600480360360408110156103e257600080fd5b506001600160a01b038135169060200135610811565b6101986004803603604081101561040e57600080fd5b506001600160a01b0381351690602001356108f9565b6102e86004803603604081101561043a57600080fd5b506001600160a01b038135811691602001351661090f565b6102e861092c565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b505050505081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000546001600160a01b03163314610598576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b82516105ab906001906020860190610bcd565b5081516105bf906002906020850190610bcd565b506003805460ff191660ff929092169190911790555050565b60045481565b6001600160a01b03831660009081526006602090815260408083203384529091528120548211156106405760405162461bcd60e51b8152600401808060200182810382526022815260200180610c696022913960400191505060405180910390fd5b6001600160a01b0384166000908152600660209081526040808320338452909152902054610674908363ffffffff61094116565b6001600160a01b03851660009081526006602090815260408083203384529091529020556106a384848461098a565b5060019392505050565b60035460ff1681565b6000546001600160a01b03163314610701576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b600454610714908263ffffffff610adc16565b6004556001600160a01b038216600090815260056020526040902054610740908263ffffffff610adc16565b6001600160a01b03831660008181526005602090815260408083209490945583518581529351929391927fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89281900390910190a35050565b6000546001600160a01b031681565b60056020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b6000546001600160a01b0316331461085c576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b038216600090815260056020526040902054610885908263ffffffff61094116565b6001600160a01b0383166000908152600560205260409020556004546108b1908263ffffffff61094116565b6004556040805182815290516000916001600160a01b038516917fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b94539181900360200190a35050565b600061090633848461098a565b50600192915050565b600660209081526000928352604080842090915290825290205481565b6d10955491d15497d514905394d25560921b81565b600061098383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b36565b9392505050565b6001600160a01b0383166000908152600560205260409020548111156109f7576040805162461bcd60e51b815260206004820181905260248201527f4552433230546f6b656e3a20494e53554646494349454e545f42414c414e4345604482015290519081900360640190fd5b6001600160a01b038316600090815260056020526040902054610a20908263ffffffff61094116565b6001600160a01b038085166000908152600560205260408082209390935590841681522054610a55908263ffffffff610adc16565b6001600160a01b038316600081815260056020526040902091909155610a8c57600454610a88908263ffffffff61094116565b6004555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082820183811015610983576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610bc55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b8a578181015183820152602001610b72565b50505050905090810190601f168015610bb75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610c0e57805160ff1916838001178555610c3b565b82800160010185558215610c3b579182015b82811115610c3b578251825591602001919060010190610c20565b50610c47929150610c4b565b5090565b610c6591905b80821115610c475760008155600101610c51565b9056fe4552433230546f6b656e3a20494e53554646494349454e545f414c4c4f57414e4345a2646970667358221220ed1949a34d1507fc3035977a60712271536dd6d13dce2d00fb71025d08af7d3464736f6c63430006060033
Deployed Bytecode Sourcemap
5467:2644:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5467:2644:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;5623:18:0;;;:::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;5623:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6892:201;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;6892:201:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6241:232;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;6241:232:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;6241:232:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;6241:232: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;6241:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;6241:232:0;;;;;;;;-1:-1:-1;6241:232:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;6241:232:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;6241:232: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;6241:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;6241:232:0;;-1:-1:-1;;;6241:232:0;;;;;-1:-1:-1;6241:232:0;;-1:-1:-1;6241:232:0:i;:::-;;5708:23;;;:::i;:::-;;;;;;;;;;;;;;;;7248:324;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;7248:324:0;;;;;;;;;;;;;;;;;:::i;5675:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7584:254;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;7584:254:0;;;;;;;;:::i;5593:23::-;;;:::i;:::-;;;;-1:-1:-1;;;;;5593:23:0;;;;;;;;;;;;;;5738:41;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;5738:41:0;-1:-1:-1;;;;;5738:41:0;;:::i;5648:20::-;;;:::i;7846:262::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;7846:262:0;;;;;;;;:::i;7101:139::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;7101:139:0;;;;;;;;:::i;5786:61::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;5786:61:0;;;;;;;;;;:::i;5527:57::-;;;:::i;5623:18::-;;;;;;;;;;;;;;;-1:-1:-1;;5623:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6892:201::-;6983:10;6956:4;6973:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;6973:30:0;;;;;;;;;;;:38;;;7027:36;;;;;;;6956:4;;6973:30;;6983:10;;7027:36;;;;;;;;-1:-1:-1;7081:4:0;6892:201;;;;:::o;6241:232::-;6362:8;;-1:-1:-1;;;;;6362:8:0;6348:10;:22;6340:44;;;;;-1:-1:-1;;;6340:44:0;;;;;;;;;;;;-1:-1:-1;;;6340:44:0;;;;;;;;;;;;;;;6395:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;6418:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;6445:8:0;:20;;-1:-1:-1;;6445:20:0;;;;;;;;;;;;-1:-1:-1;;6241:232:0:o;5708:23::-;;;;:::o;7248:324::-;-1:-1:-1;;;;;7351:15:0;;7326:4;7351:15;;;:9;:15;;;;;;;;7367:10;7351:27;;;;;;;;:36;-1:-1:-1;7351:36:0;7343:83;;;;-1:-1:-1;;;7343:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7467:15:0;;;;;;:9;:15;;;;;;;;7483:10;7467:27;;;;;;;;:38;;7499:5;7467:38;:31;:38;:::i;:::-;-1:-1:-1;;;;;7437:15:0;;;;;;:9;:15;;;;;;;;7453:10;7437:27;;;;;;;:68;7516:26;7447:4;7532:2;7536:5;7516:9;:26::i;:::-;-1:-1:-1;7560:4:0;7248:324;;;;;:::o;5675:26::-;;;;;;:::o;7584:254::-;7667:8;;-1:-1:-1;;;;;7667:8:0;7653:10;:22;7645:44;;;;;-1:-1:-1;;;7645:44:0;;;;;;;;;;;;-1:-1:-1;;;7645:44:0;;;;;;;;;;;;;;;7714:11;;:22;;7730:5;7714:22;:15;:22;:::i;:::-;7700:11;:36;-1:-1:-1;;;;;7763:13:0;;;;;;:9;:13;;;;;;:24;;7781:5;7763:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7747:13:0;;;;;;:9;:13;;;;;;;;:40;;;;7803:27;;;;;;;7747:13;;;;7803:27;;;;;;;;;;7584:254;;:::o;5593:23::-;;;-1:-1:-1;;;;;5593:23:0;;:::o;5738:41::-;;;;;;;;;;;;;:::o;5648:20::-;;;;;;;;;;;;;;-1:-1:-1;;5648:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7846:262;7931:8;;-1:-1:-1;;;;;7931:8:0;7917:10;:22;7909:44;;;;;-1:-1:-1;;;7909:44:0;;;;;;;;;;;;-1:-1:-1;;;7909:44:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;7982:15:0;;;;;;:9;:15;;;;;;:26;;8002:5;7982:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7964:15:0;;;;;;:9;:15;;;;;:44;8033:11;;:22;;8049:5;8033:22;:15;:22;:::i;:::-;8019:11;:36;8071:29;;;;;;;;8090:1;;-1:-1:-1;;;;;8071:29:0;;;;;;;;;;;;7846:262;;:::o;7101:139::-;7161:4;7178:32;7188:10;7200:2;7204:5;7178:9;:32::i;:::-;-1:-1:-1;7228:4:0;7101:139;;;;:::o;5786:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;5527:57::-;-1:-1:-1;;;5527:57:0;:::o;1304:136::-;1362:7;1389:43;1393:1;1396;1389:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1382:50;1304:136;-1:-1:-1;;;1304:136:0:o;6481:403::-;-1:-1:-1;;;;;6565:15:0;;;;;;:9;:15;;;;;;:24;-1:-1:-1;6565:24:0;6557:69;;;;;-1:-1:-1;;;6557:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6655:15:0;;;;;;:9;:15;;;;;;:26;;6675:5;6655:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;6637:15:0;;;;;;;:9;:15;;;;;;:44;;;;6708:13;;;;;;;:24;;6726:5;6708:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;6692:13:0;;;;;;:9;:13;;;;;:40;;;;6743:93;;6802:11;;:22;;6818:5;6802:22;:15;:22;:::i;:::-;6788:11;:36;6743:93;6866:2;-1:-1:-1;;;;;6851:25:0;6860:4;-1:-1:-1;;;;;6851:25:0;;6870:5;6851:25;;;;;;;;;;;;;;;;;;6481:403;;;:::o;840:181::-;898:7;930:5;;;954:6;;;;946:46;;;;;-1:-1:-1;;;946:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1743:192;1829:7;1865:12;1857:6;;;;1849:29;;;;-1:-1:-1;;;1849: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;1849:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1901:5:0;;;1743:192::o;5467:2644::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5467:2644:0;;;-1:-1:-1;5467:2644:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://ed1949a34d1507fc3035977a60712271536dd6d13dce2d00fb71025d08af7d34
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)