ETH Price: $2,626.59 (+1.22%)

Token

Frutti Dino (FDT)
 

Overview

Max Total Supply

1,000,000,000 FDT

Holders

39

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Blocks

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-08-26
*/

/**
 *Submitted for verification at Etherscan.io on 2019-07-24
*/

pragma solidity ^0.5.17;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title Secondary
 * @dev A Secondary contract can only be used by its primary account (the one that created it)
 */
contract Secondary {
    address private _primary;

    event PrimaryTransferred(
        address recipient
    );

    /**
     * @dev Sets the primary account to the one that is creating the Secondary contract.
     */
    constructor () internal {
        _primary = msg.sender;
        emit PrimaryTransferred(_primary);
    }

    /**
     * @dev Reverts if called from any account other than the primary.
     */
    modifier onlyPrimary() {
        require(msg.sender == _primary);
        _;
    }

    /**
     * @return the address of the primary.
     */
    function primary() public view returns (address) {
        return _primary;
    }

    /**
     * @dev Transfers contract to a new primary.
     * @param recipient The address of new primary.
     */
    function transferPrimary(address recipient) public onlyPrimary {
        require(recipient != address(0));
        _primary = recipient;
        emit PrimaryTransferred(_primary);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC20\IERC20.sol
/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */

interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: node_modules\openzeppelin-solidity\contracts\math\SafeMath.sol


/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on 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);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}


// File: node_modules\openzeppelin-solidity\contracts\token\ERC20\ERC20.sol
/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token to a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}


// File: openzeppelin-solidity\contracts\token\ERC20\ERC20Burnable.sol
/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The account whose tokens will be burned.
     * @param value uint256 The amount of token to be burned.
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}
// File: node_modules\openzeppelin-solidity\contracts\access\Roles.sol
/**
 * @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(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        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));
        return role.bearer[account];
    }
}

// File: node_modules\openzeppelin-solidity\contracts\access\roles\MinterRole.sol
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));
        _;
    }

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

// File: openzeppelin-solidity\contracts\token\ERC20\ERC20Mintable.sol

/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }
}

// File: contracts\ERC20Frozenable.sol


//truffle-flattener Token.sol
contract ERC20Frozenable is ERC20Burnable, ERC20Mintable, Ownable {
    mapping (address => bool) private _frozenAccount;
    event FrozenFunds(address target, bool frozen);


    function frozenAccount(address _address) public view returns(bool isFrozen) {
        return _frozenAccount[_address];
    }

    function freezeAccount(address target, bool freeze)  public onlyOwner {
        require(_frozenAccount[target] != freeze, "Same as current");
        _frozenAccount[target] = freeze;
        emit FrozenFunds(target, freeze);
    }

    function _transfer(address from, address to, uint256 value) internal {
        require(!_frozenAccount[from], "error - frozen");
        require(!_frozenAccount[to], "error - frozen");
        super._transfer(from, to, value);
    }

}

// File: openzeppelin-solidity\contracts\token\ERC20\ERC20Detailed.sol

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

 /**
  * @title Escrow
  * @dev Base escrow contract, holds funds designated for a payee until they
  * withdraw them.
  * @dev Intended usage: This contract (and derived escrow contracts) should be a
  * standalone contract, that only interacts with the contract that instantiated
  * it. That way, it is guaranteed that all Ether will be handled according to
  * the Escrow rules, and there is no need to check for payable functions or
  * transfers in the inheritance tree. The contract that uses the escrow as its
  * payment method should be its primary, and provide public methods redirecting
  * to the escrow's deposit and withdraw.
  */
contract Escrow is Secondary {
    using SafeMath for uint256;

    event Deposited(address indexed payee, uint256 weiAmount);
    event Withdrawn(address indexed payee, uint256 weiAmount);

    mapping(address => uint256) private _deposits;

    function depositsOf(address payee) public view returns (uint256) {
        return _deposits[payee];
    }

    /**
     * @dev Stores the sent amount as credit to be withdrawn.
     * @param payee The destination address of the funds.
     */
    function deposit(address payee) public onlyPrimary payable {
        uint256 amount = msg.value;
        _deposits[payee] = _deposits[payee].add(amount);

        emit Deposited(payee, amount);
    }

    /**
     * @dev Withdraw accumulated balance for a payee.
     * @param payee The address whose funds will be withdrawn and transferred to.
     */
    function withdraw(address payable payee) public onlyPrimary {
        uint256 payment = _deposits[payee];

        _deposits[payee] = 0;

        payee.transfer(payment);

        emit Withdrawn(payee, payment);
    }
}

/**
 * @title PullPayment
 * @dev Base contract supporting async send for pull payments. Inherit from this
 * contract and use _asyncTransfer instead of send or transfer.
 */
contract PullPayment {
    Escrow private _escrow;

    constructor () internal {
        _escrow = new Escrow();
    }

    /**
     * @dev Withdraw accumulated balance.
     * @param payee Whose balance will be withdrawn.
     */
    function withdrawPayments(address payable payee) public {
        _escrow.withdraw(payee);
    }

    /**
     * @dev Returns the credit owed to an address.
     * @param dest The creditor's address.
     */
    function payments(address dest) public view returns (uint256) {
        return _escrow.depositsOf(dest);
    }

    /**
     * @dev Called by the payer to store the sent amount as credit to be pulled.
     * @param dest The destination address of the funds.
     * @param amount The amount to transfer.
     */
    function _asyncTransfer(address dest, uint256 amount) internal {
        _escrow.deposit.value(amount)(dest);
    }
}

contract PaymentSplitter {
    using SafeMath for uint256;

    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Constructor
     */
    constructor (address[] memory payees, uint256[] memory shares) public payable {
        require(payees.length == shares.length);
        require(payees.length > 0);

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares[i]);
        }
    }

    /**
     * @dev payable fallback
     */
    function () external payable {
        emit PaymentReceived(msg.sender, msg.value);
    }

    /**
     * @return the total shares of the contract.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @return the total amount already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @return the shares of an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @return the amount already released to an account.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @return the address of a payee.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Release one of the payee's proportional payment.
     * @param account Whose payments will be released.
     */
    function release(address payable account) public {
        require(_shares[account] > 0);

        uint256 totalReceived = address(this).balance.add(_totalReleased);
        uint256 payment = totalReceived.mul(_shares[account]).div(_totalShares).sub(_released[account]);

        require(payment != 0);

        _released[account] = _released[account].add(payment);
        _totalReleased = _totalReleased.add(payment);

        account.transfer(payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0));
        require(shares_ > 0);
        require(_shares[account] == 0);

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares.add(shares_);
        emit PayeeAdded(account, shares_);
    }
}

contract ConditionalEscrow is Escrow {
    /**
     * @dev Returns whether an address is allowed to withdraw their funds. To be
     * implemented by derived contracts.
     * @param payee The destination address of the funds.
     */
    function withdrawalAllowed(address payee) public view returns (bool);

    function withdraw(address payable payee) public {
        require(withdrawalAllowed(payee));
        super.withdraw(payee);
    }
}


contract RefundEscrow is ConditionalEscrow {
    enum State { Active, Refunding, Closed }

    event RefundsClosed();
    event RefundsEnabled();

    State private _state;
    address payable private _beneficiary;

    /**
     * @dev Constructor.
     * @param beneficiary The beneficiary of the deposits.
     */
    constructor (address payable beneficiary) public {
        require(beneficiary != address(0));
        _beneficiary = beneficiary;
        _state = State.Active;
    }

    /**
     * @return the current state of the escrow.
     */
    function state() public view returns (State) {
        return _state;
    }

    /**
     * @return the beneficiary of the escrow.
     */
    function beneficiary() public view returns (address) {
        return _beneficiary;
    }

    /**
     * @dev Stores funds that may later be refunded.
     * @param refundee The address funds will be sent to if a refund occurs.
     */
    function deposit(address refundee) public payable {
        require(_state == State.Active);
        super.deposit(refundee);
    }

    /**
     * @dev Allows for the beneficiary to withdraw their funds, rejecting
     * further deposits.
     */
    function close() public onlyPrimary {
        require(_state == State.Active);
        _state = State.Closed;
        emit RefundsClosed();
    }

    /**
     * @dev Allows for refunds to take place, rejecting further deposits.
     */
    function enableRefunds() public onlyPrimary {
        require(_state == State.Active);
        _state = State.Refunding;
        emit RefundsEnabled();
    }

    /**
     * @dev Withdraws the beneficiary's funds.
     */
    function beneficiaryWithdraw() public {
        require(_state == State.Closed);
        _beneficiary.transfer(address(this).balance);
    }

    /**
     * @dev Returns whether refundees can withdraw their deposits (be refunded). The overridden function receives a
     * 'payee' argument, but we ignore it here since the condition is global, not per-payee.
     */
    function withdrawalAllowed(address) public view returns (bool) {
        return _state == State.Refunding;
    }
}
// File: contracts\Token.sol
//truffle-flattener Token.sol
contract Blocks is ERC20Frozenable, ERC20Detailed {

    constructor()
    ERC20Detailed("Frutti Dino", "FDT", 18)
    public {
        uint256 supply = 1000000000;
        uint256 initialSupply = supply * uint(10) ** decimals();
        _mint(msg.sender, initialSupply);
    }
}

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"frozen","type":"bool"}],"name":"FrozenFunds","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","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":"target","type":"address"},{"internalType":"bool","name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"frozenAccount","outputs":[{"internalType":"bool","name":"isFrozen","type":"bool"}],"payable":false,"stateMutability":"view","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":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020016a4672757474692044696e6f60a81b8152506040518060400160405280600381526020016211911560ea1b815250601262000065336200012c60201b60201c565b600480546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620000c6906006906020860190620002ea565b508151620000dc906007906020850190620002ea565b506008805460ff191660ff9290921691909117905550633b9aca0090506000620001056200017e565b60ff16600a0a820290506200012433826001600160e01b036200018816565b50506200038c565b620001478160036200024160201b62000e311790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60085460ff165b90565b6001600160a01b0382166200019c57600080fd5b620001b8816002546200029a60201b62000a851790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001eb91839062000a856200029a821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0381166200025557600080fd5b6200026a82826001600160e01b03620002b416565b156200027557600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620002ad57600080fd5b9392505050565b60006001600160a01b038216620002ca57600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032d57805160ff19168380011785556200035d565b828001600101855582156200035d579182015b828111156200035d57825182559160200191906001019062000340565b506200036b9291506200036f565b5090565b6200018591905b808211156200036b576000815560010162000376565b610efa806200039c6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063a9059cbb1161007c578063a9059cbb146103dc578063aa271e1a14610408578063b414d4b61461042e578063dd62ed3e14610454578063e724529c14610482578063f2fde38b146104b05761014d565b80638da5cb5b1461034e5780638f32d59b1461037257806395d89b411461037a578063983b2d561461038257806398650275146103a8578063a457c2d7146103b05761014d565b80633950935111610115578063395093511461027d57806340c10f19146102a957806342966c68146102d557806370a08231146102f4578063715018a61461031a57806379cc6790146103225761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd14610229578063313ce5671461025f575b600080fd5b61015a6104d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b03813516906020013561056c565b604080519115158252519081900360200190f35b610217610582565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b03813581169160208101359091169060400135610588565b6102676105df565b6040805160ff9092168252519081900360200190f35b6101fb6004803603604081101561029357600080fd5b506001600160a01b0381351690602001356105e8565b6101fb600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610624565b6102f2600480360360208110156102eb57600080fd5b5035610642565b005b6102176004803603602081101561030a57600080fd5b50356001600160a01b031661064f565b6102f261066a565b6102f26004803603604081101561033857600080fd5b506001600160a01b0381351690602001356106c5565b6103566106d3565b604080516001600160a01b039092168252519081900360200190f35b6101fb6106e2565b61015a6106f3565b6102f26004803603602081101561039857600080fd5b50356001600160a01b0316610754565b6102f261076f565b6101fb600480360360408110156103c657600080fd5b506001600160a01b03813516906020013561077a565b6101fb600480360360408110156103f257600080fd5b506001600160a01b0381351690602001356107b6565b6101fb6004803603602081101561041e57600080fd5b50356001600160a01b03166107c3565b6101fb6004803603602081101561044457600080fd5b50356001600160a01b03166107dc565b6102176004803603604081101561046a57600080fd5b506001600160a01b03813581169160200135166107fa565b6102f26004803603604081101561049857600080fd5b506001600160a01b0381351690602001351515610825565b6102f2600480360360208110156104c657600080fd5b50356001600160a01b0316610900565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b600061057933848461091a565b50600192915050565b60025490565b60006105958484846109a2565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546105d59186916105d0908663ffffffff610a7016565b61091a565b5060019392505050565b60085460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105799185906105d0908663ffffffff610a8516565b600061062f336107c3565b61063857600080fd5b6105798383610a9e565b61064c3382610b46565b50565b6001600160a01b031660009081526020819052604090205490565b6106726106e2565b61067b57600080fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b6106cf8282610bed565b5050565b6004546001600160a01b031690565b6004546001600160a01b0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105625780601f1061053757610100808354040283529160200191610562565b61075d336107c3565b61076657600080fd5b61064c81610c32565b61077833610c7a565b565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105799185906105d0908663ffffffff610a7016565b60006105793384846109a2565b60006107d660038363ffffffff610cc216565b92915050565b6001600160a01b031660009081526005602052604090205460ff1690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61082d6106e2565b61083657600080fd5b6001600160a01b03821660009081526005602052604090205460ff161515811515141561089c576040805162461bcd60e51b815260206004820152600f60248201526e14d85b5948185cc818dd5c9c995b9d608a1b604482015290519081900360640190fd5b6001600160a01b038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6109086106e2565b61091157600080fd5b61064c81610cf7565b6001600160a01b03821661092d57600080fd5b6001600160a01b03831661094057600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526005602052604090205460ff1615610a01576040805162461bcd60e51b815260206004820152600e60248201526d32b93937b9101690333937bd32b760911b604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090205460ff1615610a60576040805162461bcd60e51b815260206004820152600e60248201526d32b93937b9101690333937bd32b760911b604482015290519081900360640190fd5b610a6b838383610d66565b505050565b600082821115610a7f57600080fd5b50900390565b600082820183811015610a9757600080fd5b9392505050565b6001600160a01b038216610ab157600080fd5b600254610ac4908263ffffffff610a8516565b6002556001600160a01b038216600090815260208190526040902054610af0908263ffffffff610a8516565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610b5957600080fd5b600254610b6c908263ffffffff610a7016565b6002556001600160a01b038216600090815260208190526040902054610b98908263ffffffff610a7016565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610bf78282610b46565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546106cf9184916105d0908563ffffffff610a7016565b610c4360038263ffffffff610e3116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610c8b60038263ffffffff610e7d16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610cd757600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038116610d0a57600080fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610d7957600080fd5b6001600160a01b038316600090815260208190526040902054610da2908263ffffffff610a7016565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dd7908263ffffffff610a8516565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038116610e4457600080fd5b610e4e8282610cc2565b15610e5857600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038116610e9057600080fd5b610e9a8282610cc2565b610ea357600080fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fea265627a7a7231582012afaeb4116224eeaba5c401c8f97366202e81bc9be4c538e2ce362f1f5db1c264736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063a9059cbb1161007c578063a9059cbb146103dc578063aa271e1a14610408578063b414d4b61461042e578063dd62ed3e14610454578063e724529c14610482578063f2fde38b146104b05761014d565b80638da5cb5b1461034e5780638f32d59b1461037257806395d89b411461037a578063983b2d561461038257806398650275146103a8578063a457c2d7146103b05761014d565b80633950935111610115578063395093511461027d57806340c10f19146102a957806342966c68146102d557806370a08231146102f4578063715018a61461031a57806379cc6790146103225761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd14610229578063313ce5671461025f575b600080fd5b61015a6104d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b03813516906020013561056c565b604080519115158252519081900360200190f35b610217610582565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b03813581169160208101359091169060400135610588565b6102676105df565b6040805160ff9092168252519081900360200190f35b6101fb6004803603604081101561029357600080fd5b506001600160a01b0381351690602001356105e8565b6101fb600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610624565b6102f2600480360360208110156102eb57600080fd5b5035610642565b005b6102176004803603602081101561030a57600080fd5b50356001600160a01b031661064f565b6102f261066a565b6102f26004803603604081101561033857600080fd5b506001600160a01b0381351690602001356106c5565b6103566106d3565b604080516001600160a01b039092168252519081900360200190f35b6101fb6106e2565b61015a6106f3565b6102f26004803603602081101561039857600080fd5b50356001600160a01b0316610754565b6102f261076f565b6101fb600480360360408110156103c657600080fd5b506001600160a01b03813516906020013561077a565b6101fb600480360360408110156103f257600080fd5b506001600160a01b0381351690602001356107b6565b6101fb6004803603602081101561041e57600080fd5b50356001600160a01b03166107c3565b6101fb6004803603602081101561044457600080fd5b50356001600160a01b03166107dc565b6102176004803603604081101561046a57600080fd5b506001600160a01b03813581169160200135166107fa565b6102f26004803603604081101561049857600080fd5b506001600160a01b0381351690602001351515610825565b6102f2600480360360208110156104c657600080fd5b50356001600160a01b0316610900565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b600061057933848461091a565b50600192915050565b60025490565b60006105958484846109a2565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546105d59186916105d0908663ffffffff610a7016565b61091a565b5060019392505050565b60085460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105799185906105d0908663ffffffff610a8516565b600061062f336107c3565b61063857600080fd5b6105798383610a9e565b61064c3382610b46565b50565b6001600160a01b031660009081526020819052604090205490565b6106726106e2565b61067b57600080fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b6106cf8282610bed565b5050565b6004546001600160a01b031690565b6004546001600160a01b0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105625780601f1061053757610100808354040283529160200191610562565b61075d336107c3565b61076657600080fd5b61064c81610c32565b61077833610c7a565b565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105799185906105d0908663ffffffff610a7016565b60006105793384846109a2565b60006107d660038363ffffffff610cc216565b92915050565b6001600160a01b031660009081526005602052604090205460ff1690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61082d6106e2565b61083657600080fd5b6001600160a01b03821660009081526005602052604090205460ff161515811515141561089c576040805162461bcd60e51b815260206004820152600f60248201526e14d85b5948185cc818dd5c9c995b9d608a1b604482015290519081900360640190fd5b6001600160a01b038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b6109086106e2565b61091157600080fd5b61064c81610cf7565b6001600160a01b03821661092d57600080fd5b6001600160a01b03831661094057600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526005602052604090205460ff1615610a01576040805162461bcd60e51b815260206004820152600e60248201526d32b93937b9101690333937bd32b760911b604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090205460ff1615610a60576040805162461bcd60e51b815260206004820152600e60248201526d32b93937b9101690333937bd32b760911b604482015290519081900360640190fd5b610a6b838383610d66565b505050565b600082821115610a7f57600080fd5b50900390565b600082820183811015610a9757600080fd5b9392505050565b6001600160a01b038216610ab157600080fd5b600254610ac4908263ffffffff610a8516565b6002556001600160a01b038216600090815260208190526040902054610af0908263ffffffff610a8516565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610b5957600080fd5b600254610b6c908263ffffffff610a7016565b6002556001600160a01b038216600090815260208190526040902054610b98908263ffffffff610a7016565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610bf78282610b46565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546106cf9184916105d0908563ffffffff610a7016565b610c4360038263ffffffff610e3116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610c8b60038263ffffffff610e7d16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610cd757600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038116610d0a57600080fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610d7957600080fd5b6001600160a01b038316600090815260208190526040902054610da2908263ffffffff610a7016565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dd7908263ffffffff610a8516565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038116610e4457600080fd5b610e4e8282610cc2565b15610e5857600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038116610e9057600080fd5b610e9a8282610cc2565b610ea357600080fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fea265627a7a7231582012afaeb4116224eeaba5c401c8f97366202e81bc9be4c538e2ce362f1f5db1c264736f6c63430005110032

Deployed Bytecode Sourcemap

28649:288:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28649:288:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19622: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;19622:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9628:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9628:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7781:91;;;:::i;:::-;;;;;;;;;;;;;;;;10249:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10249:228:0;;;;;;;;;;;;;;;;;:::i;19938:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11003:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11003:203:0;;;;;;;;:::i;17930:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17930:131:0;;;;;;;;:::i;15008:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15008:79:0;;:::i;:::-;;8091:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8091:106:0;-1:-1:-1;;;;;8091:106:0;;:::i;1545:140::-;;;:::i;15341:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15341:95:0;;;;;;;;:::i;755:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;755:79:0;;;;;;;;;;;;;;1090:92;;;:::i;19772:87::-;;;:::i;17042:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17042:92:0;-1:-1:-1;;;;;17042:92:0;;:::i;17142:77::-;;;:::i;11737:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11737:213:0;;;;;;;;:::i;8841:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8841:140:0;;;;;;;;:::i;16925:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16925:109:0;-1:-1:-1;;;;;16925:109:0;;:::i;18328:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18328:126:0;-1:-1:-1;;;;;18328:126:0;;:::i;8536:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8536:131:0;;;;;;;;;;:::i;18462:234::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18462:234:0;;;;;;;;;;:::i;1862:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1862:109:0;-1:-1:-1;;;;;1862:109:0;;:::i;19622:83::-;19692:5;19685:12;;;;;;;;-1:-1:-1;;19685:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19659:13;;19685:12;;19692:5;;19685:12;;19692:5;19685:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19622:83;:::o;9628:148::-;9693:4;9710:36;9719:10;9731:7;9740:5;9710:8;:36::i;:::-;-1:-1:-1;9764:4:0;9628:148;;;;:::o;7781:91::-;7852:12;;7781:91;:::o;10249:228::-;10328:4;10345:26;10355:4;10361:2;10365:5;10345:9;:26::i;:::-;-1:-1:-1;;;;;10409:14:0;;;;;;:8;:14;;;;;;;;10397:10;10409:26;;;;;;;;;10382:65;;10391:4;;10409:37;;10440:5;10409:37;:30;:37;:::i;:::-;10382:8;:65::i;:::-;-1:-1:-1;10465:4:0;10249:228;;;;;:::o;19938:83::-;20004:9;;;;19938:83;:::o;11003:203::-;11109:10;11083:4;11130:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11130:29:0;;;;;;;;;;11083:4;;11100:76;;11121:7;;11130:45;;11164:10;11130:45;:33;:45;:::i;17930:131::-;17998:4;16876:20;16885:10;16876:8;:20::i;:::-;16868:29;;;;;;18015:16;18021:2;18025:5;18015;:16::i;15008:79::-;15055:24;15061:10;15073:5;15055;:24::i;:::-;15008:79;:::o;8091:106::-;-1:-1:-1;;;;;8173:16:0;8146:7;8173:16;;;;;;;;;;;;8091:106::o;1545:140::-;967:9;:7;:9::i;:::-;959:18;;;;;;1628:6;;1607:40;;1644:1;;-1:-1:-1;;;;;1628:6:0;;1607:40;;1644:1;;1607:40;1658:6;:19;;-1:-1:-1;;;;;;1658:19:0;;;1545:140::o;15341:95::-;15406:22;15416:4;15422:5;15406:9;:22::i;:::-;15341:95;;:::o;755:79::-;820:6;;-1:-1:-1;;;;;820:6:0;755:79;:::o;1090:92::-;1168:6;;-1:-1:-1;;;;;1168:6:0;1154:10;:20;;1090:92::o;19772:87::-;19844:7;19837:14;;;;;;;;-1:-1:-1;;19837:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19811:13;;19837:14;;19844:7;;19837:14;;19844:7;19837:14;;;;;;;;;;;;;;;;;;;;;;;;17042:92;16876:20;16885:10;16876:8;:20::i;:::-;16868:29;;;;;;17107:19;17118:7;17107:10;:19::i;17142:77::-;17186:25;17200:10;17186:13;:25::i;:::-;17142:77::o;11737:213::-;11848:10;11822:4;11869:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11869:29:0;;;;;;;;;;11822:4;;11839:81;;11860:7;;11869:50;;11903:15;11869:50;:33;:50;:::i;8841:140::-;8902:4;8919:32;8929:10;8941:2;8945:5;8919:9;:32::i;16925:109::-;16981:4;17005:21;:8;17018:7;17005:21;:12;:21;:::i;:::-;16998:28;16925:109;-1:-1:-1;;16925:109:0:o;18328:126::-;-1:-1:-1;;;;;18422:24:0;18389:13;18422:24;;;:14;:24;;;;;;;;;18328:126::o;8536:131::-;-1:-1:-1;;;;;8635:15:0;;;8608:7;8635:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;8536:131::o;18462:234::-;967:9;:7;:9::i;:::-;959:18;;;;;;-1:-1:-1;;;;;18551:22:0;;;;;;:14;:22;;;;;;;;:32;;;;;;;18543:60;;;;;-1:-1:-1;;;18543:60:0;;;;;;;;;;;;-1:-1:-1;;;18543:60:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18614:22:0;;;;;;:14;:22;;;;;;;;;:31;;-1:-1:-1;;18614:31:0;;;;;;;;;;18661:27;;;;;;;;;;;;;;;;;;;;;18462:234;;:::o;1862:109::-;967:9;:7;:9::i;:::-;959:18;;;;;;1935:28;1954:8;1935:18;:28::i;13836:254::-;-1:-1:-1;;;;;13929:21:0;;13921:30;;;;;;-1:-1:-1;;;;;13970:19:0;;13962:28;;;;;;-1:-1:-1;;;;;14003:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;14051:31;;;;;;;;;;;;;;;;;13836:254;;;:::o;18704:236::-;-1:-1:-1;;;;;18793:20:0;;;;;;:14;:20;;;;;;;;18792:21;18784:48;;;;;-1:-1:-1;;;18784:48:0;;;;;;;;;;;;-1:-1:-1;;;18784:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18852:18:0;;;;;;:14;:18;;;;;;;;18851:19;18843:46;;;;;-1:-1:-1;;;18843:46:0;;;;;;;;;;;;-1:-1:-1;;;18843:46:0;;;;;;;;;;;;;;;18900:32;18916:4;18922:2;18926:5;18900:15;:32::i;:::-;18704:236;;;:::o;5587:150::-;5645:7;5678:1;5673;:6;;5665:15;;;;;;-1:-1:-1;5703:5:0;;;5587:150::o;5825:::-;5883:7;5915:5;;;5939:6;;;;5931:15;;;;;;5966:1;5825:150;-1:-1:-1;;;5825:150:0:o;12791:269::-;-1:-1:-1;;;;;12866:21:0;;12858:30;;;;;;12916:12;;:23;;12933:5;12916:23;:16;:23;:::i;:::-;12901:12;:38;-1:-1:-1;;;;;12971:18:0;;:9;:18;;;;;;;;;;;:29;;12994:5;12971:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12950:18:0;;:9;:18;;;;;;;;;;;:50;;;;13016:36;;;;;;;12950:18;;:9;;13016:36;;;;;;;;;;12791:269;;:::o;13294:::-;-1:-1:-1;;;;;13369:21:0;;13361:30;;;;;;13419:12;;:23;;13436:5;13419:23;:16;:23;:::i;:::-;13404:12;:38;-1:-1:-1;;;;;13474:18:0;;:9;:18;;;;;;;;;;;:29;;13497:5;13474:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13453:18:0;;:9;:18;;;;;;;;;;;:50;;;;13519:36;;;;;;;13453:9;;13519:36;;;;;;;;;;;13294:269;;:::o;14489:182::-;14560:21;14566:7;14575:5;14560;:21::i;:::-;-1:-1:-1;;;;;14622:17:0;;;;;;:8;:17;;;;;;;;14610:10;14622:29;;;;;;;;;14592:71;;14601:7;;14622:40;;14656:5;14622:40;:33;:40;:::i;17227:122::-;17284:21;:8;17297:7;17284:21;:12;:21;:::i;:::-;17321:20;;-1:-1:-1;;;;;17321:20:0;;;;;;;;17227:122;:::o;17357:130::-;17417:24;:8;17433:7;17417:24;:15;:24;:::i;:::-;17457:22;;-1:-1:-1;;;;;17457:22:0;;;;;;;;17357:130;:::o;16307:165::-;16379:4;-1:-1:-1;;;;;16404:21:0;;16396:30;;;;;;-1:-1:-1;;;;;;16444:20:0;:11;:20;;;;;;;;;;;;;;;16307:165::o;2121:187::-;-1:-1:-1;;;;;2195:22:0;;2187:31;;;;;;2255:6;;2234:38;;-1:-1:-1;;;;;2234:38:0;;;;2255:6;;2234:38;;2255:6;;2234:38;2283:6;:17;;-1:-1:-1;;;;;;2283:17:0;-1:-1:-1;;;;;2283:17:0;;;;;;;;;;2121:187::o;12177:262::-;-1:-1:-1;;;;;12265:16:0;;12257:25;;;;;;-1:-1:-1;;;;;12313:15:0;;:9;:15;;;;;;;;;;;:26;;12333:5;12313:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;12295:15:0;;;:9;:15;;;;;;;;;;;:44;;;;12366:13;;;;;;;:24;;12384:5;12366:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;12350:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;12406:25;;;;;;;12350:13;;12406:25;;;;;;;;;;;;;12177:262;;;:::o;15759:186::-;-1:-1:-1;;;;;15836:21:0;;15828:30;;;;;;15878:18;15882:4;15888:7;15878:3;:18::i;:::-;15877:19;15869:28;;;;;;-1:-1:-1;;;;;15910:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;15910:27:0;15933:4;15910:27;;;15759:186::o;16024:189::-;-1:-1:-1;;;;;16104:21:0;;16096:30;;;;;;16145:18;16149:4;16155:7;16145:3;:18::i;:::-;16137:27;;;;;;-1:-1:-1;;;;;16177:20:0;16200:5;16177:20;;;;;;;;;;;:28;;-1:-1:-1;;16177:28:0;;;16024:189::o

Swarm Source

bzzr://12afaeb4116224eeaba5c401c8f97366202e81bc9be4c538e2ce362f1f5db1c2
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.