Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Finance
Overview
Max Total Supply
150,000,000 MoFi
Holders
2,080 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (+6.98%)
Onchain Market Cap
$282,807.00
Circulating Supply Market Cap
$164,416.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,455.874824995248495191 MoFiValue
$4.63 ( ~0.00185964466833467 Eth) [0.0016%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MobiFi
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Multiple files format)
//SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "./Ownable.sol"; import "./ERC20.sol"; contract MobiFi is ERC20("MobiFi", "MoFi"), Ownable { mapping(address => bool) public Minter; uint256 constant MaxSupply = 150e24; constructor(address _masterAddress, uint256 _preMintAmount) public { _mint(_masterAddress, _preMintAmount); } function AddMinter(address _minter) public onlyOwner { Minter[_minter] = true; } function RemoveMinter(address _minter) public onlyOwner { Minter[_minter] = false; } modifier onlyMinter { require(Minter[msg.sender]); _; } function mint(address account, uint256 amount) public onlyMinter { uint256 TotalSupply = totalSupply(); if (TotalSupply.add(amount) > MaxSupply) { _mint(account, MaxSupply.sub(TotalSupply)); } else { _mint(account, amount); } } function burn(address account, uint256 amount) public onlyMinter { _burn(account, amount); } }
// SPDX-License-Identifier: MIT // commit url = https://github.com/OpenZeppelin/openzeppelin-contracts/blob/7f8fc584dec73f8e5949b6957f7b889a05b3cf21/contracts/GSN/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT // contract url= https://github.com/OpenZeppelin/openzeppelin-contracts/blob/7f8fc584dec73f8e5949b6957f7b889a05b3cf21/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <0.8.0; import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @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 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT // commit url = https://github.com/OpenZeppelin/openzeppelin-contracts/blob/7f8fc584dec73f8e5949b6957f7b889a05b3cf21/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @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. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // commit url = https://github.com/OpenZeppelin/openzeppelin-contracts/blob/7f8fc584dec73f8e5949b6957f7b889a05b3cf21/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT // commit url = https://github.com/OpenZeppelin/openzeppelin-contracts/blob/7f8fc584dec73f8e5949b6957f7b889a05b3cf21/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @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; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_masterAddress","type":"address"},{"internalType":"uint256","name":"_preMintAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"AddMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"RemoveMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200160738038062001607833981810160405260408110156200003757600080fd5b50805160209182015160408051808201825260068152654d6f6269466960d01b818601908152825180840190935260048352634d6f466960e01b9583019590955280519394929390926200008f9160039190620002a5565b508051620000a5906004906020840190620002a5565b50506005805460ff19166012179055506000620000c16200012b565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200012382826200012f565b505062000341565b3390565b6001600160a01b0382166200018b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000199600083836200023e565b620001b5816002546200024360201b62000ba51790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001e891839062000ba562000243821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200029e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002e857805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000318578251825591602001919060010190620002fb565b50620003269291506200032a565b5090565b5b808211156200032657600081556001016200032b565b6112b680620003516000396000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c806340c10f19116100cd5780639dc29fac11610081578063a9059cbb11610066578063a9059cbb146103ff578063dd62ed3e1461042b578063f2fde38b1461045957610151565b80639dc29fac146103a7578063a457c2d7146103d357610151565b8063715018a6116100b2578063715018a6146103735780638da5cb5b1461037b57806395d89b411461039f57610151565b806340c10f191461032157806370a082311461034d57610151565b806321ffb9a0116101245780632f91b591116101095780632f91b591146102b1578063313ce567146102d757806339509351146102f557610151565b806321ffb9a01461025557806323b872dd1461027b57610151565b806306fdde0314610156578063095ea7b3146101d357806316baa9371461021357806318160ddd1461023b575b600080fd5b61015e61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610198578181015183820152602001610180565b50505050905090810190601f1680156101c55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ff600480360360408110156101e957600080fd5b506001600160a01b038135169060200135610533565b604080519115158252519081900360200190f35b6102396004803603602081101561022957600080fd5b50356001600160a01b0316610550565b005b610243610601565b60408051918252519081900360200190f35b6101ff6004803603602081101561026b57600080fd5b50356001600160a01b0316610607565b6101ff6004803603606081101561029157600080fd5b506001600160a01b0381358116916020810135909116906040013561061c565b610239600480360360208110156102c757600080fd5b50356001600160a01b03166106a3565b6102df610751565b6040805160ff9092168252519081900360200190f35b6101ff6004803603604081101561030b57600080fd5b506001600160a01b03813516906020013561075a565b6102396004803603604081101561033757600080fd5b506001600160a01b0381351690602001356107a8565b6102436004803603602081101561036357600080fd5b50356001600160a01b031661081e565b610239610839565b61038361090f565b604080516001600160a01b039092168252519081900360200190f35b61015e610923565b610239600480360360408110156103bd57600080fd5b506001600160a01b0381351690602001356109a2565b6101ff600480360360408110156103e957600080fd5b506001600160a01b0381351690602001356109cc565b6101ff6004803603604081101561041557600080fd5b506001600160a01b038135169060200135610a34565b6102436004803603604081101561044157600080fd5b506001600160a01b0381358116916020013516610a48565b6102396004803603602081101561046f57600080fd5b50356001600160a01b0316610a73565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b6000610547610540610c06565b8484610c0a565b50600192915050565b610558610c06565b60055461010090046001600160a01b039081169116146105bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0316600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60025490565b60066020526000908152604090205460ff1681565b6000610629848484610cf6565b61069984610635610c06565b610694856040518060600160405280602881526020016111ca602891396001600160a01b038a16600090815260016020526040812090610673610c06565b6001600160a01b031681526020810191909152604001600020549190610e51565b610c0a565b5060019392505050565b6106ab610c06565b60055461010090046001600160a01b03908116911614610712576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0316600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60055460ff1690565b6000610547610767610c06565b846106948560016000610778610c06565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610ba5565b3360009081526006602052604090205460ff166107c457600080fd5b60006107ce610601565b90506a7c13bc4b2c133c560000006107e68284610ba5565b111561080f5761080a836108056a7c13bc4b2c133c5600000084610ee8565b610f2a565b610819565b6108198383610f2a565b505050565b6001600160a01b031660009081526020819052604090205490565b610841610c06565b60055461010090046001600160a01b039081169116146108a8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105295780601f106104fe57610100808354040283529160200191610529565b3360009081526006602052604090205460ff166109be57600080fd5b6109c8828261101a565b5050565b60006105476109d9610c06565b846106948560405180606001604052806025815260200161125c6025913960016000610a03610c06565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e51565b6000610547610a41610c06565b8484610cf6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a7b610c06565b60055461010090046001600160a01b03908116911614610ae2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610b275760405162461bcd60e51b815260040180806020018281038252602681526020018061115c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600082820183811015610bff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610c4f5760405162461bcd60e51b81526004018080602001828103825260248152602001806112386024913960400191505060405180910390fd5b6001600160a01b038216610c945760405162461bcd60e51b81526004018080602001828103825260228152602001806111826022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d3b5760405162461bcd60e51b81526004018080602001828103825260258152602001806112136025913960400191505060405180910390fd5b6001600160a01b038216610d805760405162461bcd60e51b81526004018080602001828103825260238152602001806111176023913960400191505060405180910390fd5b610d8b838383610819565b610dc8816040518060600160405280602681526020016111a4602691396001600160a01b0386166000908152602081905260409020549190610e51565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610df79082610ba5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ee05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ea5578181015183820152602001610e8d565b50505050905090810190601f168015610ed25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610bff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e51565b6001600160a01b038216610f85576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610f9160008383610819565b600254610f9e9082610ba5565b6002556001600160a01b038216600090815260208190526040902054610fc49082610ba5565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661105f5760405162461bcd60e51b81526004018080602001828103825260218152602001806111f26021913960400191505060405180910390fd5b61106b82600083610819565b6110a88160405180606001604052806022815260200161113a602291396001600160a01b0385166000908152602081905260409020549190610e51565b6001600160a01b0383166000908152602081905260409020556002546110ce9082610ee8565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209d1395664f8322083d80d37fa1ec92be0bd52f789163e462b36a212816b8c9e464736f6c634300060c00330000000000000000000000007656aec0f9778c1445c77df7775bca3e305b4ae000000000000000000000000000000000000000000075df8c7a9d12461e800000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101515760003560e01c806340c10f19116100cd5780639dc29fac11610081578063a9059cbb11610066578063a9059cbb146103ff578063dd62ed3e1461042b578063f2fde38b1461045957610151565b80639dc29fac146103a7578063a457c2d7146103d357610151565b8063715018a6116100b2578063715018a6146103735780638da5cb5b1461037b57806395d89b411461039f57610151565b806340c10f191461032157806370a082311461034d57610151565b806321ffb9a0116101245780632f91b591116101095780632f91b591146102b1578063313ce567146102d757806339509351146102f557610151565b806321ffb9a01461025557806323b872dd1461027b57610151565b806306fdde0314610156578063095ea7b3146101d357806316baa9371461021357806318160ddd1461023b575b600080fd5b61015e61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610198578181015183820152602001610180565b50505050905090810190601f1680156101c55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ff600480360360408110156101e957600080fd5b506001600160a01b038135169060200135610533565b604080519115158252519081900360200190f35b6102396004803603602081101561022957600080fd5b50356001600160a01b0316610550565b005b610243610601565b60408051918252519081900360200190f35b6101ff6004803603602081101561026b57600080fd5b50356001600160a01b0316610607565b6101ff6004803603606081101561029157600080fd5b506001600160a01b0381358116916020810135909116906040013561061c565b610239600480360360208110156102c757600080fd5b50356001600160a01b03166106a3565b6102df610751565b6040805160ff9092168252519081900360200190f35b6101ff6004803603604081101561030b57600080fd5b506001600160a01b03813516906020013561075a565b6102396004803603604081101561033757600080fd5b506001600160a01b0381351690602001356107a8565b6102436004803603602081101561036357600080fd5b50356001600160a01b031661081e565b610239610839565b61038361090f565b604080516001600160a01b039092168252519081900360200190f35b61015e610923565b610239600480360360408110156103bd57600080fd5b506001600160a01b0381351690602001356109a2565b6101ff600480360360408110156103e957600080fd5b506001600160a01b0381351690602001356109cc565b6101ff6004803603604081101561041557600080fd5b506001600160a01b038135169060200135610a34565b6102436004803603604081101561044157600080fd5b506001600160a01b0381358116916020013516610a48565b6102396004803603602081101561046f57600080fd5b50356001600160a01b0316610a73565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b6000610547610540610c06565b8484610c0a565b50600192915050565b610558610c06565b60055461010090046001600160a01b039081169116146105bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0316600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60025490565b60066020526000908152604090205460ff1681565b6000610629848484610cf6565b61069984610635610c06565b610694856040518060600160405280602881526020016111ca602891396001600160a01b038a16600090815260016020526040812090610673610c06565b6001600160a01b031681526020810191909152604001600020549190610e51565b610c0a565b5060019392505050565b6106ab610c06565b60055461010090046001600160a01b03908116911614610712576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0316600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60055460ff1690565b6000610547610767610c06565b846106948560016000610778610c06565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610ba5565b3360009081526006602052604090205460ff166107c457600080fd5b60006107ce610601565b90506a7c13bc4b2c133c560000006107e68284610ba5565b111561080f5761080a836108056a7c13bc4b2c133c5600000084610ee8565b610f2a565b610819565b6108198383610f2a565b505050565b6001600160a01b031660009081526020819052604090205490565b610841610c06565b60055461010090046001600160a01b039081169116146108a8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60055461010090046001600160a01b031690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105295780601f106104fe57610100808354040283529160200191610529565b3360009081526006602052604090205460ff166109be57600080fd5b6109c8828261101a565b5050565b60006105476109d9610c06565b846106948560405180606001604052806025815260200161125c6025913960016000610a03610c06565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e51565b6000610547610a41610c06565b8484610cf6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a7b610c06565b60055461010090046001600160a01b03908116911614610ae2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610b275760405162461bcd60e51b815260040180806020018281038252602681526020018061115c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600082820183811015610bff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610c4f5760405162461bcd60e51b81526004018080602001828103825260248152602001806112386024913960400191505060405180910390fd5b6001600160a01b038216610c945760405162461bcd60e51b81526004018080602001828103825260228152602001806111826022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d3b5760405162461bcd60e51b81526004018080602001828103825260258152602001806112136025913960400191505060405180910390fd5b6001600160a01b038216610d805760405162461bcd60e51b81526004018080602001828103825260238152602001806111176023913960400191505060405180910390fd5b610d8b838383610819565b610dc8816040518060600160405280602681526020016111a4602691396001600160a01b0386166000908152602081905260409020549190610e51565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610df79082610ba5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ee05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ea5578181015183820152602001610e8d565b50505050905090810190601f168015610ed25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610bff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e51565b6001600160a01b038216610f85576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610f9160008383610819565b600254610f9e9082610ba5565b6002556001600160a01b038216600090815260208190526040902054610fc49082610ba5565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b03821661105f5760405162461bcd60e51b81526004018080602001828103825260218152602001806111f26021913960400191505060405180910390fd5b61106b82600083610819565b6110a88160405180606001604052806022815260200161113a602291396001600160a01b0385166000908152602081905260409020549190610e51565b6001600160a01b0383166000908152602081905260409020556002546110ce9082610ee8565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209d1395664f8322083d80d37fa1ec92be0bd52f789163e462b36a212816b8c9e464736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007656aec0f9778c1445c77df7775bca3e305b4ae000000000000000000000000000000000000000000075df8c7a9d12461e800000
-----Decoded View---------------
Arg [0] : _masterAddress (address): 0x7656aEC0f9778c1445c77dF7775bCA3E305b4Ae0
Arg [1] : _preMintAmount (uint256): 142500000000000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007656aec0f9778c1445c77df7775bca3e305b4ae0
Arg [1] : 00000000000000000000000000000000000000000075df8c7a9d12461e800000
Deployed Bytecode Sourcemap
103:951:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2298:81:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4334:166;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4334:166:1;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;374:92:3;;;;;;;;;;;;;;;;-1:-1:-1;374:92:3;-1:-1:-1;;;;;374:92:3;;:::i;:::-;;3341:98:1;;;:::i;:::-;;;;;;;;;;;;;;;;161:38:3;;;;;;;;;;;;;;;;-1:-1:-1;161:38:3;-1:-1:-1;;;;;161:38:3;;:::i;4967:317:1:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4967:317:1;;;;;;;;;;;;;;;;;:::i;472:96:3:-;;;;;;;;;;;;;;;;-1:-1:-1;472:96:3;-1:-1:-1;;;;;472:96:3;;:::i;3200:81:1:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5679:215;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5679:215:1;;;;;;;;:::i;655:287:3:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;655:287:3;;;;;;;;:::i;3497:117:1:-;;;;;;;;;;;;;;;;-1:-1:-1;3497:117:1;-1:-1:-1;;;;;3497:117:1;;:::i;1846:145:4:-;;;:::i;1223:77::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1223:77:4;;;;;;;;;;;;;;2492:85:1;;;:::i;948:104:3:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;948:104:3;;;;;;;;:::i;6381:266:1:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6381:266:1;;;;;;;;:::i;3817:172::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3817:172:1;;;;;;;;:::i;4047:149::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4047:149:1;;;;;;;;;;:::i;2140:240:4:-;;;;;;;;;;;;;;;;-1:-1:-1;2140:240:4;-1:-1:-1;;;;;2140:240:4;;:::i;2298:81:1:-;2367:5;2360:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2335:13;;2360:12;;2367:5;;2360:12;;2367:5;2360:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2298:81;:::o;4334:166::-;4417:4;4433:39;4442:12;:10;:12::i;:::-;4456:7;4465:6;4433:8;:39::i;:::-;-1:-1:-1;4489:4:1;4334:166;;;;:::o;374:92:3:-;1437:12:4;:10;:12::i;:::-;1427:6;;;;;-1:-1:-1;;;;;1427:6:4;;;:22;;;1419:67;;;;;-1:-1:-1;;;1419:67:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;437:15:3::1;;::::0;;;:6:::1;:15;::::0;;;;:22;;;::::1;455:4;437:22;::::0;;374:92::o;3341:98:1:-;3420:12;;3341:98;:::o;161:38:3:-;;;;;;;;;;;;;;;:::o;4967:317:1:-;5073:4;5089:36;5099:6;5107:9;5118:6;5089:9;:36::i;:::-;5135:121;5144:6;5152:12;:10;:12::i;:::-;5166:89;5204:6;5166:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5166:19:1;;;;;;:11;:19;;;;;;5186:12;:10;:12::i;:::-;-1:-1:-1;;;;;5166:33:1;;;;;;;;;;;;-1:-1:-1;5166:33:1;;;:89;:37;:89::i;:::-;5135:8;:121::i;:::-;-1:-1:-1;5273:4:1;4967:317;;;;;:::o;472:96:3:-;1437:12:4;:10;:12::i;:::-;1427:6;;;;;-1:-1:-1;;;;;1427:6:4;;;:22;;;1419:67;;;;;-1:-1:-1;;;1419:67:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;538:15:3::1;556:5;538:15:::0;;;:6:::1;:15;::::0;;;;:23;;;::::1;::::0;;472:96::o;3200:81:1:-;3265:9;;;;3200:81;:::o;5679:215::-;5767:4;5783:83;5792:12;:10;:12::i;:::-;5806:7;5815:50;5854:10;5815:11;:25;5827:12;:10;:12::i;:::-;-1:-1:-1;;;;;5815:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;5815:25:1;;;:34;;;;;;;;;;;:38;:50::i;655:287:3:-;619:10;612:18;;;;:6;:18;;;;;;;;604:27;;;;;;730:19:::1;752:13;:11;:13::i;:::-;730:35:::0;-1:-1:-1;234:6:3::1;779:23;730:35:::0;795:6;779:15:::1;:23::i;:::-;:35;775:161;;;830:42;836:7:::0;845:26:::1;234:6;859:11:::0;845:13:::1;:26::i;:::-;830:5;:42::i;:::-;775:161;;;903:22;909:7;918:6;903:5;:22::i;:::-;641:1;655:287:::0;;:::o;3497:117:1:-;-1:-1:-1;;;;;3589:18:1;3563:7;3589:18;;;;;;;;;;;;3497:117::o;1846:145:4:-;1437:12;:10;:12::i;:::-;1427:6;;;;;-1:-1:-1;;;;;1427:6:4;;;:22;;;1419:67;;;;;-1:-1:-1;;;1419:67:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1936:6:::1;::::0;1915:40:::1;::::0;1952:1:::1;::::0;1936:6:::1;::::0;::::1;-1:-1:-1::0;;;;;1936:6:4::1;::::0;1915:40:::1;::::0;1952:1;;1915:40:::1;1965:6;:19:::0;;;::::1;::::0;;1846:145::o;1223:77::-;1287:6;;;;;-1:-1:-1;;;;;1287:6:4;;1223:77::o;2492:85:1:-;2563:7;2556:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2531:13;;2556:14;;2563:7;;2556:14;;2563:7;2556:14;;;;;;;;;;;;;;;;;;;;;;;;948:104:3;619:10;612:18;;;;:6;:18;;;;;;;;604:27;;;;;;1023:22:::1;1029:7;1038:6;1023:5;:22::i;:::-;948:104:::0;;:::o;6381:266:1:-;6474:4;6490:129;6499:12;:10;:12::i;:::-;6513:7;6522:96;6561:15;6522:96;;;;;;;;;;;;;;;;;:11;:25;6534:12;:10;:12::i;:::-;-1:-1:-1;;;;;6522:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;6522:25:1;;;:34;;;;;;;;;;;:96;:38;:96::i;3817:172::-;3903:4;3919:42;3929:12;:10;:12::i;:::-;3943:9;3954:6;3919:9;:42::i;4047:149::-;-1:-1:-1;;;;;4162:18:1;;;4136:7;4162:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4047:149::o;2140:240:4:-;1437:12;:10;:12::i;:::-;1427:6;;;;;-1:-1:-1;;;;;1427:6:4;;;:22;;;1419:67;;;;;-1:-1:-1;;;1419:67:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2228:22:4;::::1;2220:73;;;;-1:-1:-1::0;;;2220:73:4::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2329:6;::::0;2308:38:::1;::::0;-1:-1:-1;;;;;2308:38:4;;::::1;::::0;2329:6:::1;::::0;::::1;;::::0;2308:38:::1;::::0;;;::::1;2356:6;:17:::0;;-1:-1:-1;;;;;2356:17:4;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;2140:240::o;1026:176:5:-;1084:7;1115:5;;;1138:6;;;;1130:46;;;;;-1:-1:-1;;;1130:46:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;1194:1;1026:176;-1:-1:-1;;;1026:176:5:o;740:104:0:-;827:10;740:104;:::o;9445:340:1:-;-1:-1:-1;;;;;9546:19:1;;9538:68;;;;-1:-1:-1;;;9538:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9624:21:1;;9616:68;;;;-1:-1:-1;;;9616:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9695:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9746:32;;;;;;;;;;;;;;;;;9445:340;;;:::o;7121:530::-;-1:-1:-1;;;;;7226:20:1;;7218:70;;;;-1:-1:-1;;;7218:70:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7306:23:1;;7298:71;;;;-1:-1:-1;;;7298:71:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7380:47;7401:6;7409:9;7420:6;7380:20;:47::i;:::-;7458:71;7480:6;7458:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7458:17:1;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7438:17:1;;;:9;:17;;;;;;;;;;;:91;;;;7562:20;;;;;;;:32;;7587:6;7562:24;:32::i;:::-;-1:-1:-1;;;;;7539:20:1;;;:9;:20;;;;;;;;;;;;:55;;;;7609:35;;;;;;;7539:20;;7609:35;;;;;;;;;;;;;7121:530;;;:::o;1898:187:5:-;1984:7;2019:12;2011:6;;;;2003:29;;;;-1:-1:-1;;;2003:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2054:5:5;;;1898:187::o;1473:134::-;1531:7;1557:43;1561:1;1564;1557:43;;;;;;;;;;;;;;;;;:3;:43::i;7922:370:1:-;-1:-1:-1;;;;;8005:21:1;;7997:65;;;;;-1:-1:-1;;;7997:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;8073:49;8102:1;8106:7;8115:6;8073:20;:49::i;:::-;8148:12;;:24;;8165:6;8148:16;:24::i;:::-;8133:12;:39;-1:-1:-1;;;;;8203:18:1;;:9;:18;;;;;;;;;;;:30;;8226:6;8203:22;:30::i;:::-;-1:-1:-1;;;;;8182:18:1;;:9;:18;;;;;;;;;;;:51;;;;8248:37;;;;;;;8182:18;;:9;;8248:37;;;;;;;;;;7922:370;;:::o;8612:410::-;-1:-1:-1;;;;;8695:21:1;;8687:67;;;;-1:-1:-1;;;8687:67:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8765:49;8786:7;8803:1;8807:6;8765:20;:49::i;:::-;8846:68;8869:6;8846:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8846:18:1;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;8825:18:1;;:9;:18;;;;;;;;;;:89;8939:12;;:24;;8956:6;8939:16;:24::i;:::-;8924:12;:39;8978:37;;;;;;;;9004:1;;-1:-1:-1;;;;;8978:37:1;;;;;;;;;;;;8612:410;;:::o
Swarm Source
ipfs://9d1395664f8322083d80d37fa1ec92be0bd52f789163e462b36a212816b8c9e4
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.