ETH Price: $3,352.44 (-0.88%)
Gas: 9 Gwei

Token

UnoRe (UNO)
 

Overview

Max Total Supply

384,649,206 UNO

Holders

4,064 ( -0.025%)

Market

Price

$0.02 @ 0.000007 ETH (-1.44%)

Onchain Market Cap

$9,294,436.47

Circulating Supply Market Cap

$3,226,347.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
88.481491807035251434 UNO

Value
$2.14 ( ~0.000638340198247889 Eth) [0.0000%]
0x71fea781d256626ebc1a5096de69ee4f2230ddac
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

UnoRe will be the world’s first reinsurance trading platform powered by Polkadot.

Market

Volume (24H):$199,549.00
Market Capitalization:$3,226,347.00
Circulating Supply:133,468,650.00 UNO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UnoRe

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-26
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

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);
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.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) {
        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-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) {
        // 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;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.0;



/**
 * @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() external view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) external 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) external 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));
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @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() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external 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() external view returns (uint8) {
        return _decimals;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.5.0;


/**
 * @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 {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    function burnFrom(address account, uint256 amount) external {
        _burnFrom(account, amount);
    }
}

// File: @openzeppelin/contracts/access/Roles.sol

pragma solidity ^0.5.0;

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

// File: @openzeppelin/contracts/access/roles/PauserRole.sol

pragma solidity ^0.5.0;


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) external onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() external {
        _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);
    }
}

// File: @openzeppelin/contracts/lifecycle/Pausable.sol

pragma solidity ^0.5.0;


/**
 * @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() external 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() external onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() external onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol

pragma solidity ^0.5.0;



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

// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier
 * available, which can be aplied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 */
contract ReentrancyGuard {
    /// @dev counter to allow mutex lock with only one SSTORE operation
    uint256 private _guardCounter;

    constructor () internal {
        // The counter starts at one to prevent changing it from zero to a non-zero
        // value, which is a more expensive operation.
        _guardCounter = 1;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _guardCounter += 1;
        uint256 localCounter = _guardCounter;
        _;
        require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
    }
}

// File: contracts/UnoToken.sol

pragma solidity ^0.5.0;










contract UnoRe is ERC20 , ERC20Detailed , ERC20Burnable , ERC20Pausable , ReentrancyGuard {
  constructor (uint256 _totalSupply)
    
    ERC20Detailed("UnoRe" , "UNO",18)
  

        public
        {
           
           _mint(msg.sender, _totalSupply);
          
        }
      
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":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":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":"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":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"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"}]

60806040523480156200001157600080fd5b50604051620015ca380380620015ca833981810160405260208110156200003757600080fd5b50516040805180820182526005815264556e6f526560d81b60208281019182528351808501909452600380855262554e4f60e81b91850191909152825192939260129262000086929162000395565b5081516200009c90600490602085019062000395565b506005805460ff191660ff9290921691909117905550620000bf905033620000ea565b6007805460ff191690556001600855620000e333826001600160e01b036200013c16565b506200043a565b620001058160066200023d60201b62000f861790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6001600160a01b03821662000198576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001b481600254620002ca60201b62000ec51790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001e791839062000ec5620002ca821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200025282826001600160e01b036200032c16565b15620002a5576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60008282018381101562000325576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620003755760405162461bcd60e51b8152600401808060200182810382526022815260200180620015a86022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003d857805160ff191683800117855562000408565b8280016001018555821562000408579182015b8281111562000408578251825591602001919060010190620003eb565b50620004169291506200041a565b5090565b6200043791905b8082111562000416576000815560010162000421565b90565b61115e806200044a6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638456cb59116100715780638456cb591461035257806395d89b411461035a578063a457c2d714610362578063a9059cbb1461038e578063dd62ed3e146103ba57610121565b80635c975abb146102ca5780636ef8d66d146102d257806370a08231146102da57806379cc67901461030057806382dc1ec41461032c57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c681461028757806346fbf68e146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103e8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561047e565b604080519115158252519081900360200190f35b6101eb6104dd565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b61023b610544565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561054d565b6102856105a5565b005b6102856004803603602081101561029d57600080fd5b5035610676565b6101cf600480360360208110156102ba57600080fd5b50356001600160a01b0316610683565b6101cf61069c565b6102856106a5565b6101eb600480360360208110156102f057600080fd5b50356001600160a01b03166106b0565b6102856004803603604081101561031657600080fd5b506001600160a01b0381351690602001356106cb565b6102856004803603602081101561034257600080fd5b50356001600160a01b03166106d9565b610285610726565b61012e6107f7565b6101cf6004803603604081101561037857600080fd5b506001600160a01b038135169060200135610858565b6101cf600480360360408110156103a457600080fd5b506001600160a01b0381351690602001356108b0565b6101eb600480360360408110156103d057600080fd5b506001600160a01b0381358116916020013516610908565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60075460009060ff16156104cc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610933565b9392505050565b60025490565b60075460009060ff1615610531576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61053c848484610949565b949350505050565b60055460ff1690565b60075460009060ff161561059b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d683836109a0565b6105ae33610683565b6105e95760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60075460ff16610637576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61068033826109dc565b50565b600061069660068363ffffffff610ab516565b92915050565b60075460ff1690565b6106ae33610b1c565b565b6001600160a01b031660009081526020819052604090205490565b6106d58282610b64565b5050565b6106e233610683565b61071d5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b61068081610ba9565b61072f33610683565b61076a5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60075460ff16156107b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b60075460009060ff16156108a6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610bf1565b60075460009060ff16156108fe576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610c2d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610940338484610c3a565b50600192915050565b6000610956848484610d26565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610996918691610991908663ffffffff610e6816565b610c3a565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610ec516565b6001600160a01b038216610a215760405162461bcd60e51b81526004018080602001828103825260218152602001806110c06021913960400191505060405180910390fd5b600254610a34908263ffffffff610e6816565b6002556001600160a01b038216600090815260208190526040902054610a60908263ffffffff610e6816565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610afc5760405162461bcd60e51b815260040180806020018281038252602281526020018061109e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610b2d60068263ffffffff610f1f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610b6e82826109dc565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546106d5918491610991908563ffffffff610e6816565b610bba60068263ffffffff610f8616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610e6816565b6000610940338484610d26565b6001600160a01b038316610c7f5760405162461bcd60e51b81526004018080602001828103825260248152602001806111066024913960400191505060405180910390fd5b6001600160a01b038216610cc45760405162461bcd60e51b815260040180806020018281038252602281526020018061105b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d6b5760405162461bcd60e51b81526004018080602001828103825260258152602001806110e16025913960400191505060405180910390fd5b6001600160a01b038216610db05760405162461bcd60e51b81526004018080602001828103825260238152602001806110086023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610dd9908263ffffffff610e6816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e0e908263ffffffff610ec516565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610ebf576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610f298282610ab5565b610f645760405162461bcd60e51b815260040180806020018281038252602181526020018061107d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b610f908282610ab5565b15610fe2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582033617fca1d13ee6781b9a714ab6784443a4277840918c78003cec6a42977082364736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f20616464726573730000000000000000000000000000000000000000013e2ca33d4ff3a396180000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638456cb59116100715780638456cb591461035257806395d89b411461035a578063a457c2d714610362578063a9059cbb1461038e578063dd62ed3e146103ba57610121565b80635c975abb146102ca5780636ef8d66d146102d257806370a08231146102da57806379cc67901461030057806382dc1ec41461032c57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c681461028757806346fbf68e146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103e8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561047e565b604080519115158252519081900360200190f35b6101eb6104dd565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b61023b610544565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561054d565b6102856105a5565b005b6102856004803603602081101561029d57600080fd5b5035610676565b6101cf600480360360208110156102ba57600080fd5b50356001600160a01b0316610683565b6101cf61069c565b6102856106a5565b6101eb600480360360208110156102f057600080fd5b50356001600160a01b03166106b0565b6102856004803603604081101561031657600080fd5b506001600160a01b0381351690602001356106cb565b6102856004803603602081101561034257600080fd5b50356001600160a01b03166106d9565b610285610726565b61012e6107f7565b6101cf6004803603604081101561037857600080fd5b506001600160a01b038135169060200135610858565b6101cf600480360360408110156103a457600080fd5b506001600160a01b0381351690602001356108b0565b6101eb600480360360408110156103d057600080fd5b506001600160a01b0381358116916020013516610908565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60075460009060ff16156104cc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610933565b9392505050565b60025490565b60075460009060ff1615610531576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61053c848484610949565b949350505050565b60055460ff1690565b60075460009060ff161561059b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d683836109a0565b6105ae33610683565b6105e95760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60075460ff16610637576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61068033826109dc565b50565b600061069660068363ffffffff610ab516565b92915050565b60075460ff1690565b6106ae33610b1c565b565b6001600160a01b031660009081526020819052604090205490565b6106d58282610b64565b5050565b6106e233610683565b61071d5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b61068081610ba9565b61072f33610683565b61076a5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60075460ff16156107b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b60075460009060ff16156108a6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610bf1565b60075460009060ff16156108fe576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610c2d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610940338484610c3a565b50600192915050565b6000610956848484610d26565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610996918691610991908663ffffffff610e6816565b610c3a565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610ec516565b6001600160a01b038216610a215760405162461bcd60e51b81526004018080602001828103825260218152602001806110c06021913960400191505060405180910390fd5b600254610a34908263ffffffff610e6816565b6002556001600160a01b038216600090815260208190526040902054610a60908263ffffffff610e6816565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610afc5760405162461bcd60e51b815260040180806020018281038252602281526020018061109e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610b2d60068263ffffffff610f1f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610b6e82826109dc565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546106d5918491610991908563ffffffff610e6816565b610bba60068263ffffffff610f8616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610e6816565b6000610940338484610d26565b6001600160a01b038316610c7f5760405162461bcd60e51b81526004018080602001828103825260248152602001806111066024913960400191505060405180910390fd5b6001600160a01b038216610cc45760405162461bcd60e51b815260040180806020018281038252602281526020018061105b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d6b5760405162461bcd60e51b81526004018080602001828103825260258152602001806110e16025913960400191505060405180910390fd5b6001600160a01b038216610db05760405162461bcd60e51b81526004018080602001828103825260238152602001806110086023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610dd9908263ffffffff610e6816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e0e908263ffffffff610ec516565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610ebf576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610f298282610ab5565b610f645760405162461bcd60e51b815260040180806020018281038252602181526020018061107d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b610f908282610ab5565b15610fe2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582033617fca1d13ee6781b9a714ab6784443a4277840918c78003cec6a42977082364736f6c63430005110032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000013e2ca33d4ff3a396180000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 384649206000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000013e2ca33d4ff3a396180000


Deployed Bytecode Sourcemap

23908:299:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23908:299:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15323:85;;;:::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;15323:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21750:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21750:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8118:93;;;:::i;:::-;;;;;;;;;;;;;;;;21582:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21582:160:0;;;;;;;;;;;;;;;;;:::i;16185:85::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21898:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21898:167:0;;;;;;;;:::i;21084:120::-;;;:::i;:::-;;16732:83;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16732:83:0;;:::i;18570:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18570:109:0;-1:-1:-1;;;;;18570:109:0;;:::i;20289:80::-;;;:::i;18789:79::-;;;:::i;8274:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8274:112:0;-1:-1:-1;;;;;8274:112:0;;:::i;16877:105::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16877:105:0;;;;;;;;:::i;18687:94::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18687:94:0;-1:-1:-1;;;;;18687:94:0;;:::i;20871:118::-;;;:::i;15527:89::-;;;:::i;22073:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22073:177:0;;;;;;;;:::i;21442:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21442:132:0;;;;;;;;:::i;8818:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8818:136:0;;;;;;;;;;:::i;15323:85::-;15395:5;15388:12;;;;;;;;-1:-1:-1;;15388:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15362:13;;15388:12;;15395:5;;15388:12;;15395:5;15388:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15323:85;:::o;21750:140::-;20528:7;;21829:4;;20528:7;;20527:8;20519:37;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;;;;21853:29;21867:7;21876:5;21853:13;:29::i;:::-;21846:36;21750:140;-1:-1:-1;;;21750:140:0:o;8118:93::-;8191:12;;8118:93;:::o;21582:160::-;20528:7;;21675:4;;20528:7;;20527:8;20519:37;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;;;;21699:35;21718:4;21724:2;21728:5;21699:18;:35::i;:::-;21692:42;21582:160;-1:-1:-1;;;;21582:160:0:o;16185:85::-;16253:9;;;;16185:85;:::o;21898:167::-;20528:7;;21989:4;;20528:7;;20527:8;20519:37;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;;;;22013:44;22037:7;22046:10;22013:23;:44::i;21084:120::-;18469:20;18478:10;18469:8;:20::i;:::-;18461:81;;;;-1:-1:-1;;;18461:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20727:7;;;;20719:40;;;;;-1:-1:-1;;;20719:40:0;;;;;;;;;;;;-1:-1:-1;;;20719:40:0;;;;;;;;;;;;;;;21145:7;:15;;-1:-1:-1;;21145:15:0;;;21176:20;;;21185:10;21176:20;;;;;;;;;;;;;21084:120::o;16732:83::-;16782:25;16788:10;16800:6;16782:5;:25::i;:::-;16732:83;:::o;18570:109::-;18626:4;18650:21;:8;18663:7;18650:21;:12;:21;:::i;:::-;18643:28;18570:109;-1:-1:-1;;18570:109:0:o;20289:80::-;20354:7;;;;20289:80;:::o;18789:79::-;18835:25;18849:10;18835:13;:25::i;:::-;18789:79::o;8274:112::-;-1:-1:-1;;;;;8360:18:0;8333:7;8360:18;;;;;;;;;;;;8274:112::o;16877:105::-;16948:26;16958:7;16967:6;16948:9;:26::i;:::-;16877:105;;:::o;18687:94::-;18469:20;18478:10;18469:8;:20::i;:::-;18461:81;;;;-1:-1:-1;;;18461:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18754:19;18765:7;18754:10;:19::i;20871:118::-;18469:20;18478:10;18469:8;:20::i;:::-;18461:81;;;;-1:-1:-1;;;18461:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20528:7;;;;20527:8;20519:37;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;;;;20933:7;:14;;-1:-1:-1;;20933:14:0;20943:4;20933:14;;;20963:18;;;20970:10;20963:18;;;;;;;;;;;;;20871:118::o;15527:89::-;15601:7;15594:14;;;;;;;;-1:-1:-1;;15594:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15568:13;;15594:14;;15601:7;;15594:14;;15601:7;15594:14;;;;;;;;;;;;;;;;;;;;;;;;22073:177;20528:7;;22169:4;;20528:7;;20527:8;20519:37;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;;;;22193:49;22217:7;22226:15;22193:23;:49::i;21442:132::-;20528:7;;21517:4;;20528:7;;20527:8;20519:37;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;-1:-1:-1;;;20519:37:0;;;;;;;;;;;;;;;21541:25;21556:2;21560:5;21541:14;:25::i;8818:136::-;-1:-1:-1;;;;;8919:18:0;;;8892:7;8919:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8818:136::o;9101:148::-;9166:4;9183:36;9192:10;9204:7;9213:5;9183:8;:36::i;:::-;-1:-1:-1;9237:4:0;9101:148;;;;:::o;9720:256::-;9809:4;9826:36;9836:6;9844:9;9855:6;9826:9;:36::i;:::-;-1:-1:-1;;;;;9902:19:0;;;;;;:11;:19;;;;;;;;9890:10;9902:31;;;;;;;;;9873:73;;9882:6;;9902:43;;9938:6;9902:43;:35;:43;:::i;:::-;9873:8;:73::i;:::-;-1:-1:-1;9964:4:0;9720:256;;;;;:::o;10385:206::-;10491:10;10465:4;10512:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10512:32:0;;;;;;;;;;10465:4;;10482:79;;10503:7;;10512:48;;10549:10;10512:48;:36;:48;:::i;13150:306::-;-1:-1:-1;;;;;13225:21:0;;13217:67;;;;-1:-1:-1;;;13217:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13312:12;;:23;;13329:5;13312:23;:16;:23;:::i;:::-;13297:12;:38;-1:-1:-1;;;;;13367:18:0;;:9;:18;;;;;;;;;;;:29;;13390:5;13367:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13346:18:0;;:9;:18;;;;;;;;;;;:50;;;;13412:36;;;;;;;13346:9;;13412:36;;;;;;;;;;;13150:306;;:::o;17852:203::-;17924:4;-1:-1:-1;;;;;17949:21:0;;17941:68;;;;-1:-1:-1;;;17941:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18027:20:0;:11;:20;;;;;;;;;;;;;;;17852:203::o;19006:130::-;19066:24;:8;19082:7;19066:24;:15;:24;:::i;:::-;19106:22;;-1:-1:-1;;;;;19106:22:0;;;;;;;;19006:130;:::o;14416:188::-;14488:22;14494:7;14503:6;14488:5;:22::i;:::-;-1:-1:-1;;;;;14551:20:0;;;;;;:11;:20;;;;;;;;14539:10;14551:32;;;;;;;;;14521:75;;14530:7;;14551:44;;14588:6;14551:44;:36;:44;:::i;18876:122::-;18933:21;:8;18946:7;18933:21;:12;:21;:::i;:::-;18970:20;;-1:-1:-1;;;;;18970:20:0;;;;;;;;18876:122;:::o;11094:216::-;11205:10;11179:4;11226:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11226:32:0;;;;;;;;;;11179:4;;11196:84;;11217:7;;11226:53;;11263:15;11226:53;:36;:53;:::i;8599:156::-;8668:4;8685:40;8695:10;8707:9;8718:6;8685:9;:40::i;13896:335::-;-1:-1:-1;;;;;13989:19:0;;13981:68;;;;-1:-1:-1;;;13981:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14068:21:0;;14060:68;;;;-1:-1:-1;;;14060:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14141:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14192:31;;;;;;;;;;;;;;;;;13896:335;;;:::o;11800:429::-;-1:-1:-1;;;;;11898:20:0;;11890:70;;;;-1:-1:-1;;;11890:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11979:23:0;;11971:71;;;;-1:-1:-1;;;11971:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12075:17:0;;:9;:17;;;;;;;;;;;:29;;12097:6;12075:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12055:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12138:20;;;;;;;:32;;12163:6;12138:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12115:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12186:35;;;;;;;12115:20;;12186:35;;;;;;;;;;;;;11800:429;;;:::o;4240:184::-;4298:7;4331:1;4326;:6;;4318:49;;;;;-1:-1:-1;;;4318:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4390:5:0;;;4240:184::o;3784:181::-;3842:7;3874:5;;;3898:6;;;;3890:46;;;;;-1:-1:-1;;;3890:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17574:183;17654:18;17658:4;17664:7;17654:3;:18::i;:::-;17646:64;;;;-1:-1:-1;;;17646:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17721:20:0;17744:5;17721:20;;;;;;;;;;;:28;;-1:-1:-1;;17721:28:0;;;17574:183::o;17316:178::-;17394:18;17398:4;17404:7;17394:3;:18::i;:::-;17393:19;17385:63;;;;;-1:-1:-1;;;17385:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17459:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;17459:27:0;17482:4;17459:27;;;17316:178::o

Swarm Source

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