Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Yield Farming
Overview
Max Total Supply
150,000,000 JGN
Holders
1,420 (0.00%)
Market
Price
$0.01 @ 0.000004 ETH (-0.40%)
Onchain Market Cap
$1,936,355.98
Circulating Supply Market Cap
$1,936,355.98
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.00000000731467676 JGNValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | MEXC | JGN-USDT | $0.0129 0.0000040 Eth | $56,244.00 4,356,479.310 JGN | 90.2250% |
2 | DigiFinex | JGN-USDT | $0.0099 0.0000031 Eth | $18,576.34 1,883,520.068 JGN | 39.0087% |
3 | Gate.io | JGN-USDT | $0.0129 0.0000040 Eth | $2,556.55 196,401.360 JGN | 4.0676% |
4 | CoinEx | JGN-USDT | $0.0129 0.0000040 Eth | $2,371.24 183,482.890 JGN | 3.8000% |
5 | Uniswap V2 (Ethereum) | 0X73374EA518DE7ADDD4C2B624C0E8B113955EE041-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0136 0.0000042 Eth | $761.82 55,525.620 0X73374EA518DE7ADDD4C2B624C0E8B113955EE041 | 1.1500% |
6 | PancakeSwap (v2) | 0XC13B7A43223BB9BF4B69BD68AB20CA1B79D81C75-0XBB4CDB9CBD36B01BD1CBAEBF2DE08D9173BC095C | $0.0127 0.0000040 Eth | $647.15 51,401.887 0XC13B7A43223BB9BF4B69BD68AB20CA1B79D81C75 | 1.0646% |
7 | PancakeSwap V1 (BSC) | 0XC13B7A43223BB9BF4B69BD68AB20CA1B79D81C75-0XBB4CDB9CBD36B01BD1CBAEBF2DE08D9173BC095C | $0.0126 0.0000039 Eth | $436.19 34,602.526 0XC13B7A43223BB9BF4B69BD68AB20CA1B79D81C75 | 0.7166% |
8 | Uniswap V2 (Ethereum) | 0X73374EA518DE7ADDD4C2B624C0E8B113955EE041-0XDAC17F958D2EE523A2206206994597C13D831EC7 | $0.0138 0.0000043 Eth | $65.37 4,719.751 0X73374EA518DE7ADDD4C2B624C0E8B113955EE041 | 0.0977% |
9 | Mdex BSC | 0XC13B7A43223BB9BF4B69BD68AB20CA1B79D81C75-0XBB4CDB9CBD36B01BD1CBAEBF2DE08D9173BC095C | $0.0127 0.0000039 Eth | $56.26 4,482.926 0XC13B7A43223BB9BF4B69BD68AB20CA1B79D81C75 | 0.0928% |
10 | Gate.io | JGN-ETH | $0.0132 0.0000040 Eth | $21.27 1,608.950 JGN | 0.0333% |
11 | LATOKEN | JGN-USDT | $0.0287 0.0000089 Eth | $13.69 476.782 JGN | 0.0099% |
Contract Name:
JuggernautToken
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-11 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ 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); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @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 `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * 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 IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view 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 returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); 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 `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); 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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _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 { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `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"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `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, _allowances[account][msg.sender].sub(amount)); } } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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. * * > Note that 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; } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } /** * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } /** * @dev Extension of `ERC20Mintable` that adds a cap to the supply of tokens. */ contract ERC20Capped is ERC20Mintable { uint256 private _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor (uint256 cap) public { require(cap > 0, "ERC20Capped: cap is 0"); _cap = cap; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view returns (uint256) { return _cap; } /** * @dev See `ERC20Mintable.mint`. * * Requirements: * * - `value` must not cause the total supply to go over the cap. */ function _mint(address account, uint256 value) internal { require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded"); super._mint(account, value); } } /** * @dev Extension of `ERC20` that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is ERC20, MinterRole { /** * @dev Destroys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public onlyMinter { _burn(msg.sender, amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public onlyMinter { _burnFrom(account, amount); } } /** * @title Juggernaut DeFi ERC20 Token Contract * @author * * @dev Implementation of the New Juggernaut DeFi Token. */ contract JuggernautToken is ERC20Detailed, ERC20Capped, ERC20Burnable, ERC20Pausable { string private constant TOKEN_NAME = "Juggernaut DeFi"; string private constant TOKEN_SYMBOL = "JGN"; uint private constant INITIAL_TOKENS = 150000000; uint8 private constant DECIMALS = 18; uint256 public constant INITIAL_SUPPLY = INITIAL_TOKENS * (10 ** uint256(DECIMALS)); constructor() public ERC20Detailed(TOKEN_NAME,TOKEN_SYMBOL,DECIMALS) ERC20Capped(INITIAL_SUPPLY) { _mint(msg.sender, INITIAL_SUPPLY); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600f81526e4a75676765726e617574204465466960881b6020808301918252835180850190945260038452622523a760e91b9084015281516a7c13bc4b2c133c5600000093916012916200007291600091620004ee565b50815162000088906001906020850190620004ee565b506002805460ff191660ff9290921691909117905550620000ab90503362000148565b6000811162000101576040805162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b60075562000118336001600160e01b036200019a16565b6009805460ff1916905562000142336a7c13bc4b2c133c560000006001600160e01b03620001ec16565b62000590565b620001638160066200028a60201b620013bb1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001b58160086200028a60201b620013bb1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6007546200021b82620002076001600160e01b036200031716565b6200031e60201b620012081790919060201c565b11156200026f576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6200028682826200038060201b620012621760201c565b5050565b6200029f82826001600160e01b036200048516565b15620002f2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6005545b90565b60008282018381101562000379576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216620003dc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620003f8816005546200031e60201b620012081790919060201c565b6005556001600160a01b0382166000908152600360209081526040909120546200042d918390620012086200031e821b17901c565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60006001600160a01b038216620004ce5760405162461bcd60e51b815260040180806020018281038252602281526020018062001b636022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200053157805160ff191683800117855562000561565b8280016001018555821562000561579182015b828111156200056157825182559160200191906001019062000544565b506200056f92915062000573565b5090565b6200031b91905b808211156200056f57600081556001016200057a565b6115c380620005a06000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80635c975abb116100de57806395d89b4111610097578063a457c2d711610071578063a457c2d71461041e578063a9059cbb1461044a578063aa271e1a14610476578063dd62ed3e1461049c57610173565b806395d89b41146103e8578063983b2d56146103f0578063986502751461041657610173565b80635c975abb146103585780636ef8d66d1461036057806370a082311461036857806379cc67901461038e57806382dc1ec4146103ba5780638456cb59146103e057610173565b8063355274ea11610130578063355274ea146102ab57806339509351146102b35780633f4ba83a146102df57806340c10f19146102e957806342966c681461031557806346fbf68e1461033257610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f5780632ff2e9dc14610285578063313ce5671461028d575b600080fd5b6101806104ca565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610560565b604080519115158252519081900360200190f35b61023d6105bf565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b038135811691602081013590911690604001356105c5565b61023d610626565b610295610635565b6040805160ff9092168252519081900360200190f35b61023d61063e565b610221600480360360408110156102c957600080fd5b506001600160a01b038135169060200135610644565b6102e761069c565b005b610221600480360360408110156102ff57600080fd5b506001600160a01b03813516906020013561076d565b6102e76004803603602081101561032b57600080fd5b50356107c6565b6102216004803603602081101561034857600080fd5b50356001600160a01b0316610817565b610221610830565b6102e7610839565b61023d6004803603602081101561037e57600080fd5b50356001600160a01b0316610844565b6102e7600480360360408110156103a457600080fd5b506001600160a01b03813516906020013561085f565b6102e7600480360360208110156103d057600080fd5b50356001600160a01b03166108b1565b6102e76108fe565b6101806109cf565b6102e76004803603602081101561040657600080fd5b50356001600160a01b0316610a2f565b6102e7610a7c565b6102216004803603604081101561043457600080fd5b506001600160a01b038135169060200135610a85565b6102216004803603604081101561046057600080fd5b506001600160a01b038135169060200135610add565b6102216004803603602081101561048c57600080fd5b50356001600160a01b0316610b35565b61023d600480360360408110156104b257600080fd5b506001600160a01b0381358116916020013516610b48565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105565780601f1061052b57610100808354040283529160200191610556565b820191906000526020600020905b81548152906001019060200180831161053957829003601f168201915b5050505050905090565b60095460009060ff16156105ae576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610b73565b9392505050565b60055490565b60095460009060ff1615610613576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61061e848484610b80565b949350505050565b6a7c13bc4b2c133c5600000081565b60025460ff1690565b60075490565b60095460009060ff1615610692576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610bd7565b6106a533610817565b6106e05760405162461bcd60e51b81526004018080602001828103825260308152602001806114606030913960400191505060405180910390fd5b60095460ff1661072e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061077833610b35565b6107b35760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b6107bd8383610c13565b50600192915050565b6107cf33610b35565b61080a5760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b6108143382610c8b565b50565b600061082a60088363ffffffff610d6616565b92915050565b60095460ff1690565b61084233610dcd565b565b6001600160a01b031660009081526003602052604090205490565b61086833610b35565b6108a35760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b6108ad8282610e15565b5050565b6108ba33610817565b6108f55760405162461bcd60e51b81526004018080602001828103825260308152602001806114606030913960400191505060405180910390fd5b61081481610e5a565b61090733610817565b6109425760405162461bcd60e51b81526004018080602001828103825260308152602001806114606030913960400191505060405180910390fd5b60095460ff161561098d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105565780601f1061052b57610100808354040283529160200191610556565b610a3833610b35565b610a735760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b61081481610ea2565b61084233610eea565b60095460009060ff1615610ad3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610f32565b60095460009060ff1615610b2b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610f6e565b600061082a60068363ffffffff610d6616565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b60006107bd338484610f7b565b6000610b8d848484611067565b6001600160a01b038416600090815260046020908152604080832033808552925290912054610bcd918691610bc8908663ffffffff6111ab16565b610f7b565b5060019392505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916107bd918590610bc8908663ffffffff61120816565b600754610c2e82610c226105bf565b9063ffffffff61120816565b1115610c81576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6108ad8282611262565b6001600160a01b038216610cd05760405162461bcd60e51b81526004018080602001828103825260218152602001806115256021913960400191505060405180910390fd5b600554610ce3908263ffffffff6111ab16565b6005556001600160a01b038216600090815260036020526040902054610d0f908263ffffffff6111ab16565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610dad5760405162461bcd60e51b81526004018080602001828103825260228152602001806115036022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610dde60088263ffffffff61135416565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610e1f8282610c8b565b6001600160a01b0382166000908152600460209081526040808320338085529252909120546108ad918491610bc8908563ffffffff6111ab16565b610e6b60088263ffffffff6113bb16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610eb360068263ffffffff6113bb16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610efb60068263ffffffff61135416565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916107bd918590610bc8908663ffffffff6111ab16565b60006107bd338484611067565b6001600160a01b038316610fc05760405162461bcd60e51b815260040180806020018281038252602481526020018061156b6024913960400191505060405180910390fd5b6001600160a01b0382166110055760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110ac5760405162461bcd60e51b81526004018080602001828103825260258152602001806115466025913960400191505060405180910390fd5b6001600160a01b0382166110f15760405162461bcd60e51b815260040180806020018281038252602381526020018061143d6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205461111a908263ffffffff6111ab16565b6001600160a01b03808516600090815260036020526040808220939093559084168152205461114f908263ffffffff61120816565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611202576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156105b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166112bd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546112d0908263ffffffff61120816565b6005556001600160a01b0382166000908152600360205260409020546112fc908263ffffffff61120816565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61135e8282610d66565b6113995760405162461bcd60e51b81526004018080602001828103825260218152602001806114e26021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6113c58282610d66565b15611417576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820d063073092e40ac3fc8ad33424fdcc720a5c600b52db7c2ea5c7fff71f8bf42564736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80635c975abb116100de57806395d89b4111610097578063a457c2d711610071578063a457c2d71461041e578063a9059cbb1461044a578063aa271e1a14610476578063dd62ed3e1461049c57610173565b806395d89b41146103e8578063983b2d56146103f0578063986502751461041657610173565b80635c975abb146103585780636ef8d66d1461036057806370a082311461036857806379cc67901461038e57806382dc1ec4146103ba5780638456cb59146103e057610173565b8063355274ea11610130578063355274ea146102ab57806339509351146102b35780633f4ba83a146102df57806340c10f19146102e957806342966c681461031557806346fbf68e1461033257610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f5780632ff2e9dc14610285578063313ce5671461028d575b600080fd5b6101806104ca565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610560565b604080519115158252519081900360200190f35b61023d6105bf565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b038135811691602081013590911690604001356105c5565b61023d610626565b610295610635565b6040805160ff9092168252519081900360200190f35b61023d61063e565b610221600480360360408110156102c957600080fd5b506001600160a01b038135169060200135610644565b6102e761069c565b005b610221600480360360408110156102ff57600080fd5b506001600160a01b03813516906020013561076d565b6102e76004803603602081101561032b57600080fd5b50356107c6565b6102216004803603602081101561034857600080fd5b50356001600160a01b0316610817565b610221610830565b6102e7610839565b61023d6004803603602081101561037e57600080fd5b50356001600160a01b0316610844565b6102e7600480360360408110156103a457600080fd5b506001600160a01b03813516906020013561085f565b6102e7600480360360208110156103d057600080fd5b50356001600160a01b03166108b1565b6102e76108fe565b6101806109cf565b6102e76004803603602081101561040657600080fd5b50356001600160a01b0316610a2f565b6102e7610a7c565b6102216004803603604081101561043457600080fd5b506001600160a01b038135169060200135610a85565b6102216004803603604081101561046057600080fd5b506001600160a01b038135169060200135610add565b6102216004803603602081101561048c57600080fd5b50356001600160a01b0316610b35565b61023d600480360360408110156104b257600080fd5b506001600160a01b0381358116916020013516610b48565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105565780601f1061052b57610100808354040283529160200191610556565b820191906000526020600020905b81548152906001019060200180831161053957829003601f168201915b5050505050905090565b60095460009060ff16156105ae576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610b73565b9392505050565b60055490565b60095460009060ff1615610613576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61061e848484610b80565b949350505050565b6a7c13bc4b2c133c5600000081565b60025460ff1690565b60075490565b60095460009060ff1615610692576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610bd7565b6106a533610817565b6106e05760405162461bcd60e51b81526004018080602001828103825260308152602001806114606030913960400191505060405180910390fd5b60095460ff1661072e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6009805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061077833610b35565b6107b35760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b6107bd8383610c13565b50600192915050565b6107cf33610b35565b61080a5760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b6108143382610c8b565b50565b600061082a60088363ffffffff610d6616565b92915050565b60095460ff1690565b61084233610dcd565b565b6001600160a01b031660009081526003602052604090205490565b61086833610b35565b6108a35760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b6108ad8282610e15565b5050565b6108ba33610817565b6108f55760405162461bcd60e51b81526004018080602001828103825260308152602001806114606030913960400191505060405180910390fd5b61081481610e5a565b61090733610817565b6109425760405162461bcd60e51b81526004018080602001828103825260308152602001806114606030913960400191505060405180910390fd5b60095460ff161561098d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6009805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105565780601f1061052b57610100808354040283529160200191610556565b610a3833610b35565b610a735760405162461bcd60e51b81526004018080602001828103825260308152602001806114b26030913960400191505060405180910390fd5b61081481610ea2565b61084233610eea565b60095460009060ff1615610ad3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610f32565b60095460009060ff1615610b2b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105b88383610f6e565b600061082a60068363ffffffff610d6616565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b60006107bd338484610f7b565b6000610b8d848484611067565b6001600160a01b038416600090815260046020908152604080832033808552925290912054610bcd918691610bc8908663ffffffff6111ab16565b610f7b565b5060019392505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916107bd918590610bc8908663ffffffff61120816565b600754610c2e82610c226105bf565b9063ffffffff61120816565b1115610c81576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6108ad8282611262565b6001600160a01b038216610cd05760405162461bcd60e51b81526004018080602001828103825260218152602001806115256021913960400191505060405180910390fd5b600554610ce3908263ffffffff6111ab16565b6005556001600160a01b038216600090815260036020526040902054610d0f908263ffffffff6111ab16565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610dad5760405162461bcd60e51b81526004018080602001828103825260228152602001806115036022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610dde60088263ffffffff61135416565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610e1f8282610c8b565b6001600160a01b0382166000908152600460209081526040808320338085529252909120546108ad918491610bc8908563ffffffff6111ab16565b610e6b60088263ffffffff6113bb16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610eb360068263ffffffff6113bb16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610efb60068263ffffffff61135416565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916107bd918590610bc8908663ffffffff6111ab16565b60006107bd338484611067565b6001600160a01b038316610fc05760405162461bcd60e51b815260040180806020018281038252602481526020018061156b6024913960400191505060405180910390fd5b6001600160a01b0382166110055760405162461bcd60e51b81526004018080602001828103825260228152602001806114906022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110ac5760405162461bcd60e51b81526004018080602001828103825260258152602001806115466025913960400191505060405180910390fd5b6001600160a01b0382166110f15760405162461bcd60e51b815260040180806020018281038252602381526020018061143d6023913960400191505060405180910390fd5b6001600160a01b03831660009081526003602052604090205461111a908263ffffffff6111ab16565b6001600160a01b03808516600090815260036020526040808220939093559084168152205461114f908263ffffffff61120816565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611202576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156105b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166112bd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546112d0908263ffffffff61120816565b6005556001600160a01b0382166000908152600360205260409020546112fc908263ffffffff61120816565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61135e8282610d66565b6113995760405162461bcd60e51b81526004018080602001828103825260218152602001806114e26021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6113c58282610d66565b15611417576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820d063073092e40ac3fc8ad33424fdcc720a5c600b52db7c2ea5c7fff71f8bf42564736f6c63430005110032
Deployed Bytecode Sourcemap
24119:579:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24119:579:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14994:83;;;:::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;14994:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20335:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20335:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7890:91;;;:::i;:::-;;;;;;;;;;;;;;;;20167:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20167:160:0;;;;;;;;;;;;;;;;;:::i;24430:83::-;;;:::i;15852:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22899:75;;;:::i;20483:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20483:167:0;;;;;;;;:::i;19768:118::-;;;:::i;:::-;;22250:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22250:143:0;;;;;;;;:::i;23710:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23710:92:0;;:::i;17350:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17350:109:0;-1:-1:-1;;;;;17350:109:0;;:::i;18977:78::-;;;:::i;17567:77::-;;;:::i;8044:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8044:110:0;-1:-1:-1;;;;;8044:110:0;;:::i;23864:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23864:115:0;;;;;;;;:::i;17467:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17467:92:0;-1:-1:-1;;;;;17467:92:0;;:::i;19557:116::-;;;:::i;15196:87::-;;;:::i;21374:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21374:92:0;-1:-1:-1;;;;;21374:92:0;;:::i;21474:77::-;;;:::i;20658:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20658:177:0;;;;;;;;:::i;20027:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20027:132:0;;;;;;;;:::i;21257:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21257:109:0;-1:-1:-1;;;;;21257:109:0;;:::i;8586:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8586:134:0;;;;;;;;;;:::i;14994:83::-;15064:5;15057:12;;;;;;;;-1:-1:-1;;15057:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15031:13;;15057:12;;15064:5;;15057:12;;15064:5;15057:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14994:83;:::o;20335:140::-;19214:7;;20414:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;;;;20438:29;20452:7;20461:5;20438:13;:29::i;:::-;20431:36;20335:140;-1:-1:-1;;;20335:140:0:o;7890:91::-;7961:12;;7890:91;:::o;20167:160::-;19214:7;;20260:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;;;;20284:35;20303:4;20309:2;20313:5;20284:18;:35::i;:::-;20277:42;20167:160;-1:-1:-1;;;;20167:160:0:o;24430:83::-;24471:42;24430:83;:::o;15852:::-;15918:9;;;;15852:83;:::o;22899:75::-;22962:4;;22899:75;:::o;20483:167::-;19214:7;;20574:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;;;;20598:44;20622:7;20631:10;20598:23;:44::i;19768:118::-;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;-1:-1:-1;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19413:7;;;;19405:40;;;;;-1:-1:-1;;;19405:40:0;;;;;;;;;;;;-1:-1:-1;;;19405:40:0;;;;;;;;;;;;;;;19827:7;:15;;-1:-1:-1;;19827:15:0;;;19858:20;;;19867:10;19858:20;;;;;;;;;;;;;19768:118::o;22250:143::-;22324:4;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;-1:-1:-1;;;21148:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22341:22;22347:7;22356:6;22341:5;:22::i;:::-;-1:-1:-1;22381:4:0;22250:143;;;;:::o;23710:92::-;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;-1:-1:-1;;;21148:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23769:25;23775:10;23787:6;23769:5;:25::i;:::-;23710:92;:::o;17350:109::-;17406:4;17430:21;:8;17443:7;17430:21;:12;:21;:::i;:::-;17423:28;17350:109;-1:-1:-1;;17350:109:0:o;18977:78::-;19040:7;;;;18977:78;:::o;17567:77::-;17611:25;17625:10;17611:13;:25::i;:::-;17567:77::o;8044:110::-;-1:-1:-1;;;;;8128:18:0;8101:7;8128:18;;;:9;:18;;;;;;;8044:110::o;23864:115::-;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;-1:-1:-1;;;21148:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23945:26;23955:7;23964:6;23945:9;:26::i;:::-;23864:115;;:::o;17467:92::-;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;-1:-1:-1;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17532:19;17543:7;17532:10;:19::i;19557:116::-;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;-1:-1:-1;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19214:7;;;;19213:8;19205:37;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;;;;19617:7;:14;;-1:-1:-1;;19617:14:0;19627:4;19617:14;;;19647:18;;;19654:10;19647:18;;;;;;;;;;;;;19557:116::o;15196:87::-;15268:7;15261:14;;;;;;;;-1:-1:-1;;15261:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15235:13;;15261:14;;15268:7;;15261:14;;15268:7;15261:14;;;;;;;;;;;;;;;;;;;;;;;;21374:92;21156:20;21165:10;21156:8;:20::i;:::-;21148:81;;;;-1:-1:-1;;;21148:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21439:19;21450:7;21439:10;:19::i;21474:77::-;21518:25;21532:10;21518:13;:25::i;20658:177::-;19214:7;;20754:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;;;;20778:49;20802:7;20811:15;20778:23;:49::i;20027:132::-;19214:7;;20102:4;;19214:7;;19213:8;19205:37;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;-1:-1:-1;;;19205:37:0;;;;;;;;;;;;;;;20126:25;20141:2;20145:5;20126:14;:25::i;21257:109::-;21313:4;21337:21;:8;21350:7;21337:21;:12;:21;:::i;8586:134::-;-1:-1:-1;;;;;8685:18:0;;;8658:7;8685:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8586:134::o;8867:148::-;8932:4;8949:36;8958:10;8970:7;8979:5;8949:8;:36::i;9486:256::-;9575:4;9592:36;9602:6;9610:9;9621:6;9592:9;:36::i;:::-;-1:-1:-1;;;;;9668:19:0;;;;;;:11;:19;;;;;;;;9656:10;9668:31;;;;;;;;;9639:73;;9648:6;;9668:43;;9704:6;9668:43;:35;:43;:::i;:::-;9639:8;:73::i;:::-;-1:-1:-1;9730:4:0;9486:256;;;;;:::o;10151:206::-;10257:10;10231:4;10278:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10278:32:0;;;;;;;;;;10231:4;;10248:79;;10269:7;;10278:48;;10315:10;10278:48;:36;:48;:::i;23147:183::-;23250:4;;23222:24;23240:5;23222:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;23214:70;;;;;-1:-1:-1;;;23214:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23295:27;23307:7;23316:5;23295:11;:27::i;12916:306::-;-1:-1:-1;;;;;12991:21:0;;12983:67;;;;-1:-1:-1;;;12983:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13078:12;;:23;;13095:5;13078:23;:16;:23;:::i;:::-;13063:12;:38;-1:-1:-1;;;;;13133:18:0;;;;;;:9;:18;;;;;;:29;;13156:5;13133:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13112:18:0;;;;;;:9;:18;;;;;;;;:50;;;;13178:36;;;;;;;13112:18;;13178:36;;;;;;;;;;;12916:306;;:::o;16725:203::-;16797:4;-1:-1:-1;;;;;16822:21:0;;16814:68;;;;-1:-1:-1;;;16814:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16900:20:0;:11;:20;;;;;;;;;;;;;;;16725:203::o;17782:130::-;17842:24;:8;17858:7;17842:24;:15;:24;:::i;:::-;17882:22;;-1:-1:-1;;;;;17882:22:0;;;;;;;;17782:130;:::o;14182:188::-;14254:22;14260:7;14269:6;14254:5;:22::i;:::-;-1:-1:-1;;;;;14317:20:0;;;;;;:11;:20;;;;;;;;14305:10;14317:32;;;;;;;;;14287:75;;14296:7;;14317:44;;14354:6;14317:44;:36;:44;:::i;17652:122::-;17709:21;:8;17722:7;17709:21;:12;:21;:::i;:::-;17746:20;;-1:-1:-1;;;;;17746:20:0;;;;;;;;17652:122;:::o;21559:::-;21616:21;:8;21629:7;21616:21;:12;:21;:::i;:::-;21653:20;;-1:-1:-1;;;;;21653:20:0;;;;;;;;21559:122;:::o;21689:130::-;21749:24;:8;21765:7;21749:24;:15;:24;:::i;:::-;21789:22;;-1:-1:-1;;;;;21789:22:0;;;;;;;;21689:130;:::o;10860:216::-;10971:10;10945:4;10992:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10992:32:0;;;;;;;;;;10945:4;;10962:84;;10983:7;;10992:53;;11029:15;10992:53;:36;:53;:::i;8367:156::-;8436:4;8453:40;8463:10;8475:9;8486:6;8453:9;:40::i;13662:335::-;-1:-1:-1;;;;;13755:19:0;;13747:68;;;;-1:-1:-1;;;13747:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13834:21:0;;13826:68;;;;-1:-1:-1;;;13826:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13907:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;13958:31;;;;;;;;;;;;;;;;;13662:335;;;:::o;11566:429::-;-1:-1:-1;;;;;11664:20:0;;11656:70;;;;-1:-1:-1;;;11656:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11745:23:0;;11737:71;;;;-1:-1:-1;;;11737:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11841:17:0;;;;;;:9;:17;;;;;;:29;;11863:6;11841:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;11821:17:0;;;;;;;:9;:17;;;;;;:49;;;;11904:20;;;;;;;:32;;11929:6;11904:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;11881:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;11952:35;;;;;;;11881:20;;11952:35;;;;;;;;;;;;;11566:429;;;:::o;4102:184::-;4160:7;4193:1;4188;:6;;4180:49;;;;;-1:-1:-1;;;4180:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4252:5:0;;;4102:184::o;3646:181::-;3704:7;3736:5;;;3760:6;;;;3752:46;;;;;-1:-1:-1;;;3752:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;12276:308;-1:-1:-1;;;;;12352:21:0;;12344:65;;;;;-1:-1:-1;;;12344:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12437:12;;:24;;12454:6;12437:24;:16;:24;:::i;:::-;12422:12;:39;-1:-1:-1;;;;;12493:18:0;;;;;;:9;:18;;;;;;:30;;12516:6;12493:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12472:18:0;;;;;;:9;:18;;;;;;;;:51;;;;12539:37;;;;;;;12472:18;;;;12539:37;;;;;;;;;;12276:308;;:::o;16447:183::-;16527:18;16531:4;16537:7;16527:3;:18::i;:::-;16519:64;;;;-1:-1:-1;;;16519:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16594:20:0;16617:5;16594:20;;;;;;;;;;;:28;;-1:-1:-1;;16594:28:0;;;16447:183::o;16189:178::-;16267:18;16271:4;16277:7;16267:3;:18::i;:::-;16266:19;16258:63;;;;;-1:-1:-1;;;16258:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16332:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16332:27:0;16355:4;16332:27;;;16189:178::o
Swarm Source
bzzr://d063073092e40ac3fc8ad33424fdcc720a5c600b52db7c2ea5c7fff71f8bf425
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.