ETH Price: $2,181.16 (-6.82%)

Token

Drom Finance (Drom)
 

Overview

Max Total Supply

1,128.318750000000001442 Drom

Holders

4

Transfers

-
-

Market

Onchain Market Cap

-

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:
DromToken

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-11-06
*/

/***
* MIT License
* ===========
*
* Copyright (c) 2020 Drom
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
// 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// 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.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: contracts/library/Governance.sol

pragma solidity ^0.5.5;

contract Governance {

    address public governance;

    constructor() public {
        governance = tx.origin;
    }

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

    modifier onlyGovernance {
        require(msg.sender == governance, "not governance");
        _;
    }

    function setGovernance(address _governance)  public  onlyGovernance
    {
        require(_governance != address(0), "new governance the zero address");
        emit GovernanceTransferred(governance, _governance);
        governance = _governance;
    }



}

// File: contracts/token/DromToken.sol

pragma solidity ^0.5.5;




/// @title DromToken Contract

contract DromToken is Governance, ERC20Detailed{

    using SafeMath for uint256;

    //events
    event eveSetRate(uint256 burn_rate, uint256 reward_rate);
    event eveRewardPool(address rewardPool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Mint(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    // for minters
    mapping (address => bool) public _minters;

    //token base data
    uint256 internal _totalSupply;
    mapping(address => uint256) public _balances;
    mapping (address => mapping (address => uint256)) public _allowances;

    /// Constant token specific fields
    uint256 public  _maxSupply = 0;

    ///
    bool public _openTransfer = false;

    // hardcode limit rate
    uint256 public constant _maxGovernValueRate = 2000;//2000/10000
    uint256 public constant _minGovernValueRate = 10;  //10/10000
    uint256 public constant _rateBase = 10000; 

    // additional variables for use if transaction fees ever became necessary
    uint256 public  _burnRate = 250;       
    uint256 public  _rewardRate = 250;   

    uint256 public _totalBurnToken = 0;
    uint256 public _totalRewardToken = 0;

    //todo reward pool!
    address public _rewardPool = 0xca0489338D698a1a6591C4F396A6D567017A4945;
    //todo burn pool!
    address public _burnPool = 0x6666666666666666666666666666666666666666;

    /**
    * @dev set the token transfer switch
    */
    function enableOpenTransfer() public onlyGovernance  
    {
        _openTransfer = true;
    }


    /**
     * CONSTRUCTOR
     *
     * @dev Initialize the Token
     */

    constructor () public ERC20Detailed("Drom Finance", "Drom", 18) {
         _maxSupply = 21000000 * (10**18);
    }


    
    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    * @param spender The address which will spend the funds.
    * @param amount The amount of tokens to be spent.
    */
    function approve(address spender, uint256 amount) external 
    returns (bool) 
    {
        require(msg.sender != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);

        return true;
    }

    /**
    * @dev Function to check the amount of tokens than 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) external view 
    returns (uint256) 
    {
        return _allowances[owner][spender];
    }

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

    /**
    * @dev return the token total supply
    */
    function totalSupply() external view 
    returns (uint256) 
    {
        return _totalSupply;
    }

    /**
    * @dev for mint function
    */
    function mint(address account, uint256 amount) external 
    {
        require(account != address(0), "ERC20: mint to the zero address");
        require(_minters[msg.sender], "!minter");

        uint256 curMintSupply = _totalSupply.add(_totalBurnToken);
        uint256 newMintSupply = curMintSupply.add(amount);
        require( newMintSupply <= _maxSupply,"supply is max!");
      
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);

        emit Mint(address(0), account, amount);
        emit Transfer(address(0), account, amount);
    }

    function addMinter(address _minter) public onlyGovernance 
    {
        _minters[_minter] = true;
    }
    
    function removeMinter(address _minter) public onlyGovernance 
    {
        _minters[_minter] = false;
    }
    

    function() external payable {
        revert();
    }

    /**
    * @dev for govern value
    */
    function setRate(uint256 burn_rate, uint256 reward_rate) public 
        onlyGovernance 
    {
        
        require(_maxGovernValueRate >= burn_rate && burn_rate >= _minGovernValueRate,"invalid burn rate");
        require(_maxGovernValueRate >= reward_rate && reward_rate >= _minGovernValueRate,"invalid reward rate");

        _burnRate = burn_rate;
        _rewardRate = reward_rate;

        emit eveSetRate(burn_rate, reward_rate);
    }


    /**
    * @dev for set reward
    */
    function setRewardPool(address rewardPool) public 
        onlyGovernance 
    {
        require(rewardPool != address(0x0));

        _rewardPool = rewardPool;

        emit eveRewardPool(_rewardPool);
    }
    /**
    * @dev transfer token for a specified address
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
   function transfer(address to, uint256 value) external 
   returns (bool)  
   {
        return _transfer(msg.sender,to,value);
    }

    /**
    * @dev Transfer tokens from one address to another
    * @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) external 
    returns (bool) 
    {
        uint256 allow = _allowances[from][msg.sender];
        _allowances[from][msg.sender] = allow.sub(value);
        
        return _transfer(from,to,value);
    }

 

    /**
    * @dev Transfer tokens with fee
    * @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 uint256s the amount of tokens to be transferred
    */
    function _transfer(address from, address to, uint256 value) internal 
    returns (bool) 
    {
        // :)
        require(_openTransfer || from == governance, "transfer closed");

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 sendAmount = value;
        uint256 burnFee = (value.mul(_burnRate)).div(_rateBase);
        if (burnFee > 0) {
            //to burn
            _balances[_burnPool] = _balances[_burnPool].add(burnFee);
            _totalSupply = _totalSupply.sub(burnFee);
            sendAmount = sendAmount.sub(burnFee);

            _totalBurnToken = _totalBurnToken.add(burnFee);

            emit Transfer(from, _burnPool, burnFee);
        }

        uint256 rewardFee = (value.mul(_rewardRate)).div(_rateBase);
        if (rewardFee > 0) {
           //to reward
            _balances[_rewardPool] = _balances[_rewardPool].add(rewardFee);
            sendAmount = sendAmount.sub(rewardFee);

            _totalRewardToken = _totalRewardToken.add(rewardFee);

            emit Transfer(from, _rewardPool, rewardFee);
        }

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(sendAmount);

        emit Transfer(from, to, sendAmount);

        return true;
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"_allowances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"enableOpenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_maxSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_burnPool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalBurnToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"_minters","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"burn_rate","type":"uint256"},{"name":"reward_rate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalRewardToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_rewardRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"_balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_rateBase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"rewardPool","type":"address"}],"name":"setRewardPool","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_burnRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_minGovernValueRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_openTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_rewardPool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maxGovernValueRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burn_rate","type":"uint256"},{"indexed":false,"name":"reward_rate","type":"uint256"}],"name":"eveSetRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"rewardPool","type":"address"}],"name":"eveRewardPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"GovernanceTransferred","type":"event"}]

6080604052600060088190556009805460ff1916905560fa600a819055600b55600c819055600d55600e80546001600160a01b031990811673ca0489338d698a1a6591c4f396a6d567017a494517909155600f80549091167366666666666666666666666666666666666666661790553480156200007c57600080fd5b50604080518082018252600c81527f44726f6d2046696e616e6365000000000000000000000000000000000000000060208083019182528351808501909452600484527f44726f6d0000000000000000000000000000000000000000000000000000000090840152600080546001600160a01b0319163217905581519192916012916200010d91600191906200014f565b508151620001239060029060208501906200014f565b506003805460ff191660ff9290921691909117905550506a115eec47f6cf7e35000000600855620001f4565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b620001f191905b80821115620001d05760008155600101620001db565b90565b61172980620002046000396000f3fe6080604052600436106101d85760003560e01c80635aa6e6751161010257806395d89b4111610095578063bde8e9fa11610064578063bde8e9fa14610690578063dc7ced3d146106a5578063dd62ed3e146106ba578063e312848f146106f5576101d8565b806395d89b41146105dc578063983b2d56146105f1578063a9059cbb14610624578063ab033ea91461065d576101d8565b8063775e1377116100d1578063775e13771461056a57806378238c371461057f57806379138df1146105b25780638afefd88146105c7576101d8565b80635aa6e675146104da57806368fd25cd146104ef5780636ebcf6071461050457806370a0823114610537576101d8565b806328d2bc911161017a5780633575597d116101495780633575597d1461042957806340c10f191461045c57806346df2ccb1461049557806353c76e13146104c5576101d8565b806328d2bc91146103855780632d201af0146103b65780633092afd5146103cb578063313ce567146103fe576101d8565b806318160ddd116101b657806318160ddd146103015780631ae6ddec1461031657806322f4596f1461032d57806323b872dd14610342576101d8565b8063024c2ddd146101dd57806306fdde031461022a578063095ea7b3146102b4575b600080fd5b3480156101e957600080fd5b506102186004803603604081101561020057600080fd5b506001600160a01b038135811691602001351661070a565b60408051918252519081900360200190f35b34801561023657600080fd5b5061023f610727565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610279578181015183820152602001610261565b50505050905090810190601f1680156102a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c057600080fd5b506102ed600480360360408110156102d757600080fd5b506001600160a01b0381351690602001356107bc565b604080519115158252519081900360200190f35b34801561030d57600080fd5b506102186108a7565b34801561032257600080fd5b5061032b6108ad565b005b34801561033957600080fd5b5061021861090c565b34801561034e57600080fd5b506102ed6004803603606081101561036557600080fd5b506001600160a01b03813581169160208101359091169060400135610912565b34801561039157600080fd5b5061039a61097e565b604080516001600160a01b039092168252519081900360200190f35b3480156103c257600080fd5b5061021861098d565b3480156103d757600080fd5b5061032b600480360360208110156103ee57600080fd5b50356001600160a01b0316610993565b34801561040a57600080fd5b50610413610a04565b6040805160ff9092168252519081900360200190f35b34801561043557600080fd5b506102ed6004803603602081101561044c57600080fd5b50356001600160a01b0316610a0d565b34801561046857600080fd5b5061032b6004803603604081101561047f57600080fd5b506001600160a01b038135169060200135610a22565b3480156104a157600080fd5b5061032b600480360360408110156104b857600080fd5b5080359060200135610c0a565b3480156104d157600080fd5b50610218610d55565b3480156104e657600080fd5b5061039a610d5b565b3480156104fb57600080fd5b50610218610d6a565b34801561051057600080fd5b506102186004803603602081101561052757600080fd5b50356001600160a01b0316610d70565b34801561054357600080fd5b506102186004803603602081101561055a57600080fd5b50356001600160a01b0316610d82565b34801561057657600080fd5b50610218610d9d565b34801561058b57600080fd5b5061032b600480360360208110156105a257600080fd5b50356001600160a01b0316610da3565b3480156105be57600080fd5b50610218610e60565b3480156105d357600080fd5b50610218610e66565b3480156105e857600080fd5b5061023f610e6b565b3480156105fd57600080fd5b5061032b6004803603602081101561061457600080fd5b50356001600160a01b0316610ec9565b34801561063057600080fd5b506102ed6004803603604081101561064757600080fd5b506001600160a01b038135169060200135610f3d565b34801561066957600080fd5b5061032b6004803603602081101561068057600080fd5b50356001600160a01b0316610f51565b34801561069c57600080fd5b506102ed611057565b3480156106b157600080fd5b5061039a611060565b3480156106c657600080fd5b50610218600480360360408110156106dd57600080fd5b506001600160a01b038135811691602001351661106f565b34801561070157600080fd5b5061021861109a565b600760209081526000928352604080842090915290825290205481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b6000336107fa5760405162461bcd60e51b81526004018080602001828103825260248152602001806116d16024913960400191505060405180910390fd5b6001600160a01b03831661083f5760405162461bcd60e51b81526004018080602001828103825260228152602001806116496022913960400191505060405180910390fd5b3360008181526007602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60055490565b6000546001600160a01b031633146108fd576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6009805460ff19166001179055565b60085481565b6001600160a01b0383166000908152600760209081526040808320338452909152812054610946818463ffffffff6110a016565b6001600160a01b03861660009081526007602090815260408083203384529091529020556109758585856110e2565b95945050505050565b600f546001600160a01b031681565b600c5481565b6000546001600160a01b031633146109e3576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b60035460ff1690565b60046020526000908152604090205460ff1681565b6001600160a01b038216610a7d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b3360009081526004602052604090205460ff16610acb576040805162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b604482015290519081900360640190fd5b6000610ae4600c5460055461143990919063ffffffff16565b90506000610af8828463ffffffff61143916565b9050600854811115610b42576040805162461bcd60e51b815260206004820152600e60248201526d737570706c79206973206d61782160901b604482015290519081900360640190fd5b600554610b55908463ffffffff61143916565b6005556001600160a01b038416600090815260066020526040902054610b81908463ffffffff61143916565b6001600160a01b03851660008181526006602090815260408083209490945583518781529351929391927fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89281900390910190a36040805184815290516001600160a01b0386169160009160008051602061168c8339815191529181900360200190a350505050565b6000546001600160a01b03163314610c5a576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b816107d010158015610c6d5750600a8210155b610cb2576040805162461bcd60e51b8152602060048201526011602482015270696e76616c6964206275726e207261746560781b604482015290519081900360640190fd5b806107d010158015610cc55750600a8110155b610d0c576040805162461bcd60e51b8152602060048201526013602482015272696e76616c696420726577617264207261746560681b604482015290519081900360640190fd5b600a829055600b819055604080518381526020810183905281517f99bd43c9924d56731589e9fa71c7f8c709cf5e851306f09f8ceca0ba3eac1be7929181900390910190a15050565b600d5481565b6000546001600160a01b031681565b600b5481565b60066020526000908152604090205481565b6001600160a01b031660009081526006602052604090205490565b61271081565b6000546001600160a01b03163314610df3576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038116610e0657600080fd5b600e80546001600160a01b0319166001600160a01b03838116919091179182905560408051929091168252517f977df9b5dcd6535fed64eaab16d59511d1c7eaf4a8d4a3682b8cb62c207156da916020908290030190a150565b600a5481565b600a81565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156107b25780601f10610787576101008083540402835291602001916107b2565b6000546001600160a01b03163314610f19576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000610f4a3384846110e2565b9392505050565b6000546001600160a01b03163314610fa1576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038116610ffc576040805162461bcd60e51b815260206004820152601f60248201527f6e657720676f7665726e616e636520746865207a65726f206164647265737300604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60095460ff1681565b600e546001600160a01b031681565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6107d081565b6000610f4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611493565b60095460009060ff168061110357506000546001600160a01b038581169116145b611146576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8818db1bdcd959608a1b604482015290519081900360640190fd5b6001600160a01b03841661118b5760405162461bcd60e51b81526004018080602001828103825260258152602001806116ac6025913960400191505060405180910390fd5b6001600160a01b0383166111d05760405162461bcd60e51b81526004018080602001828103825260238152602001806116266023913960400191505060405180910390fd5b600082905060006111fe6127106111f2600a548761152a90919063ffffffff16565b9063ffffffff61158316565b905080156112c057600f546001600160a01b0316600090815260066020526040902054611231908263ffffffff61143916565b600f546001600160a01b031660009081526006602052604090205560055461125f908263ffffffff6110a016565b600555611272828263ffffffff6110a016565b600c54909250611288908263ffffffff61143916565b600c55600f546040805183815290516001600160a01b039283169289169160008051602061168c833981519152919081900360200190a35b60006112dd6127106111f2600b548861152a90919063ffffffff16565b9050801561138957600e546001600160a01b0316600090815260066020526040902054611310908263ffffffff61143916565b600e546001600160a01b031660009081526006602052604090205561133b838263ffffffff6110a016565b600d54909350611351908263ffffffff61143916565b600d55600e546040805183815290516001600160a01b03928316928a169160008051602061168c833981519152919081900360200190a35b6001600160a01b0387166000908152600660205260409020546113b2908663ffffffff6110a016565b6001600160a01b0380891660009081526006602052604080822093909355908816815220546113e7908463ffffffff61143916565b6001600160a01b0380881660008181526006602090815260409182902094909455805187815290519193928b169260008051602061168c83398151915292918290030190a35060019695505050505050565b600082820183811015610f4a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156115225760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114e75781810151838201526020016114cf565b50505050905090810190601f1680156115145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082611539575060006108a1565b8282028284828161154657fe5b0414610f4a5760405162461bcd60e51b815260040180806020018281038252602181526020018061166b6021913960400191505060405180910390fd5b6000610f4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506000818361160f5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114e75781810151838201526020016114cf565b50600083858161161b57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72305820d727a69e662ef203a0a52c9364fa34b89cffc9b70c57d726aceb992a1a31594764736f6c634300050a0032

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80635aa6e6751161010257806395d89b4111610095578063bde8e9fa11610064578063bde8e9fa14610690578063dc7ced3d146106a5578063dd62ed3e146106ba578063e312848f146106f5576101d8565b806395d89b41146105dc578063983b2d56146105f1578063a9059cbb14610624578063ab033ea91461065d576101d8565b8063775e1377116100d1578063775e13771461056a57806378238c371461057f57806379138df1146105b25780638afefd88146105c7576101d8565b80635aa6e675146104da57806368fd25cd146104ef5780636ebcf6071461050457806370a0823114610537576101d8565b806328d2bc911161017a5780633575597d116101495780633575597d1461042957806340c10f191461045c57806346df2ccb1461049557806353c76e13146104c5576101d8565b806328d2bc91146103855780632d201af0146103b65780633092afd5146103cb578063313ce567146103fe576101d8565b806318160ddd116101b657806318160ddd146103015780631ae6ddec1461031657806322f4596f1461032d57806323b872dd14610342576101d8565b8063024c2ddd146101dd57806306fdde031461022a578063095ea7b3146102b4575b600080fd5b3480156101e957600080fd5b506102186004803603604081101561020057600080fd5b506001600160a01b038135811691602001351661070a565b60408051918252519081900360200190f35b34801561023657600080fd5b5061023f610727565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610279578181015183820152602001610261565b50505050905090810190601f1680156102a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c057600080fd5b506102ed600480360360408110156102d757600080fd5b506001600160a01b0381351690602001356107bc565b604080519115158252519081900360200190f35b34801561030d57600080fd5b506102186108a7565b34801561032257600080fd5b5061032b6108ad565b005b34801561033957600080fd5b5061021861090c565b34801561034e57600080fd5b506102ed6004803603606081101561036557600080fd5b506001600160a01b03813581169160208101359091169060400135610912565b34801561039157600080fd5b5061039a61097e565b604080516001600160a01b039092168252519081900360200190f35b3480156103c257600080fd5b5061021861098d565b3480156103d757600080fd5b5061032b600480360360208110156103ee57600080fd5b50356001600160a01b0316610993565b34801561040a57600080fd5b50610413610a04565b6040805160ff9092168252519081900360200190f35b34801561043557600080fd5b506102ed6004803603602081101561044c57600080fd5b50356001600160a01b0316610a0d565b34801561046857600080fd5b5061032b6004803603604081101561047f57600080fd5b506001600160a01b038135169060200135610a22565b3480156104a157600080fd5b5061032b600480360360408110156104b857600080fd5b5080359060200135610c0a565b3480156104d157600080fd5b50610218610d55565b3480156104e657600080fd5b5061039a610d5b565b3480156104fb57600080fd5b50610218610d6a565b34801561051057600080fd5b506102186004803603602081101561052757600080fd5b50356001600160a01b0316610d70565b34801561054357600080fd5b506102186004803603602081101561055a57600080fd5b50356001600160a01b0316610d82565b34801561057657600080fd5b50610218610d9d565b34801561058b57600080fd5b5061032b600480360360208110156105a257600080fd5b50356001600160a01b0316610da3565b3480156105be57600080fd5b50610218610e60565b3480156105d357600080fd5b50610218610e66565b3480156105e857600080fd5b5061023f610e6b565b3480156105fd57600080fd5b5061032b6004803603602081101561061457600080fd5b50356001600160a01b0316610ec9565b34801561063057600080fd5b506102ed6004803603604081101561064757600080fd5b506001600160a01b038135169060200135610f3d565b34801561066957600080fd5b5061032b6004803603602081101561068057600080fd5b50356001600160a01b0316610f51565b34801561069c57600080fd5b506102ed611057565b3480156106b157600080fd5b5061039a611060565b3480156106c657600080fd5b50610218600480360360408110156106dd57600080fd5b506001600160a01b038135811691602001351661106f565b34801561070157600080fd5b5061021861109a565b600760209081526000928352604080842090915290825290205481565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b6000336107fa5760405162461bcd60e51b81526004018080602001828103825260248152602001806116d16024913960400191505060405180910390fd5b6001600160a01b03831661083f5760405162461bcd60e51b81526004018080602001828103825260228152602001806116496022913960400191505060405180910390fd5b3360008181526007602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60055490565b6000546001600160a01b031633146108fd576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6009805460ff19166001179055565b60085481565b6001600160a01b0383166000908152600760209081526040808320338452909152812054610946818463ffffffff6110a016565b6001600160a01b03861660009081526007602090815260408083203384529091529020556109758585856110e2565b95945050505050565b600f546001600160a01b031681565b600c5481565b6000546001600160a01b031633146109e3576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b60035460ff1690565b60046020526000908152604090205460ff1681565b6001600160a01b038216610a7d576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b3360009081526004602052604090205460ff16610acb576040805162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b604482015290519081900360640190fd5b6000610ae4600c5460055461143990919063ffffffff16565b90506000610af8828463ffffffff61143916565b9050600854811115610b42576040805162461bcd60e51b815260206004820152600e60248201526d737570706c79206973206d61782160901b604482015290519081900360640190fd5b600554610b55908463ffffffff61143916565b6005556001600160a01b038416600090815260066020526040902054610b81908463ffffffff61143916565b6001600160a01b03851660008181526006602090815260408083209490945583518781529351929391927fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89281900390910190a36040805184815290516001600160a01b0386169160009160008051602061168c8339815191529181900360200190a350505050565b6000546001600160a01b03163314610c5a576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b816107d010158015610c6d5750600a8210155b610cb2576040805162461bcd60e51b8152602060048201526011602482015270696e76616c6964206275726e207261746560781b604482015290519081900360640190fd5b806107d010158015610cc55750600a8110155b610d0c576040805162461bcd60e51b8152602060048201526013602482015272696e76616c696420726577617264207261746560681b604482015290519081900360640190fd5b600a829055600b819055604080518381526020810183905281517f99bd43c9924d56731589e9fa71c7f8c709cf5e851306f09f8ceca0ba3eac1be7929181900390910190a15050565b600d5481565b6000546001600160a01b031681565b600b5481565b60066020526000908152604090205481565b6001600160a01b031660009081526006602052604090205490565b61271081565b6000546001600160a01b03163314610df3576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038116610e0657600080fd5b600e80546001600160a01b0319166001600160a01b03838116919091179182905560408051929091168252517f977df9b5dcd6535fed64eaab16d59511d1c7eaf4a8d4a3682b8cb62c207156da916020908290030190a150565b600a5481565b600a81565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156107b25780601f10610787576101008083540402835291602001916107b2565b6000546001600160a01b03163314610f19576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000610f4a3384846110e2565b9392505050565b6000546001600160a01b03163314610fa1576040805162461bcd60e51b815260206004820152600e60248201526d6e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038116610ffc576040805162461bcd60e51b815260206004820152601f60248201527f6e657720676f7665726e616e636520746865207a65726f206164647265737300604482015290519081900360640190fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60095460ff1681565b600e546001600160a01b031681565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6107d081565b6000610f4a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611493565b60095460009060ff168061110357506000546001600160a01b038581169116145b611146576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8818db1bdcd959608a1b604482015290519081900360640190fd5b6001600160a01b03841661118b5760405162461bcd60e51b81526004018080602001828103825260258152602001806116ac6025913960400191505060405180910390fd5b6001600160a01b0383166111d05760405162461bcd60e51b81526004018080602001828103825260238152602001806116266023913960400191505060405180910390fd5b600082905060006111fe6127106111f2600a548761152a90919063ffffffff16565b9063ffffffff61158316565b905080156112c057600f546001600160a01b0316600090815260066020526040902054611231908263ffffffff61143916565b600f546001600160a01b031660009081526006602052604090205560055461125f908263ffffffff6110a016565b600555611272828263ffffffff6110a016565b600c54909250611288908263ffffffff61143916565b600c55600f546040805183815290516001600160a01b039283169289169160008051602061168c833981519152919081900360200190a35b60006112dd6127106111f2600b548861152a90919063ffffffff16565b9050801561138957600e546001600160a01b0316600090815260066020526040902054611310908263ffffffff61143916565b600e546001600160a01b031660009081526006602052604090205561133b838263ffffffff6110a016565b600d54909350611351908263ffffffff61143916565b600d55600e546040805183815290516001600160a01b03928316928a169160008051602061168c833981519152919081900360200190a35b6001600160a01b0387166000908152600660205260409020546113b2908663ffffffff6110a016565b6001600160a01b0380891660009081526006602052604080822093909355908816815220546113e7908463ffffffff61143916565b6001600160a01b0380881660008181526006602090815260409182902094909455805187815290519193928b169260008051602061168c83398151915292918290030190a35060019695505050505050565b600082820183811015610f4a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156115225760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114e75781810151838201526020016114cf565b50505050905090810190601f1680156115145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082611539575060006108a1565b8282028284828161154657fe5b0414610f4a5760405162461bcd60e51b815260040180806020018281038252602181526020018061166b6021913960400191505060405180910390fd5b6000610f4a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506000818361160f5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114e75781810151838201526020016114cf565b50600083858161161b57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72305820d727a69e662ef203a0a52c9364fa34b89cffc9b70c57d726aceb992a1a31594764736f6c634300050a0032

Deployed Bytecode Sourcemap

11967:7814:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16445:8;;;12599:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12599:68:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12599:68:0;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10234:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10234:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10234:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14099:388;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14099:388:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14099:388:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15378:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15378:105:0;;;:::i;13539:98::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13539:98:0;;;:::i;:::-;;12716:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12716:30:0;;;:::i;17835:274::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17835:274:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17835:274:0;;;;;;;;;;;;;;;;;:::i;13402:69::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13402:69:0;;;:::i;:::-;;;;-1:-1:-1;;;;;13402:69:0;;;;;;;;;;;;;;13190:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13190:34:0;;;:::i;16281:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16281:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16281:111:0;-1:-1:-1;;;;;16281:111:0;;:::i;11086:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11086:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12439:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12439:41:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12439:41:0;-1:-1:-1;;;;;12439:41:0;;:::i;15538:616::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15538:616:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15538:616:0;;;;;;;;:::i;16515:457::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16515:457:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16515:457:0;;;;;;;:::i;13231:36::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13231:36:0;;;:::i;11277:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11277:25:0;;;:::i;13145:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13145:33:0;;;:::i;12548:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12548:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12548:44:0;-1:-1:-1;;;;;12548:44:0;;:::i;15190:121::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15190:121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15190:121:0;-1:-1:-1;;;;;15190:121:0;;:::i;12970:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12970:41:0;;;:::i;17026:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17026:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17026:216:0;-1:-1:-1;;;;;17026:216:0;;:::i;13100:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13100:31:0;;;:::i;12903:48::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12903:48:0;;;:::i;10436:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10436:87:0;;;:::i;16162:107::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16162:107:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16162:107:0;-1:-1:-1;;;;;16162:107:0;;:::i;17410:136::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17410:136:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17410:136:0;;;;;;;;:::i;11588:258::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11588:258:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11588:258:0;-1:-1:-1;;;;;11588:258:0;;:::i;12764:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12764:33:0;;;:::i;13301:71::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13301:71:0;;;:::i;14822:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14822:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14822:148:0;;;;;;;;;;:::i;12834:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12834:50:0;;;:::i;12599:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;10234:83::-;10304:5;10297:12;;;;;;;;-1:-1:-1;;10297:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10271:13;;10297:12;;10304:5;;10297:12;;10304:5;10297:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10234:83;:::o;14099:388::-;14173:4;14204:10;14196:73;;;;-1:-1:-1;;;14196:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14288:21:0;;14280:68;;;;-1:-1:-1;;;14280:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14373:10;14361:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14361:32:0;;;;;;;;;;;;:41;;;14418:37;;;;;;;14361:32;;14373:10;14418:37;;;;;;;;;;;-1:-1:-1;14475:4:0;14099:388;;;;;:::o;15378:105::-;15463:12;;15378:105;:::o;13539:98::-;11531:10;;-1:-1:-1;;;;;11531:10:0;11517;:24;11509:51;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;;;;13609:13;:20;;-1:-1:-1;;13609:20:0;13625:4;13609:20;;;13539:98::o;12716:30::-;;;;:::o;17835:274::-;-1:-1:-1;;;;;17961:17:0;;17922:4;17961:17;;;:11;:17;;;;;;;;17979:10;17961:29;;;;;;;;18033:16;17961:29;18043:5;18033:16;:9;:16;:::i;:::-;-1:-1:-1;;;;;18001:17:0;;;;;;:11;:17;;;;;;;;18019:10;18001:29;;;;;;;:48;18077:24;18013:4;18092:2;18095:5;18077:9;:24::i;:::-;18070:31;17835:274;-1:-1:-1;;;;;17835:274:0:o;13402:69::-;;;-1:-1:-1;;;;;13402:69:0;;:::o;13190:34::-;;;;:::o;16281:111::-;11531:10;;-1:-1:-1;;;;;11531:10:0;11517;:24;11509:51;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16359:17:0;16379:5;16359:17;;;:8;:17;;;;;:25;;-1:-1:-1;;16359:25:0;;;16281:111::o;11086:83::-;11152:9;;;;11086:83;:::o;12439:41::-;;;;;;;;;;;;;;;:::o;15538:616::-;-1:-1:-1;;;;;15619:21:0;;15611:65;;;;;-1:-1:-1;;;15611:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15704:10;15695:20;;;;:8;:20;;;;;;;;15687:40;;;;;-1:-1:-1;;;15687:40:0;;;;;;;;;;;;-1:-1:-1;;;15687:40:0;;;;;;;;;;;;;;;15740:21;15764:33;15781:15;;15764:12;;:16;;:33;;;;:::i;:::-;15740:57;-1:-1:-1;15808:21:0;15832:25;15740:57;15850:6;15832:25;:17;:25;:::i;:::-;15808:49;;15894:10;;15877:13;:27;;15868:54;;;;;-1:-1:-1;;;15868:54:0;;;;;;;;;;;;-1:-1:-1;;;15868:54:0;;;;;;;;;;;;;;;15956:12;;:24;;15973:6;15956:24;:16;:24;:::i;:::-;15941:12;:39;-1:-1:-1;;;;;16012:18:0;;;;;;:9;:18;;;;;;:30;;16035:6;16012:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15991:18:0;;;;;;:9;:18;;;;;;;;:51;;;;16060:33;;;;;;;15991:18;;;;16060:33;;;;;;;;;;16109:37;;;;;;;;-1:-1:-1;;;;;16109:37:0;;;16126:1;;-1:-1:-1;;;;;;;;;;;16109:37:0;;;;;;;;15538:616;;;;:::o;16515:457::-;11531:10;;-1:-1:-1;;;;;11531:10:0;11517;:24;11509:51;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;;;;16662:9;12880:4;16639:32;;:68;;;;;12949:2;16675:9;:32;;16639:68;16631:97;;;;;-1:-1:-1;;;16631:97:0;;;;;;;;;;;;-1:-1:-1;;;16631:97:0;;;;;;;;;;;;;;;16770:11;12880:4;16747:34;;:72;;;;;12949:2;16785:11;:34;;16747:72;16739:103;;;;;-1:-1:-1;;;16739:103:0;;;;;;;;;;;;-1:-1:-1;;;16739:103:0;;;;;;;;;;;;;;;16855:9;:21;;;16887:11;:25;;;16930:34;;;;;;;;;;;;;;;;;;;;;;;;;16515:457;;:::o;13231:36::-;;;;:::o;11277:25::-;;;-1:-1:-1;;;;;11277:25:0;;:::o;13145:33::-;;;;:::o;12548:44::-;;;;;;;;;;;;;:::o;15190:121::-;-1:-1:-1;;;;;15287:16:0;15254:7;15287:16;;;:9;:16;;;;;;;15190:121::o;12970:41::-;13006:5;12970:41;:::o;17026:216::-;11531:10;;-1:-1:-1;;;;;11531:10:0;11517;:24;11509:51;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17126:26:0;;17118:35;;;;;;17166:11;:24;;-1:-1:-1;;;;;;17166:24:0;-1:-1:-1;;;;;17166:24:0;;;;;;;;;;;17208:26;;;17222:11;;;;17208:26;;;;;;;;;;;;;17026:216;:::o;13100:31::-;;;;:::o;12903:48::-;12949:2;12903:48;:::o;10436:87::-;10508:7;10501:14;;;;;;;-1:-1:-1;;10501:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10475:13;;10501:14;;10508:7;;10501:14;;10508:7;10501:14;;;;;;;;;;;;;;;;;;;;;;;;16162:107;11531:10;;-1:-1:-1;;;;;11531:10:0;11517;:24;11509:51;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16237:17:0;;;;;:8;:17;;;;;:24;;-1:-1:-1;;16237:24:0;16257:4;16237:24;;;16162:107::o;17410:136::-;17478:4;17508:30;17518:10;17529:2;17532:5;17508:9;:30::i;:::-;17501:37;17410:136;-1:-1:-1;;;17410:136:0:o;11588:258::-;11531:10;;-1:-1:-1;;;;;11531:10:0;11517;:24;11509:51;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;-1:-1:-1;;;11509:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11680:25:0;;11672:69;;;;;-1:-1:-1;;;11672:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11779:10;;;11757:46;;-1:-1:-1;;;;;11757:46:0;;;;11779:10;;;11757:46;;;11814:10;:24;;-1:-1:-1;;;;;;11814:24:0;-1:-1:-1;;;;;11814:24:0;;;;;;;;;;11588:258::o;12764:33::-;;;;;;:::o;13301:71::-;;;-1:-1:-1;;;;;13301:71:0;;:::o;14822:148::-;-1:-1:-1;;;;;14935:18:0;;;14902:7;14935:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14822:148::o;12834:50::-;12880:4;12834:50;:::o;2501:136::-;2559:7;2586:43;2590:1;2593;2586:43;;;;;;;;;;;;;;;;;:3;:43::i;18385:1393::-;18515:13;;18469:4;;18515:13;;;:35;;-1:-1:-1;18540:10:0;;-1:-1:-1;;;;;18532:18:0;;;18540:10;;18532:18;18515:35;18507:63;;;;;-1:-1:-1;;;18507:63:0;;;;;;;;;;;;-1:-1:-1;;;18507:63:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18591:18:0;;18583:68;;;;-1:-1:-1;;;18583:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18670:16:0;;18662:64;;;;-1:-1:-1;;;18662:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18739:18;18760:5;18739:26;;18776:15;18794:37;13006:5;18795:20;18805:9;;18795:5;:9;;:20;;;;:::i;:::-;18794:26;:37;:26;:37;:::i;:::-;18776:55;-1:-1:-1;18846:11:0;;18842:348;;18930:9;;-1:-1:-1;;;;;18930:9:0;18920:20;;;;:9;:20;;;;;;:33;;18945:7;18920:33;:24;:33;:::i;:::-;18907:9;;-1:-1:-1;;;;;18907:9:0;18897:20;;;;:9;:20;;;;;:56;18983:12;;:25;;19000:7;18983:25;:16;:25;:::i;:::-;18968:12;:40;19036:23;:10;19051:7;19036:23;:14;:23;:::i;:::-;19094:15;;19023:36;;-1:-1:-1;19094:28:0;;19114:7;19094:28;:19;:28;:::i;:::-;19076:15;:46;19159:9;;19144:34;;;;;;;;-1:-1:-1;;;;;19159:9:0;;;;19144:34;;;-1:-1:-1;;;;;;;;;;;19144:34:0;;;;;;;;;18842:348;19202:17;19222:39;13006:5;19223:22;19233:11;;19223:5;:9;;:22;;;;:::i;19222:39::-;19202:59;-1:-1:-1;19276:13:0;;19272:314;;19365:11;;-1:-1:-1;;;;;19365:11:0;19355:22;;;;:9;:22;;;;;;:37;;19382:9;19355:37;:26;:37;:::i;:::-;19340:11;;-1:-1:-1;;;;;19340:11:0;19330:22;;;;:9;:22;;;;;:62;19420:25;:10;19435:9;19420:25;:14;:25;:::i;:::-;19482:17;;19407:38;;-1:-1:-1;19482:32:0;;19504:9;19482:32;:21;:32;:::i;:::-;19462:17;:52;19551:11;;19536:38;;;;;;;;-1:-1:-1;;;;;19551:11:0;;;;19536:38;;;-1:-1:-1;;;;;;;;;;;19536:38:0;;;;;;;;;19272:314;-1:-1:-1;;;;;19616:15:0;;;;;;:9;:15;;;;;;:26;;19636:5;19616:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;19598:15:0;;;;;;;:9;:15;;;;;;:44;;;;19669:13;;;;;;;:29;;19687:10;19669:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;19653:13:0;;;;;;;:9;:13;;;;;;;;;:45;;;;19716:30;;;;;;;19653:13;;19716:30;;;;-1:-1:-1;;;;;;;;;;;19716:30:0;;;;;;;;-1:-1:-1;19766:4:0;;18385:1393;-1:-1:-1;;;;;;18385:1393:0:o;2045:181::-;2103:7;2135:5;;;2159:6;;;;2151:46;;;;;-1:-1:-1;;;2151:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2974:192;3060:7;3096:12;3088:6;;;;3080:29;;;;-1:-1:-1;;;3080:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3080:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3132:5:0;;;2974:192::o;3417:471::-;3475:7;3720:6;3716:47;;-1:-1:-1;3750:1:0;3743:8;;3716:47;3787:5;;;3791:1;3787;:5;:1;3811:5;;;;;:10;3803:56;;;;-1:-1:-1;;;3803:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4356:132;4414:7;4441:39;4445:1;4448;4441:39;;;;;;;;;;;;;;;;;5104:7;5206:12;5199:5;5191:28;;;;-1:-1:-1;;;5191:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5191:28:0;;5230:9;5246:1;5242;:5;;;;;;;5018:345;-1:-1:-1;;;;;5018:345:0:o

Swarm Source

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