ETH Price: $2,760.95 (+3.07%)

Contract

0xf7DbC200CDC1590B0F45a29b59DF22Af022851D4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Create Custom To...110034402020-10-06 17:08:171600 days ago1602004097IN
0xf7DbC200...f022851D4
0 ETH0.1502335863
Create Custom To...110014082020-10-06 9:27:591600 days ago1601976479IN
0xf7DbC200...f022851D4
0 ETH0.119231250

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
110034402020-10-06 17:08:171600 days ago1602004097
0xf7DbC200...f022851D4
 Contract Creation0 ETH
110014082020-10-06 9:27:591600 days ago1601976479
0xf7DbC200...f022851D4
 Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NokuCustomERC2980Service

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-06
*/

// File: openzeppelin-solidity/contracts/AddressUtils.sol

pragma solidity ^0.4.23;


/**
 * Utility library of inline functions on addresses
 */
library AddressUtils {

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   *  as the code is not actually created until after the constructor finishes.
   * @param addr address to check
   * @return whether the target address is a contract
   */
  function isContract(address addr) internal view returns (bool) {
    uint256 size;
    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    // solium-disable-next-line security/no-inline-assembly
    assembly { size := extcodesize(addr) }
    return size > 0;
  }

}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.4.23;


/**
 * @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 public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

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

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    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;
  }
}

// File: openzeppelin-solidity/contracts/lifecycle/Pausable.sol

pragma solidity ^0.4.23;



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    emit Unpause();
  }
}

// File: contracts/NokuPricingPlan.sol

pragma solidity ^0.4.23;

/**
* @dev The NokuPricingPlan contract defines the responsibilities of a Noku pricing plan.
*/
contract NokuPricingPlan {
    /**
    * @dev Pay the fee for the service identified by the specified name.
    * The fee amount shall already be approved by the client.
    * @param serviceName The name of the target service.
    * @param multiplier The multiplier of the base service fee to apply.
    * @param client The client of the target service.
    * @return true if fee has been paid.
    */
    function payFee(bytes32 serviceName, uint256 multiplier, address client) public returns(bool paid);

    /**
    * @dev Get the usage fee for the service identified by the specified name.
    * The returned fee amount shall be approved before using #payFee method.
    * @param serviceName The name of the target service.
    * @param multiplier The multiplier of the base service fee to apply.
    * @return The amount to approve before really paying such fee.
    */
    function usageFee(bytes32 serviceName, uint256 multiplier) public constant returns(uint fee);
}

// File: contracts/NokuCustomService.sol

pragma solidity ^0.4.23;




contract NokuCustomService is Pausable {
    using AddressUtils for address;

    event LogPricingPlanChanged(address indexed caller, address indexed pricingPlan);

    // The pricing plan determining the fee to be paid in NOKU tokens by customers
    NokuPricingPlan public pricingPlan;

    constructor(address _pricingPlan) internal {
        require(_pricingPlan.isContract(), "_pricingPlan is not contract");

        pricingPlan = NokuPricingPlan(_pricingPlan);
    }

    function setPricingPlan(address _pricingPlan) public onlyOwner {
        require(_pricingPlan.isContract(), "_pricingPlan is not contract");
        require(NokuPricingPlan(_pricingPlan) != pricingPlan, "_pricingPlan equal to current");
        
        pricingPlan = NokuPricingPlan(_pricingPlan);

        emit LogPricingPlanChanged(msg.sender, _pricingPlan);
    }
}

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

pragma solidity ^0.4.23;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting '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;
    }

    c = a * b;
    assert(c / a == b);
    return c;
  }

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

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
  }
}

// File: contracts/NokuCustomToken.sol

pragma solidity ^0.4.23;



contract NokuCustomToken is Ownable {

    event LogBurnFinished();
    event LogPricingPlanChanged(address indexed caller, address indexed pricingPlan);

    // The pricing plan determining the fee to be paid in NOKU tokens by customers for using Noku services
    NokuPricingPlan public pricingPlan;

    // The entity acting as Custom Token service provider i.e. Noku
    address public serviceProvider;

    // Flag indicating if Custom Token burning has been permanently finished or not.
    bool public burningFinished;

    /**
    * @dev Modifier to make a function callable only by service provider i.e. Noku.
    */
    modifier onlyServiceProvider() {
        require(msg.sender == serviceProvider, "caller is not service provider");
        _;
    }

    modifier canBurn() {
        require(!burningFinished, "burning finished");
        _;
    }

    constructor(address _pricingPlan, address _serviceProvider) internal {
        require(_pricingPlan != 0, "_pricingPlan is zero");
        require(_serviceProvider != 0, "_serviceProvider is zero");

        pricingPlan = NokuPricingPlan(_pricingPlan);
        serviceProvider = _serviceProvider;
    }

    /**
    * @dev Presence of this function indicates the contract is a Custom Token.
    */
    function isCustomToken() public pure returns(bool isCustom) {
        return true;
    }

    /**
    * @dev Stop burning new tokens.
    * @return true if the operation was successful.
    */
    function finishBurning() public onlyOwner canBurn returns(bool finished) {
        burningFinished = true;

        emit LogBurnFinished();

        return true;
    }

    /**
    * @dev Change the pricing plan of service fee to be paid in NOKU tokens.
    * @param _pricingPlan The pricing plan of NOKU token to be paid, zero means flat subscription.
    */
    function setPricingPlan(address _pricingPlan) public onlyServiceProvider {
        require(_pricingPlan != 0, "_pricingPlan is 0");
        require(_pricingPlan != address(pricingPlan), "_pricingPlan == pricingPlan");

        pricingPlan = NokuPricingPlan(_pricingPlan);

        emit LogPricingPlanChanged(msg.sender, _pricingPlan);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol

pragma solidity ^0.4.23;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

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

pragma solidity ^0.4.23;



/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender)
    public view returns (uint256);

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

  function approve(address spender, uint256 value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

// File: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol

pragma solidity ^0.4.23;



/**
 * @title DetailedERC20 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 DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

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

// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol

pragma solidity ^0.4.23;




/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

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

  /**
  * @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) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @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) public view returns (uint256) {
    return balances[_owner];
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol

pragma solidity ^0.4.23;




/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @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
  )
    public
    returns (bool)
  {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _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) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @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 Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_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
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_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
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    returns (bool)
  {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol

pragma solidity ^0.4.23;




/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  modifier hasMintPermission() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(
    address _to,
    uint256 _amount
  )
    hasMintPermission
    canMint
    public
    returns (bool)
  {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol

pragma solidity ^0.4.23;



/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

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

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

// File: openzeppelin-solidity/contracts/ownership/rbac/Roles.sol

pragma solidity ^0.4.23;


/**
 * @title Roles
 * @author Francisco Giordano (@frangio)
 * @dev Library for managing addresses assigned to a Role.
 *      See RBAC.sol for example usage.
 */
library Roles {
  struct Role {
    mapping (address => bool) bearer;
  }

  /**
   * @dev give an address access to this role
   */
  function add(Role storage role, address addr)
    internal
  {
    role.bearer[addr] = true;
  }

  /**
   * @dev remove an address' access to this role
   */
  function remove(Role storage role, address addr)
    internal
  {
    role.bearer[addr] = false;
  }

  /**
   * @dev check if an address has this role
   * // reverts
   */
  function check(Role storage role, address addr)
    view
    internal
  {
    require(has(role, addr));
  }

  /**
   * @dev check if an address has this role
   * @return bool
   */
  function has(Role storage role, address addr)
    view
    internal
    returns (bool)
  {
    return role.bearer[addr];
  }
}

// File: openzeppelin-solidity/contracts/ownership/rbac/RBAC.sol

pragma solidity ^0.4.23;



/**
 * @title RBAC (Role-Based Access Control)
 * @author Matt Condon (@Shrugs)
 * @dev Stores and provides setters and getters for roles and addresses.
 * @dev Supports unlimited numbers of roles and addresses.
 * @dev See //contracts/mocks/RBACMock.sol for an example of usage.
 * This RBAC method uses strings to key roles. It may be beneficial
 *  for you to write your own implementation of this interface using Enums or similar.
 * It's also recommended that you define constants in the contract, like ROLE_ADMIN below,
 *  to avoid typos.
 */
contract RBAC {
  using Roles for Roles.Role;

  mapping (string => Roles.Role) private roles;

  event RoleAdded(address addr, string roleName);
  event RoleRemoved(address addr, string roleName);

  /**
   * @dev reverts if addr does not have role
   * @param addr address
   * @param roleName the name of the role
   * // reverts
   */
  function checkRole(address addr, string roleName)
    view
    public
  {
    roles[roleName].check(addr);
  }

  /**
   * @dev determine if addr has role
   * @param addr address
   * @param roleName the name of the role
   * @return bool
   */
  function hasRole(address addr, string roleName)
    view
    public
    returns (bool)
  {
    return roles[roleName].has(addr);
  }

  /**
   * @dev add a role to an address
   * @param addr address
   * @param roleName the name of the role
   */
  function addRole(address addr, string roleName)
    internal
  {
    roles[roleName].add(addr);
    emit RoleAdded(addr, roleName);
  }

  /**
   * @dev remove a role from an address
   * @param addr address
   * @param roleName the name of the role
   */
  function removeRole(address addr, string roleName)
    internal
  {
    roles[roleName].remove(addr);
    emit RoleRemoved(addr, roleName);
  }

  /**
   * @dev modifier to scope access to a single role (uses msg.sender as addr)
   * @param roleName the name of the role
   * // reverts
   */
  modifier onlyRole(string roleName)
  {
    checkRole(msg.sender, roleName);
    _;
  }

  /**
   * @dev modifier to scope access to a set of roles (uses msg.sender as addr)
   * @param roleNames the names of the roles to scope access to
   * // reverts
   *
   * @TODO - when solidity supports dynamic arrays as arguments to modifiers, provide this
   *  see: https://github.com/ethereum/solidity/issues/2467
   */
  // modifier onlyRoles(string[] roleNames) {
  //     bool hasAnyRole = false;
  //     for (uint8 i = 0; i < roleNames.length; i++) {
  //         if (hasRole(msg.sender, roleNames[i])) {
  //             hasAnyRole = true;
  //             break;
  //         }
  //     }

  //     require(hasAnyRole);

  //     _;
  // }
}

// File: contracts/ERC2980/Issuable.sol

pragma solidity ^0.4.24;




/**
 * @title Issuable
 * @dev The Issuable contract defines the issuer role who can perform certain kind of actions
 * even if he is not the owner.
 * An issuer can transfer his role to a new address.
 */
contract Issuable is Ownable, RBAC {
  string public constant ROLE_ISSUER = "issuer";

  /**
   * @dev Throws if called by any account that's not a issuer.
   */
  modifier onlyIssuer() {
    require(isIssuer(msg.sender), 'Issuable: caller is not the issuer');
    _;
  }

  modifier onlyOwnerOrIssuer() {
    require(msg.sender == owner || isIssuer(msg.sender), 'Issuable: caller is not the issuer or the owner');
    _;
  }

  /**
   * @dev getter to determine if address has issuer role
   */
  function isIssuer(address _addr) public view returns (bool) {
    return hasRole(_addr, ROLE_ISSUER);
  }

  /**
   * @dev add a new issuer address
   * @param _operator address
   * @return true if the address was not an issuer, false if the address was already an issuer
   */
  function addIssuer(address _operator) public onlyOwner {
    addRole(_operator, ROLE_ISSUER);
  }

    /**
   * @dev remove an address from issuers
   * @param _operator address
   * @return true if the address has been removed from issuers,
   * false if the address wasn't in the issuer list in the first place
   */
  function removeIssuer(address _operator) public onlyOwner {
    removeRole(_operator, ROLE_ISSUER);
  }

  /**
   * @dev Allows the current issuer to transfer his role to a newIssuer.
   * @param _newIssuer The address to transfer the issuer role to.
   */
  function transferIssuer(address _newIssuer) public onlyIssuer {
    require(_newIssuer != address(0));
    removeRole(msg.sender, ROLE_ISSUER);
    addRole(_newIssuer, ROLE_ISSUER);
  }

}

// File: contracts/ERC2980/Whitelist.sol

pragma solidity ^0.4.24;


/**
 * @title Whitelist
 * @dev The Whitelist contract has a whitelist of addresses, and provides basic authorization control functions.
 * This simplifies the implementation of "user permissions".
    By default whitelist in not enabled.
 */
contract Whitelist is Issuable {
  string public constant ROLE_WHITELISTED = "whitelist";
  bool public whitelistEnabled;

  constructor(bool enableWhitelist)
    public {
      whitelistEnabled = enableWhitelist;
  }

  /**
   * @dev Throws if operator is not whitelisted and whitelist is enabled.
   * @param _operator address
   */
  modifier onlyIfWhitelisted(address _operator) {
    if(whitelistEnabled) {
      checkRole(_operator, ROLE_WHITELISTED);
    }
    _;
  }

  function enableWhitelist() public onlyOwner {
    whitelistEnabled = true;
  }

  function disableWhitelist() public onlyOwner {
    whitelistEnabled = false;
  }

  /**
   * @dev add an address to the whitelist
   * @param _operator address
   * @return true if the address was added to the whitelist, false if the address was already in the whitelist
   */
  function addAddressToWhitelist(address _operator) public onlyIssuer {
    addRole(_operator, ROLE_WHITELISTED);
  }

  /**
   * @dev getter to determine if address is in whitelist
   */
  function whitelist(address _operator) public view returns (bool) {
    return hasRole(_operator, ROLE_WHITELISTED);
  }

  /**
   * @dev add addresses to the whitelist
   * @param _operators addresses
   * @return true if at least one address was added to the whitelist,
   * false if all addresses were already in the whitelist
   */
  function addAddressesToWhitelist(address[] _operators) public onlyIssuer {
    for (uint256 i = 0; i < _operators.length; i++) {
      addAddressToWhitelist(_operators[i]);
    }
  }

  /**
   * @dev remove an address from the whitelist
   * @param _operator address
   * @return true if the address was removed from the whitelist,
   * false if the address wasn't in the whitelist in the first place
   */
  function removeAddressFromWhitelist(address _operator) public onlyIssuer {
    removeRole(_operator, ROLE_WHITELISTED);
  }

  /**
   * @dev remove addresses from the whitelist
   * @param _operators addresses
   * @return true if at least one address was removed from the whitelist,
   * false if all addresses weren't in the whitelist in the first place
   */
  function removeAddressesFromWhitelist(address[] _operators) public onlyIssuer {
    for (uint256 i = 0; i < _operators.length; i++) {
      removeAddressFromWhitelist(_operators[i]);
    }
  }

}

// File: contracts/ERC2980/Frozenlist.sol

pragma solidity ^0.4.24;


/**
 * @title Frozenlist
 * @dev The Frozenlist contract has a frozen list of addresses, and provides basic authorization control functions.
 * This simplifies the implementation of "user permissions".
 */
contract Frozenlist is Issuable {

  event FundsFrozen(address target);

  string public constant ROLE_FROZENLIST = "frozenlist";

  /**
   * @dev Throws if operator is frozen.
   * @param _operator address
   */
  modifier onlyIfNotFrozen(address _operator) {
    require(!hasRole(_operator, ROLE_FROZENLIST), "Account frozen");
    _;
  }

  /**
   * @dev add an address to the frozenlist
   * @param _operator address
   * @return true if the address was added to the frozenlist, false if the address was already in the frozenlist
   */
  function addAddressToFrozenlist(address _operator) public onlyIssuer {
    addRole(_operator, ROLE_FROZENLIST);
    emit FundsFrozen(_operator);
  }

  /**
   * @dev getter to determine if address is in frozenlist
   */
  function frozenlist(address _operator) public view returns (bool) {
    return hasRole(_operator, ROLE_FROZENLIST);
  }

  /**
   * @dev add addresses to the frozenlist
   * @param _operators addresses
   * @return true if at least one address was added to the frozenlist,
   * false if all addresses were already in the frozenlist
   */
  function addAddressesToFrozenlist(address[] _operators) public onlyIssuer {
    for (uint256 i = 0; i < _operators.length; i++) {
      addAddressToFrozenlist(_operators[i]);
    }
  }

  /**
   * @dev remove an address from the frozenlist
   * @param _operator address
   * @return true if the address was removed from the frozenlist,
   * false if the address wasn't in the frozenlist in the first place
   */
  function removeAddressFromFrozenlist(address _operator) public onlyIssuer {
    removeRole(_operator, ROLE_FROZENLIST);
  }

  /**
   * @dev remove addresses from the frozenlist
   * @param _operators addresses
   * @return true if at least one address was removed from the frozenlist,
   * false if all addresses weren't in the frozenlist in the first place
   */
  function removeAddressesFromFrozenlist(address[] _operators) public onlyIssuer {
    for (uint256 i = 0; i < _operators.length; i++) {
      removeAddressFromFrozenlist(_operators[i]);
    }
  }

}

// File: contracts/ERC2980/ERC2980.sol

pragma solidity ^0.4.23;

interface ERC2980 {
  
  /// @dev This emits when funds are reassigned
  event FundsReassigned(address from, address to, uint256 amount);

  /// @dev This emits when funds are revoked
  event FundsRevoked(address from, uint256 amount);

  /// @dev This emits when an address is frozen
  event FundsFrozen(address target);

  /**
  * @dev getter to determine if address is in frozenlist
  */
  function frozenlist(address _operator) external view returns (bool);

  /**
  * @dev getter to determine if address is in whitelist
  */
  function whitelist(address _operator) external view returns (bool);

}

// File: contracts/ERC2980/BasicSecurityToken.sol

pragma solidity ^0.4.23;









contract BasicSecurityToken is ERC2980, Ownable, Issuable, DetailedERC20, MintableToken, BurnableToken, Frozenlist, Whitelist {

    constructor(string memory name, string memory symbol, bool enableWhitelist)
    Ownable()
    DetailedERC20(name, symbol, 0)
    Whitelist(enableWhitelist)
    public {
        
    }

    //Modifiers

    modifier onlyOwner() {
        require(msg.sender == owner, 'Ownable: caller is not the owner');
        _;
    }
    
    //Public functions (place the view and pure functions last)

    function mint(address account, uint256 amount) public onlyOwner onlyIfNotFrozen(account) onlyIfWhitelisted(account) returns (bool) {
        super.mint(account, amount);
        return true;
    }

    function burn(uint256 amount) public onlyIfNotFrozen(msg.sender) {
        super._burn(msg.sender, amount);
    }

    function burnFrom(address account, uint256 amount) public onlyIfNotFrozen(account) {
        super._burn(account, amount);
    }

    function transfer(address recipient, uint256 amount) public onlyIfNotFrozen(msg.sender) onlyIfNotFrozen(recipient) onlyIfWhitelisted(recipient) returns (bool) {
        require(super.transfer(recipient, amount), "Transfer failed");

        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public onlyIfNotFrozen(sender) onlyIfNotFrozen(recipient) onlyIfWhitelisted(recipient) returns (bool) {
        require(super.transferFrom(sender, recipient, amount), "Transfer failed");

        return true;
    }

    function reassign(address from, address to) public onlyIssuer {
        uint256 fundsReassigned = balanceOf(from);
        _transfer(from, to, fundsReassigned);

        emit FundsReassigned(from, to, fundsReassigned);
    }

    function revoke(address from) public onlyIssuer {
        uint256 fundsRevoked = balanceOf(from);
        _transfer(from, msg.sender, fundsRevoked);

        emit FundsRevoked(from, fundsRevoked);
    }

    //Internal functions

    function _transfer(address _from, address _to, uint256 _value) public returns (bool) {
        require(_value <= balances[_from]);
        require(_to != address(0));

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    //Private functions

}

// File: contracts/NokuCustomERC2980.sol

pragma solidity ^0.4.23;




/**
* @dev The NokuCustomERC2980Token contract is a custom ERC2980, a security token ERC20-compliant, token available in the Noku Service Platform (NSP).
* The Noku customer is able to choose the token name, symbol, decimals, initial supply and to administer its lifecycle
* by minting or burning tokens in order to increase or decrease the token supply.
*/
contract NokuCustomERC2980 is NokuCustomToken, BasicSecurityToken {
    using SafeMath for uint256;

    event LogNokuCustomERC2980Created(
        address indexed caller,
        string indexed name,
        string indexed symbol,
        address pricingPlan,
        address serviceProvider
    );
    
    constructor(
        string _name,
        string _symbol,
        bool _enableWhitelist,
        address _pricingPlan,
        address _serviceProvider
    )
    NokuCustomToken(_pricingPlan, _serviceProvider)
    BasicSecurityToken(_name, _symbol, _enableWhitelist) public
    {
        require(bytes(_name).length > 0, "_name is empty");
        require(bytes(_symbol).length > 0, "_symbol is empty");

        emit LogNokuCustomERC2980Created(
            msg.sender,
            _name,
            _symbol,
            _pricingPlan,
            _serviceProvider
        );
    }

}

// File: contracts/NokuCustomERC2980Service.sol

pragma solidity ^0.4.23;



/**
* @dev The NokuCustomERC2980Service contract .
*/
contract NokuCustomERC2980Service is NokuCustomService {
    event LogNokuCustomERC2980ServiceCreated(address caller, address indexed _pricingPlan);

    uint256 public constant CREATE_AMOUNT = 1 * 10**18;

    bytes32 public constant CUSTOM_ERC2980_CREATE_SERVICE_NAME = "NokuCustomERC2980.create";

    constructor(address _pricingPlan) NokuCustomService(_pricingPlan) public {
        emit LogNokuCustomERC2980ServiceCreated(msg.sender, _pricingPlan);
    }

    function createCustomToken(string _name, string _symbol, bool _enableWhitelist, NokuPricingPlan _pricingPlan) public returns(NokuCustomERC2980 customToken) {
        customToken = new NokuCustomERC2980(
            _name,
            _symbol,
            _enableWhitelist,
            _pricingPlan,
            owner
        );

        // Transfer NokuCustomERC2980 ownership to the client
        customToken.transferOwnership(msg.sender);

        require(_pricingPlan.payFee(CUSTOM_ERC2980_CREATE_SERVICE_NAME, CREATE_AMOUNT, msg.sender), "fee payment failed");
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_pricingPlan","type":"address"}],"name":"setPricingPlan","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"CUSTOM_ERC2980_CREATE_SERVICE_NAME","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_enableWhitelist","type":"bool"},{"name":"_pricingPlan","type":"address"}],"name":"createCustomToken","outputs":[{"name":"customToken","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pricingPlan","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"CREATE_AMOUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_pricingPlan","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"caller","type":"address"},{"indexed":true,"name":"_pricingPlan","type":"address"}],"name":"LogNokuCustomERC2980ServiceCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"caller","type":"address"},{"indexed":true,"name":"pricingPlan","type":"address"}],"name":"LogPricingPlanChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60806040526000805460a060020a60ff021916905534801561002057600080fd5b50604051602080613aab833981016040525160008054600160a060020a0319163317905580610064600160a060020a03821664010000000061093c61012b82021704565b15156100d157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5f70726963696e67506c616e206973206e6f7420636f6e747261637400000000604482015290519081900360640190fd5b60018054600160a060020a031916600160a060020a03928316179055604080513381529051918316917fb9ac2bbea4baa47063958e68d43c041309efa6f4f0ae778779868ad73c000309916020908290030190a250610133565b6000903b1190565b613969806101426000396000f300608060405260043610620000ba5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416633f4ba83a8114620000bf57806345fc916c14620000d95780634f15897914620000fd5780635c975abb1462000127578063715018a614620001535780638456cb59146200016b5780638da5cb5b1462000183578063c556d96b14620001b7578063d6c12f881462000261578063f2fde38b1462000279578063f97944e0146200029d575b600080fd5b348015620000cc57600080fd5b50620000d7620002b5565b005b348015620000e657600080fd5b50620000d7600160a060020a03600435166200033e565b3480156200010a57600080fd5b5062000115620004af565b60408051918252519081900360200190f35b3480156200013457600080fd5b506200013f620004d3565b604080519115158252519081900360200190f35b3480156200016057600080fd5b50620000d7620004f4565b3480156200017857600080fd5b50620000d762000561565b3480156200019057600080fd5b506200019b62000600565b60408051600160a060020a039092168252519081900360200190f35b348015620001c457600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526200019b94369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a999881019791965091820194509250829150840183828082843750949750505050823515159350505060200135600160a060020a03166200060f565b3480156200026e57600080fd5b506200019b620008fb565b3480156200028657600080fd5b50620000d7600160a060020a03600435166200090a565b348015620002aa57600080fd5b506200011562000930565b600054600160a060020a03163314620002cd57600080fd5b60005474010000000000000000000000000000000000000000900460ff161515620002f757600080fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600054600160a060020a031633146200035657600080fd5b6200036a81600160a060020a03166200093c565b1515620003d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5f70726963696e67506c616e206973206e6f7420636f6e747261637400000000604482015290519081900360640190fd5b600154600160a060020a03828116911614156200045657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f5f70726963696e67506c616e20657175616c20746f2063757272656e74000000604482015290519081900360640190fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560405133907f9c9a71911f32ca6a40ea2146f75e1c43335f2862b3c1c9696d22cd10e86311c290600090a350565b7f4e6f6b75437573746f6d455243323938302e637265617465000000000000000081565b60005474010000000000000000000000000000000000000000900460ff1681565b600054600160a060020a031633146200050c57600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031633146200057957600080fd5b60005474010000000000000000000000000000000000000000900460ff1615620005a257600080fd5b6000805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600054600160a060020a031681565b600080548590859085908590600160a060020a03166200062e620009c2565b8315156040820152600160a060020a0380841660608301528216608082015260a08082528651908201528551819060208083019160c08401918a019080838360005b838110156200068a57818101518382015260200162000670565b50505050905090810190601f168015620006b85780820380516001836020036101000a031916815260200191505b50838103825287518152875160209182019189019080838360005b83811015620006ed578181015183820152602001620006d3565b50505050905090810190601f1680156200071b5780820380516001836020036101000a031916815260200191505b50975050505050505050604051809103906000f08015801562000742573d6000803e3d6000fd5b50604080517ff2fde38b0000000000000000000000000000000000000000000000000000000081523360048201529051919250600160a060020a0383169163f2fde38b9160248082019260009290919082900301818387803b158015620007a857600080fd5b505af1158015620007bd573d6000803e3d6000fd5b5050604080517fd30b53860000000000000000000000000000000000000000000000000000000081527f4e6f6b75437573746f6d455243323938302e63726561746500000000000000006004820152670de0b6b3a764000060248201523360448201529051600160a060020a038616935063d30b5386925060648083019260209291908290030181600087803b1580156200085757600080fd5b505af11580156200086c573d6000803e3d6000fd5b505050506040513d60208110156200088357600080fd5b50511515620008f357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f666565207061796d656e74206661696c65640000000000000000000000000000604482015290519081900360640190fd5b949350505050565b600154600160a060020a031681565b600054600160a060020a031633146200092257600080fd5b6200092d8162000944565b50565b670de0b6b3a764000081565b6000903b1190565b600160a060020a03811615156200095a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b604051612f6a80620009d483390190560060806040526009805461ff00191690553480156200001c57600080fd5b5060405162002f6a38038062002f6a83398101604090815281516020830151918301516060840151608085015160038054600160a060020a03191633179055928501949390930192909184848480838360008888600160a060020a0382161515620000e857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5f70726963696e67506c616e206973207a65726f000000000000000000000000604482015290519081900360640190fd5b600160a060020a03811615156200016057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f5f7365727669636550726f7669646572206973207a65726f0000000000000000604482015290519081900360640190fd5b60048054600160a060020a03938416600160a060020a031991821617909155600580549290931691161790558251620001a1906007906020860190620003d4565b508151620001b7906008906020850190620003d4565b506009805460ff191660ff929092169190911762ff000019166201000094151594909402939093179092555050875160001092506200025a91505057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f5f6e616d6520697320656d707479000000000000000000000000000000000000604482015290519081900360640190fd5b8351600010620002cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5f73796d626f6c20697320656d70747900000000000000000000000000000000604482015290519081900360640190fd5b836040518082805190602001908083835b60208310620002fd5780518252601f199092019160209182019101620002dc565b51815160209384036101000a60001901801990921691161790526040519190930181900381208a519095508a945090928392508401908083835b60208310620003585780518252601f19909201916020918201910162000337565b51815160209384036101000a600019018019909216911617905260408051929094018290038220600160a060020a038a8116845289169183019190915283519095503394507f062a03b620dc2c95fd3a8a2e5a94a99212e4d5429a6855c2887af0e8fc4fc66b93918190039091019150a4505050505062000479565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041757805160ff191683800117855562000447565b8280016001018555821562000447579182015b82811115620004475782518255916020019190600101906200042a565b506200045592915062000459565b5090565b6200047691905b8082111562000455576000815560010162000460565b90565b612ae180620004896000396000f30060806040526004361061025b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d1a946811461026057806305d2035b1461028957806306fdde031461029e578063095ea7b3146103285780630988ca8c1461034c57806318160ddd146103b557806318b919e9146103dc5780631afe839c146103f157806320694db014610412578063217fe6c61461043357806323b872dd1461049a57806324953eaa146104c4578063286dd3f51461051957806330e0789e1461053a578063313ce5671461056457806340c10f191461058f57806342966c68146105b3578063459f659a146105cb57806345fc916c146105ec57806347bc70931461060d57806351fb012d1461062e5780635fff8cd314610643578063661884631461066a578063664944dc1461068e5780636849cb9d146106af57806370a08231146106d0578063715018a6146106f157806374a8f10314610706578063794d38501461072757806379cc67901461073c5780637b9417c8146107605780637d64bcb414610781578063877b9a67146107965780638b4dd229146107b75780638d69e95e1461080c5780638da5cb5b1461083d578063951530f71461085257806395d89b41146108675780639b19251a1461087c578063a372b26f1461089d578063a9059cbb146108f2578063cdfb2b4e14610916578063d6b0f4841461092b578063d6c12f8814610940578063d73dd62314610955578063d8bf0ef814610979578063dd62ed3e1461098e578063e2ec6ec3146109b5578063e6f1a18914610a0a578063f2fde38b14610a1f575b600080fd5b34801561026c57600080fd5b50610275610a40565b604080519115158252519081900360200190f35b34801561029557600080fd5b50610275610a61565b3480156102aa57600080fd5b506102b3610a6f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ed5781810151838201526020016102d5565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033457600080fd5b50610275600160a060020a0360043516602435610afd565b34801561035857600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526103b3958335600160a060020a0316953695604494919390910191908190840183828082843750949750610b639650505050505050565b005b3480156103c157600080fd5b506103ca610bd1565b60408051918252519081900360200190f35b3480156103e857600080fd5b506102b3610bd7565b3480156103fd57600080fd5b506103b3600160a060020a0360043516610bfc565b34801561041e57600080fd5b506103b3600160a060020a0360043516610cc3565b34801561043f57600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610275958335600160a060020a0316953695604494919390910191908190840183828082843750949750610d439650505050505050565b3480156104a657600080fd5b50610275600160a060020a0360043581169060243516604435610db6565b3480156104d057600080fd5b50604080516020600480358082013583810280860185019096528085526103b395369593946024949385019291829185019084908082843750949750610f489650505050505050565b34801561052557600080fd5b506103b3600160a060020a0360043516610fda565b34801561054657600080fd5b50610275600160a060020a0360043581169060243516604435611062565b34801561057057600080fd5b50610579611147565b6040805160ff9092168252519081900360200190f35b34801561059b57600080fd5b50610275600160a060020a0360043516602435611150565b3480156105bf57600080fd5b506103b360043561126a565b3480156105d757600080fd5b506103b3600160a060020a03600435166112e5565b3480156105f857600080fd5b506103b3600160a060020a036004351661136d565b34801561061957600080fd5b506103b3600160a060020a03600435166114ee565b34801561063a57600080fd5b5061027561156b565b34801561064f57600080fd5b506103b3600160a060020a036004358116906024351661157a565b34801561067657600080fd5b50610275600160a060020a036004351660243561163d565b34801561069a57600080fd5b50610275600160a060020a036004351661172d565b3480156106bb57600080fd5b506103b3600160a060020a0360043516611762565b3480156106dc57600080fd5b506103ca600160a060020a03600435166117ff565b3480156106fd57600080fd5b506103b361181a565b34801561071257600080fd5b506103b3600160a060020a03600435166118c1565b34801561073357600080fd5b506102b361197d565b34801561074857600080fd5b506103b3600160a060020a03600435166024356119a2565b34801561076c57600080fd5b506103b3600160a060020a0360043516611a22565b34801561078d57600080fd5b50610275611aaa565b3480156107a257600080fd5b50610275600160a060020a0360043516611b50565b3480156107c357600080fd5b50604080516020600480358082013583810280860185019096528085526103b395369593946024949385019291829185019084908082843750949750611b7f9650505050505050565b34801561081857600080fd5b50610821611c11565b60408051600160a060020a039092168252519081900360200190f35b34801561084957600080fd5b50610821611c20565b34801561085e57600080fd5b506102b3611c2f565b34801561087357600080fd5b506102b3611c54565b34801561088857600080fd5b50610275600160a060020a0360043516611caf565b3480156108a957600080fd5b50604080516020600480358082013583810280860185019096528085526103b395369593946024949385019291829185019084908082843750949750611cde9650505050505050565b3480156108fe57600080fd5b50610275600160a060020a0360043516602435611d70565b34801561092257600080fd5b506103b3611ef4565b34801561093757600080fd5b506103b3611f57565b34801561094c57600080fd5b50610821611fb5565b34801561096157600080fd5b50610275600160a060020a0360043516602435611fc4565b34801561098557600080fd5b5061027561205d565b34801561099a57600080fd5b506103ca600160a060020a0360043581169060243516612187565b3480156109c157600080fd5b50604080516020600480358082013583810280860185019096528085526103b3953695939460249493850192918291850190849080828437509497506121b29650505050505050565b348015610a1657600080fd5b50610275612244565b348015610a2b57600080fd5b506103b3600160a060020a0360043516612249565b60055474010000000000000000000000000000000000000000900460ff1681565b600954610100900460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610bcd826006836040518082805190602001908083835b60208310610b995780518252601f199092019160209182019101610b7a565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506122a2565b5050565b60015490565b60408051808201909152600981526000805160206129d6833981519152602082015281565b610c0533611b50565b1515610c57576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610c84816040805190810160405280600a81526020016000805160206129f68339815191528152506122b7565b60408051600160a060020a038316815290517f1b994db1a6d945cc30132de7ed4aa052f750744469da7327b463cc0f94df87c09181900360200190a150565b600354600160a060020a03163314610d13576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b610d4081604080519081016040528060068152602001600080516020612a168339815191528152506122b7565b50565b6000610daf836006846040518082805190602001908083835b60208310610d7b5780518252601f199092019160209182019101610d5c565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506123d8565b9392505050565b600083610de6816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15610e29576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b83610e57816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15610e9a576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b600954859062010000900460ff1615610eda57610eda816040805190810160405280600981526020016000805160206129d6833981519152815250610b63565b610ee58787876123f7565b1515610f3b576040805160e560020a62461bcd02815260206004820152600f60248201527f5472616e73666572206661696c65640000000000000000000000000000000000604482015290519081900360640190fd5b5060019695505050505050565b6000610f5333611b50565b1515610fa5576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd57610fd28282815181101515610fc357fe5b90602001906020020151610fda565b600101610fa9565b610fe333611b50565b1515611035576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610d40816040805190810160405280600981526020016000805160206129d683398151915281525061255c565b600160a060020a03831660009081526020819052604081205482111561108757600080fd5b600160a060020a038316151561109c57600080fd5b600160a060020a0384166000908152602081905260409020546110c5908363ffffffff61263d16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546110fa908363ffffffff61264f16565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919392881692600080516020612a7683398151915292918290030190a35060019392505050565b60095460ff1681565b600354600090600160a060020a031633146111a3576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b826111d1816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611214576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b600954849062010000900460ff161561125457611254816040805190810160405280600981526020016000805160206129d6833981519152815250610b63565b61125e858561265c565b50600195945050505050565b33611298816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b156112db576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b610bcd3383612752565b6112ee33611b50565b1515611340576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610d40816040805190810160405280600a81526020016000805160206129f683398151915281525061255c565b600554600160a060020a031633146113cf576040805160e560020a62461bcd02815260206004820152601e60248201527f63616c6c6572206973206e6f7420736572766963652070726f76696465720000604482015290519081900360640190fd5b600160a060020a038116151561142f576040805160e560020a62461bcd02815260206004820152601160248201527f5f70726963696e67506c616e2069732030000000000000000000000000000000604482015290519081900360640190fd5b600454600160a060020a0382811691161415611495576040805160e560020a62461bcd02815260206004820152601b60248201527f5f70726963696e67506c616e203d3d2070726963696e67506c616e0000000000604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560405133907f9c9a71911f32ca6a40ea2146f75e1c43335f2862b3c1c9696d22cd10e86311c290600090a350565b600354600160a060020a0316331461153e576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b610d4081604080519081016040528060068152602001600080516020612a1683398151915281525061255c565b60095462010000900460ff1681565b600061158533611b50565b15156115d7576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b6115e0836117ff565b90506115ed838383611062565b5060408051600160a060020a0380861682528416602082015280820183905290517f95791f1c4aac383dc757e59da6599f6317ec2579228e1a9eeeafb80d7418c5349181900360600190a1505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561169257336000908152600260209081526040808320600160a060020a03881684529091528120556116c7565b6116a2818463ffffffff61263d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600061175c826040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b92915050565b61176b33611b50565b15156117bd576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b600160a060020a03811615156117d257600080fd5b610d1333604080519081016040528060068152602001600080516020612a1683398151915281525061255c565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461186a576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b60006118cc33611b50565b151561191e576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b611927826117ff565b9050611934823383611062565b5060408051600160a060020a03841681526020810183905281517fc2a82dd1d41e6a3fbca08bb53dc147df1241ab3942b5a540e1e2630dd05cf393929181900390910190a15050565b6040805180820190915260068152600080516020612a16833981519152602082015281565b816119d0816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611a13576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b611a1d8383612752565b505050565b611a2b33611b50565b1515611a7d576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610d40816040805190810160405280600981526020016000805160206129d68339815191528152506122b7565b600354600090600160a060020a03163314611afd576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b600954610100900460ff1615611b1257600080fd5b6009805461ff0019166101001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600061175c82604080519081016040528060068152602001600080516020612a16833981519152815250610d43565b6000611b8a33611b50565b1515611bdc576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd57611c098282815181101515611bfa57fe5b906020019060200201516112e5565b600101611be0565b600554600160a060020a031681565b600354600160a060020a031681565b60408051808201909152600a81526000805160206129f6833981519152602082015281565b6008805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b600061175c826040805190810160405280600981526020016000805160206129d6833981519152815250610d43565b6000611ce933611b50565b1515611d3b576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd57611d688282815181101515611d5957fe5b90602001906020020151610bfc565b600101611d3f565b600033611da0816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611de3576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b83611e11816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611e54576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b600954859062010000900460ff1615611e9457611e94816040805190810160405280600981526020016000805160206129d6833981519152815250610b63565b611e9e8686612841565b151561125e576040805160e560020a62461bcd02815260206004820152600f60248201527f5472616e73666572206661696c65640000000000000000000000000000000000604482015290519081900360640190fd5b600354600160a060020a03163314611f44576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b6009805462ff0000191662010000179055565b600354600160a060020a03163314611fa7576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b6009805462ff000019169055565b600454600160a060020a031681565b336000908152600260209081526040808320600160a060020a0386168452909152812054611ff8908363ffffffff61264f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600354600090600160a060020a031633146120b0576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b60055474010000000000000000000000000000000000000000900460ff1615612123576040805160e560020a62461bcd02815260206004820152601060248201527f6275726e696e672066696e697368656400000000000000000000000000000000604482015290519081900360640190fd5b6005805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517f568cefe030b2537eb3dba37e9ebf22cfc3e51ae8aca52125c6053a0c16ca730a90600090a150600190565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60006121bd33611b50565b151561220f576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd5761223c828281518110151561222d57fe5b90602001906020020151611a22565b600101612213565b600190565b600354600160a060020a03163314612299576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b610d4081612910565b6122ac82826123d8565b1515610bcd57600080fd5b612321826006836040518082805190602001908083835b602083106122ed5780518252601f1990920191602091820191016122ce565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209291505061298e565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612399578181015183820152602001612381565b50505050905090810190601f1680156123c65780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b600160a060020a03166000908152602091909152604090205460ff1690565b6000600160a060020a038316151561240e57600080fd5b600160a060020a03841660009081526020819052604090205482111561243357600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561246357600080fd5b600160a060020a03841660009081526020819052604090205461248c908363ffffffff61263d16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546124c1908363ffffffff61264f16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054612503908363ffffffff61263d16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020612a76833981519152929181900390910190a35060019392505050565b6125c6826006836040518082805190602001908083835b602083106125925780518252601f199092019160209182019101612573565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506129b3565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383600083811015612399578181015183820152602001612381565b60008282111561264957fe5b50900390565b8181018281101561175c57fe5b600354600090600160a060020a0316331461267657600080fd5b600954610100900460ff161561268b57600080fd5b60015461269e908363ffffffff61264f16565b600155600160a060020a0383166000908152602081905260409020546126ca908363ffffffff61264f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020612a768339815191529181900360200190a350600192915050565b600160a060020a03821660009081526020819052604090205481111561277757600080fd5b600160a060020a0382166000908152602081905260409020546127a0908263ffffffff61263d16565b600160a060020a0383166000908152602081905260409020556001546127cc908263ffffffff61263d16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020612a768339815191529181900360200190a35050565b6000600160a060020a038316151561285857600080fd5b3360009081526020819052604090205482111561287457600080fd5b33600090815260208190526040902054612894908363ffffffff61263d16565b3360009081526020819052604080822092909255600160a060020a038516815220546128c6908363ffffffff61264f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020612a768339815191529281900390910190a350600192915050565b600160a060020a038116151561292557600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0316600090815260209190915260409020805460ff19169055560077686974656c697374000000000000000000000000000000000000000000000066726f7a656e6c6973740000000000000000000000000000000000000000000069737375657200000000000000000000000000000000000000000000000000004973737561626c653a2063616c6c6572206973206e6f742074686520697373754f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4163636f756e742066726f7a656e000000000000000000000000000000000000a165627a7a723058203d645412c0d83d03c2085b31cda2c9986d42653abcfd86a9bd5ad1f82294661d0029a165627a7a72305820b09c8d9893f25c83769cb771459c3cc082b81d7fa36b4315c2de572e1b2911570029000000000000000000000000749aba9e082ccb185d1ef88fa514339e3c3368d3

Deployed Bytecode

0x608060405260043610620000ba5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416633f4ba83a8114620000bf57806345fc916c14620000d95780634f15897914620000fd5780635c975abb1462000127578063715018a614620001535780638456cb59146200016b5780638da5cb5b1462000183578063c556d96b14620001b7578063d6c12f881462000261578063f2fde38b1462000279578063f97944e0146200029d575b600080fd5b348015620000cc57600080fd5b50620000d7620002b5565b005b348015620000e657600080fd5b50620000d7600160a060020a03600435166200033e565b3480156200010a57600080fd5b5062000115620004af565b60408051918252519081900360200190f35b3480156200013457600080fd5b506200013f620004d3565b604080519115158252519081900360200190f35b3480156200016057600080fd5b50620000d7620004f4565b3480156200017857600080fd5b50620000d762000561565b3480156200019057600080fd5b506200019b62000600565b60408051600160a060020a039092168252519081900360200190f35b348015620001c457600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526200019b94369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a999881019791965091820194509250829150840183828082843750949750505050823515159350505060200135600160a060020a03166200060f565b3480156200026e57600080fd5b506200019b620008fb565b3480156200028657600080fd5b50620000d7600160a060020a03600435166200090a565b348015620002aa57600080fd5b506200011562000930565b600054600160a060020a03163314620002cd57600080fd5b60005474010000000000000000000000000000000000000000900460ff161515620002f757600080fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600054600160a060020a031633146200035657600080fd5b6200036a81600160a060020a03166200093c565b1515620003d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5f70726963696e67506c616e206973206e6f7420636f6e747261637400000000604482015290519081900360640190fd5b600154600160a060020a03828116911614156200045657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f5f70726963696e67506c616e20657175616c20746f2063757272656e74000000604482015290519081900360640190fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560405133907f9c9a71911f32ca6a40ea2146f75e1c43335f2862b3c1c9696d22cd10e86311c290600090a350565b7f4e6f6b75437573746f6d455243323938302e637265617465000000000000000081565b60005474010000000000000000000000000000000000000000900460ff1681565b600054600160a060020a031633146200050c57600080fd5b60008054604051600160a060020a03909116917ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482091a26000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031633146200057957600080fd5b60005474010000000000000000000000000000000000000000900460ff1615620005a257600080fd5b6000805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600054600160a060020a031681565b600080548590859085908590600160a060020a03166200062e620009c2565b8315156040820152600160a060020a0380841660608301528216608082015260a08082528651908201528551819060208083019160c08401918a019080838360005b838110156200068a57818101518382015260200162000670565b50505050905090810190601f168015620006b85780820380516001836020036101000a031916815260200191505b50838103825287518152875160209182019189019080838360005b83811015620006ed578181015183820152602001620006d3565b50505050905090810190601f1680156200071b5780820380516001836020036101000a031916815260200191505b50975050505050505050604051809103906000f08015801562000742573d6000803e3d6000fd5b50604080517ff2fde38b0000000000000000000000000000000000000000000000000000000081523360048201529051919250600160a060020a0383169163f2fde38b9160248082019260009290919082900301818387803b158015620007a857600080fd5b505af1158015620007bd573d6000803e3d6000fd5b5050604080517fd30b53860000000000000000000000000000000000000000000000000000000081527f4e6f6b75437573746f6d455243323938302e63726561746500000000000000006004820152670de0b6b3a764000060248201523360448201529051600160a060020a038616935063d30b5386925060648083019260209291908290030181600087803b1580156200085757600080fd5b505af11580156200086c573d6000803e3d6000fd5b505050506040513d60208110156200088357600080fd5b50511515620008f357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f666565207061796d656e74206661696c65640000000000000000000000000000604482015290519081900360640190fd5b949350505050565b600154600160a060020a031681565b600054600160a060020a031633146200092257600080fd5b6200092d8162000944565b50565b670de0b6b3a764000081565b6000903b1190565b600160a060020a03811615156200095a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b604051612f6a80620009d483390190560060806040526009805461ff00191690553480156200001c57600080fd5b5060405162002f6a38038062002f6a83398101604090815281516020830151918301516060840151608085015160038054600160a060020a03191633179055928501949390930192909184848480838360008888600160a060020a0382161515620000e857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5f70726963696e67506c616e206973207a65726f000000000000000000000000604482015290519081900360640190fd5b600160a060020a03811615156200016057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f5f7365727669636550726f7669646572206973207a65726f0000000000000000604482015290519081900360640190fd5b60048054600160a060020a03938416600160a060020a031991821617909155600580549290931691161790558251620001a1906007906020860190620003d4565b508151620001b7906008906020850190620003d4565b506009805460ff191660ff929092169190911762ff000019166201000094151594909402939093179092555050875160001092506200025a91505057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f5f6e616d6520697320656d707479000000000000000000000000000000000000604482015290519081900360640190fd5b8351600010620002cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5f73796d626f6c20697320656d70747900000000000000000000000000000000604482015290519081900360640190fd5b836040518082805190602001908083835b60208310620002fd5780518252601f199092019160209182019101620002dc565b51815160209384036101000a60001901801990921691161790526040519190930181900381208a519095508a945090928392508401908083835b60208310620003585780518252601f19909201916020918201910162000337565b51815160209384036101000a600019018019909216911617905260408051929094018290038220600160a060020a038a8116845289169183019190915283519095503394507f062a03b620dc2c95fd3a8a2e5a94a99212e4d5429a6855c2887af0e8fc4fc66b93918190039091019150a4505050505062000479565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041757805160ff191683800117855562000447565b8280016001018555821562000447579182015b82811115620004475782518255916020019190600101906200042a565b506200045592915062000459565b5090565b6200047691905b8082111562000455576000815560010162000460565b90565b612ae180620004896000396000f30060806040526004361061025b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d1a946811461026057806305d2035b1461028957806306fdde031461029e578063095ea7b3146103285780630988ca8c1461034c57806318160ddd146103b557806318b919e9146103dc5780631afe839c146103f157806320694db014610412578063217fe6c61461043357806323b872dd1461049a57806324953eaa146104c4578063286dd3f51461051957806330e0789e1461053a578063313ce5671461056457806340c10f191461058f57806342966c68146105b3578063459f659a146105cb57806345fc916c146105ec57806347bc70931461060d57806351fb012d1461062e5780635fff8cd314610643578063661884631461066a578063664944dc1461068e5780636849cb9d146106af57806370a08231146106d0578063715018a6146106f157806374a8f10314610706578063794d38501461072757806379cc67901461073c5780637b9417c8146107605780637d64bcb414610781578063877b9a67146107965780638b4dd229146107b75780638d69e95e1461080c5780638da5cb5b1461083d578063951530f71461085257806395d89b41146108675780639b19251a1461087c578063a372b26f1461089d578063a9059cbb146108f2578063cdfb2b4e14610916578063d6b0f4841461092b578063d6c12f8814610940578063d73dd62314610955578063d8bf0ef814610979578063dd62ed3e1461098e578063e2ec6ec3146109b5578063e6f1a18914610a0a578063f2fde38b14610a1f575b600080fd5b34801561026c57600080fd5b50610275610a40565b604080519115158252519081900360200190f35b34801561029557600080fd5b50610275610a61565b3480156102aa57600080fd5b506102b3610a6f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ed5781810151838201526020016102d5565b50505050905090810190601f16801561031a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033457600080fd5b50610275600160a060020a0360043516602435610afd565b34801561035857600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526103b3958335600160a060020a0316953695604494919390910191908190840183828082843750949750610b639650505050505050565b005b3480156103c157600080fd5b506103ca610bd1565b60408051918252519081900360200190f35b3480156103e857600080fd5b506102b3610bd7565b3480156103fd57600080fd5b506103b3600160a060020a0360043516610bfc565b34801561041e57600080fd5b506103b3600160a060020a0360043516610cc3565b34801561043f57600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610275958335600160a060020a0316953695604494919390910191908190840183828082843750949750610d439650505050505050565b3480156104a657600080fd5b50610275600160a060020a0360043581169060243516604435610db6565b3480156104d057600080fd5b50604080516020600480358082013583810280860185019096528085526103b395369593946024949385019291829185019084908082843750949750610f489650505050505050565b34801561052557600080fd5b506103b3600160a060020a0360043516610fda565b34801561054657600080fd5b50610275600160a060020a0360043581169060243516604435611062565b34801561057057600080fd5b50610579611147565b6040805160ff9092168252519081900360200190f35b34801561059b57600080fd5b50610275600160a060020a0360043516602435611150565b3480156105bf57600080fd5b506103b360043561126a565b3480156105d757600080fd5b506103b3600160a060020a03600435166112e5565b3480156105f857600080fd5b506103b3600160a060020a036004351661136d565b34801561061957600080fd5b506103b3600160a060020a03600435166114ee565b34801561063a57600080fd5b5061027561156b565b34801561064f57600080fd5b506103b3600160a060020a036004358116906024351661157a565b34801561067657600080fd5b50610275600160a060020a036004351660243561163d565b34801561069a57600080fd5b50610275600160a060020a036004351661172d565b3480156106bb57600080fd5b506103b3600160a060020a0360043516611762565b3480156106dc57600080fd5b506103ca600160a060020a03600435166117ff565b3480156106fd57600080fd5b506103b361181a565b34801561071257600080fd5b506103b3600160a060020a03600435166118c1565b34801561073357600080fd5b506102b361197d565b34801561074857600080fd5b506103b3600160a060020a03600435166024356119a2565b34801561076c57600080fd5b506103b3600160a060020a0360043516611a22565b34801561078d57600080fd5b50610275611aaa565b3480156107a257600080fd5b50610275600160a060020a0360043516611b50565b3480156107c357600080fd5b50604080516020600480358082013583810280860185019096528085526103b395369593946024949385019291829185019084908082843750949750611b7f9650505050505050565b34801561081857600080fd5b50610821611c11565b60408051600160a060020a039092168252519081900360200190f35b34801561084957600080fd5b50610821611c20565b34801561085e57600080fd5b506102b3611c2f565b34801561087357600080fd5b506102b3611c54565b34801561088857600080fd5b50610275600160a060020a0360043516611caf565b3480156108a957600080fd5b50604080516020600480358082013583810280860185019096528085526103b395369593946024949385019291829185019084908082843750949750611cde9650505050505050565b3480156108fe57600080fd5b50610275600160a060020a0360043516602435611d70565b34801561092257600080fd5b506103b3611ef4565b34801561093757600080fd5b506103b3611f57565b34801561094c57600080fd5b50610821611fb5565b34801561096157600080fd5b50610275600160a060020a0360043516602435611fc4565b34801561098557600080fd5b5061027561205d565b34801561099a57600080fd5b506103ca600160a060020a0360043581169060243516612187565b3480156109c157600080fd5b50604080516020600480358082013583810280860185019096528085526103b3953695939460249493850192918291850190849080828437509497506121b29650505050505050565b348015610a1657600080fd5b50610275612244565b348015610a2b57600080fd5b506103b3600160a060020a0360043516612249565b60055474010000000000000000000000000000000000000000900460ff1681565b600954610100900460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610bcd826006836040518082805190602001908083835b60208310610b995780518252601f199092019160209182019101610b7a565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506122a2565b5050565b60015490565b60408051808201909152600981526000805160206129d6833981519152602082015281565b610c0533611b50565b1515610c57576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610c84816040805190810160405280600a81526020016000805160206129f68339815191528152506122b7565b60408051600160a060020a038316815290517f1b994db1a6d945cc30132de7ed4aa052f750744469da7327b463cc0f94df87c09181900360200190a150565b600354600160a060020a03163314610d13576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b610d4081604080519081016040528060068152602001600080516020612a168339815191528152506122b7565b50565b6000610daf836006846040518082805190602001908083835b60208310610d7b5780518252601f199092019160209182019101610d5c565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506123d8565b9392505050565b600083610de6816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15610e29576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b83610e57816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15610e9a576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b600954859062010000900460ff1615610eda57610eda816040805190810160405280600981526020016000805160206129d6833981519152815250610b63565b610ee58787876123f7565b1515610f3b576040805160e560020a62461bcd02815260206004820152600f60248201527f5472616e73666572206661696c65640000000000000000000000000000000000604482015290519081900360640190fd5b5060019695505050505050565b6000610f5333611b50565b1515610fa5576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd57610fd28282815181101515610fc357fe5b90602001906020020151610fda565b600101610fa9565b610fe333611b50565b1515611035576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610d40816040805190810160405280600981526020016000805160206129d683398151915281525061255c565b600160a060020a03831660009081526020819052604081205482111561108757600080fd5b600160a060020a038316151561109c57600080fd5b600160a060020a0384166000908152602081905260409020546110c5908363ffffffff61263d16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546110fa908363ffffffff61264f16565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919392881692600080516020612a7683398151915292918290030190a35060019392505050565b60095460ff1681565b600354600090600160a060020a031633146111a3576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b826111d1816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611214576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b600954849062010000900460ff161561125457611254816040805190810160405280600981526020016000805160206129d6833981519152815250610b63565b61125e858561265c565b50600195945050505050565b33611298816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b156112db576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b610bcd3383612752565b6112ee33611b50565b1515611340576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610d40816040805190810160405280600a81526020016000805160206129f683398151915281525061255c565b600554600160a060020a031633146113cf576040805160e560020a62461bcd02815260206004820152601e60248201527f63616c6c6572206973206e6f7420736572766963652070726f76696465720000604482015290519081900360640190fd5b600160a060020a038116151561142f576040805160e560020a62461bcd02815260206004820152601160248201527f5f70726963696e67506c616e2069732030000000000000000000000000000000604482015290519081900360640190fd5b600454600160a060020a0382811691161415611495576040805160e560020a62461bcd02815260206004820152601b60248201527f5f70726963696e67506c616e203d3d2070726963696e67506c616e0000000000604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560405133907f9c9a71911f32ca6a40ea2146f75e1c43335f2862b3c1c9696d22cd10e86311c290600090a350565b600354600160a060020a0316331461153e576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b610d4081604080519081016040528060068152602001600080516020612a1683398151915281525061255c565b60095462010000900460ff1681565b600061158533611b50565b15156115d7576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b6115e0836117ff565b90506115ed838383611062565b5060408051600160a060020a0380861682528416602082015280820183905290517f95791f1c4aac383dc757e59da6599f6317ec2579228e1a9eeeafb80d7418c5349181900360600190a1505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561169257336000908152600260209081526040808320600160a060020a03881684529091528120556116c7565b6116a2818463ffffffff61263d16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600061175c826040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b92915050565b61176b33611b50565b15156117bd576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b600160a060020a03811615156117d257600080fd5b610d1333604080519081016040528060068152602001600080516020612a1683398151915281525061255c565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461186a576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b60006118cc33611b50565b151561191e576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b611927826117ff565b9050611934823383611062565b5060408051600160a060020a03841681526020810183905281517fc2a82dd1d41e6a3fbca08bb53dc147df1241ab3942b5a540e1e2630dd05cf393929181900390910190a15050565b6040805180820190915260068152600080516020612a16833981519152602082015281565b816119d0816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611a13576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b611a1d8383612752565b505050565b611a2b33611b50565b1515611a7d576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b610d40816040805190810160405280600981526020016000805160206129d68339815191528152506122b7565b600354600090600160a060020a03163314611afd576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b600954610100900460ff1615611b1257600080fd5b6009805461ff0019166101001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600061175c82604080519081016040528060068152602001600080516020612a16833981519152815250610d43565b6000611b8a33611b50565b1515611bdc576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd57611c098282815181101515611bfa57fe5b906020019060200201516112e5565b600101611be0565b600554600160a060020a031681565b600354600160a060020a031681565b60408051808201909152600a81526000805160206129f6833981519152602082015281565b6008805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b600061175c826040805190810160405280600981526020016000805160206129d6833981519152815250610d43565b6000611ce933611b50565b1515611d3b576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd57611d688282815181101515611d5957fe5b90602001906020020151610bfc565b600101611d3f565b600033611da0816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611de3576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b83611e11816040805190810160405280600a81526020016000805160206129f6833981519152815250610d43565b15611e54576040805160e560020a62461bcd02815260206004820152600e6024820152600080516020612a96833981519152604482015290519081900360640190fd5b600954859062010000900460ff1615611e9457611e94816040805190810160405280600981526020016000805160206129d6833981519152815250610b63565b611e9e8686612841565b151561125e576040805160e560020a62461bcd02815260206004820152600f60248201527f5472616e73666572206661696c65640000000000000000000000000000000000604482015290519081900360640190fd5b600354600160a060020a03163314611f44576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b6009805462ff0000191662010000179055565b600354600160a060020a03163314611fa7576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b6009805462ff000019169055565b600454600160a060020a031681565b336000908152600260209081526040808320600160a060020a0386168452909152812054611ff8908363ffffffff61264f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600354600090600160a060020a031633146120b0576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b60055474010000000000000000000000000000000000000000900460ff1615612123576040805160e560020a62461bcd02815260206004820152601060248201527f6275726e696e672066696e697368656400000000000000000000000000000000604482015290519081900360640190fd5b6005805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517f568cefe030b2537eb3dba37e9ebf22cfc3e51ae8aca52125c6053a0c16ca730a90600090a150600190565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60006121bd33611b50565b151561220f576040805160e560020a62461bcd0281526020600482015260226024820152600080516020612a36833981519152604482015260f160020a6132b902606482015290519081900360840190fd5b5060005b8151811015610bcd5761223c828281518110151561222d57fe5b90602001906020020151611a22565b600101612213565b600190565b600354600160a060020a03163314612299576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612a56833981519152604482015290519081900360640190fd5b610d4081612910565b6122ac82826123d8565b1515610bcd57600080fd5b612321826006836040518082805190602001908083835b602083106122ed5780518252601f1990920191602091820191016122ce565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209291505061298e565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612399578181015183820152602001612381565b50505050905090810190601f1680156123c65780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b600160a060020a03166000908152602091909152604090205460ff1690565b6000600160a060020a038316151561240e57600080fd5b600160a060020a03841660009081526020819052604090205482111561243357600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561246357600080fd5b600160a060020a03841660009081526020819052604090205461248c908363ffffffff61263d16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546124c1908363ffffffff61264f16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054612503908363ffffffff61263d16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020612a76833981519152929181900390910190a35060019392505050565b6125c6826006836040518082805190602001908083835b602083106125925780518252601f199092019160209182019101612573565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506129b3565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a03168152602001806020018281038252838181518152602001915080519060200190808383600083811015612399578181015183820152602001612381565b60008282111561264957fe5b50900390565b8181018281101561175c57fe5b600354600090600160a060020a0316331461267657600080fd5b600954610100900460ff161561268b57600080fd5b60015461269e908363ffffffff61264f16565b600155600160a060020a0383166000908152602081905260409020546126ca908363ffffffff61264f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020612a768339815191529181900360200190a350600192915050565b600160a060020a03821660009081526020819052604090205481111561277757600080fd5b600160a060020a0382166000908152602081905260409020546127a0908263ffffffff61263d16565b600160a060020a0383166000908152602081905260409020556001546127cc908263ffffffff61263d16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020612a768339815191529181900360200190a35050565b6000600160a060020a038316151561285857600080fd5b3360009081526020819052604090205482111561287457600080fd5b33600090815260208190526040902054612894908363ffffffff61263d16565b3360009081526020819052604080822092909255600160a060020a038516815220546128c6908363ffffffff61264f16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020612a768339815191529281900390910190a350600192915050565b600160a060020a038116151561292557600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0316600090815260209190915260409020805460ff19169055560077686974656c697374000000000000000000000000000000000000000000000066726f7a656e6c6973740000000000000000000000000000000000000000000069737375657200000000000000000000000000000000000000000000000000004973737561626c653a2063616c6c6572206973206e6f742074686520697373754f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4163636f756e742066726f7a656e000000000000000000000000000000000000a165627a7a723058203d645412c0d83d03c2085b31cda2c9986d42653abcfd86a9bd5ad1f82294661d0029a165627a7a72305820b09c8d9893f25c83769cb771459c3cc082b81d7fa36b4315c2de572e1b2911570029

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

000000000000000000000000749aba9e082ccb185d1ef88fa514339e3c3368d3

-----Decoded View---------------
Arg [0] : _pricingPlan (address): 0x749aBA9E082ccb185D1EF88Fa514339e3c3368D3

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000749aba9e082ccb185d1ef88fa514339e3c3368d3


Deployed Bytecode Sourcemap

35303:1064:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3662:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3662:95:0;;;;;;5501:374;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5501:374:0;-1:-1:-1;;;;;5501:374:0;;;;;35519:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35519:87:0;;;;;;;;;;;;;;;;;;;;3041:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3041:26:0;;;;;;;;;;;;;;;;;;;;;;2041:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2041:114:0;;;;3482:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3482:93:0;;;;1423:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1423:20:0;;;;;;;;-1:-1:-1;;;;;1423:20:0;;;;;;;;;;;;;;35780:584;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35780:584:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35780:584:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35780:584:0;;;;-1:-1:-1;35780:584:0;-1:-1:-1;35780:584:0;;-1:-1:-1;35780:584:0;;;;;;;;-1:-1:-1;35780:584:0;;-1:-1:-1;;;;35780:584:0;;;;;-1:-1:-1;;;35780:584:0;;;-1:-1:-1;;;;;35780:584:0;;;5266:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5266:34:0;;;;2323:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2323:105:0;-1:-1:-1;;;;;2323:105:0;;;;;35460:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35460:50:0;;;;3662:95;1926:5;;-1:-1:-1;;;;;1926:5:0;1912:10;:19;1904:28;;;;;;3377:6;;;;;;;3369:15;;;;;;;;3725:5;3716:14;;-1:-1:-1;;3716:14:0;;;3742:9;;;;3725:5;3742:9;3662:95::o;5501:374::-;1926:5;;-1:-1:-1;;;;;1926:5:0;1912:10;:19;1904:28;;;;;;5583:25;:12;-1:-1:-1;;;;;5583:23:0;;:25::i;:::-;5575:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5693:11;;-1:-1:-1;;;;;5660:44:0;;;5693:11;;5660:44;;5652:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5759:11;:43;;-1:-1:-1;;5759:43:0;-1:-1:-1;;;;;5759:43:0;;;;;;;;5820:47;;5842:10;;5820:47;;-1:-1:-1;;5820:47:0;5501:374;:::o;35519:87::-;;;:::o;3041:26::-;;;;;;;;;:::o;2041:114::-;1926:5;;-1:-1:-1;;;;;1926:5:0;1912:10;:19;1904:28;;;;;;2118:5;;;2099:25;;-1:-1:-1;;;;;2118:5:0;;;;2099:25;;;2147:1;2131:18;;-1:-1:-1;;2131:18:0;;;2041:114::o;3482:93::-;1926:5;;-1:-1:-1;;;;;1926:5:0;1912:10;:19;1904:28;;;;;;3217:6;;;;;;;3216:7;3208:16;;;;;;3537:6;:13;;-1:-1:-1;;3537:13:0;;;;;3562:7;;;;3537:6;3562:7;3482:93::o;1423:20::-;;;-1:-1:-1;;;;;1423:20:0;;:::o;35780:584::-;35905:29;36097:5;;35997;;36017:7;;36039:16;;36070:12;;-1:-1:-1;;;;;36097:5:0;35961:152;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35961:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-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;35961:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35961:152: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;35961:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;36189:41:0;;;;;;36219:10;36189:41;;;;;;35947:166;;-1:-1:-1;;;;;;36189:29:0;;;;;:41;;;;;-1:-1:-1;;36189:41:0;;;;;;;;-1:-1:-1;36189:29:0;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;36189:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;36251:82:0;;;;;;36271:34;36251:82;;;;35500:10;36251:82;;;;36322:10;36251:82;;;;;;-1:-1:-1;;;;;36251:19:0;;;-1:-1:-1;36251:19:0;;-1:-1:-1;36251:82:0;;;;;;;;;;;;;;;:19;:82;;;5:2:-1;;;;30:1;27;20:12;5:2;36251:82:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36251:82:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36251:82:0;36243:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35780:584;;;;;;:::o;5266:34::-;;;-1:-1:-1;;;;;5266:34:0;;:::o;2323:105::-;1926:5;;-1:-1:-1;;;;;1926:5:0;1912:10;:19;1904:28;;;;;;2393:29;2412:9;2393:18;:29::i;:::-;2323:105;:::o;35460:50::-;35500:10;35460:50;:::o;514:587::-;571:4;1055:17;;1087:8;;514:587::o;2569:175::-;-1:-1:-1;;;;;2640:23:0;;;;2632:32;;;;;;2697:5;;;2676:38;;-1:-1:-1;;;;;2676:38:0;;;;2697:5;;;2676:38;;;2721:5;:17;;-1:-1:-1;;2721:17:0;-1:-1:-1;;;;;2721:17:0;;;;;;;;;;2569:175::o;35303:1064::-;;;;;;;;;;:::o

Swarm Source

bzzr://b09c8d9893f25c83769cb771459c3cc082b81d7fa36b4315c2de572e1b291157

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.