ETH Price: $2,641.50 (+1.11%)

Token

Wolf Token (WOLF)
 

Overview

Max Total Supply

2,704,541.318091796881572759 WOLF

Holders

55 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
damai.eth
Balance
9,842.355908403096639339 WOLF

Value
$0.00
0xe29a5dbddf7c94238584dc0cc12913efed5643ae
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Werewolf is a DeFi ecosystem harnessing the blockchain power to evolve cryptocurrency. Having an easy-to-use interface, Werewolf provides a decentralised exchange, Staking Protocol and Decentralized Asset Management.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ETHWolfToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-20
*/

pragma solidity ^0.4.24;

/**
 *                              __
                            .d$$b
                          .' TO$;\
                         /  : TP._;
                        / _.;  :Tb|
                       /   /   ;j$j
                   _.-"       d$$$$
                 .' ..       d$$$$;
                /  /P'      d$$$$P. |\
               /   "      .d$$$P' |\^"l
             .'           `T$P^"""""  :
         ._.'      _.'                ;
      `-.-".-'-' ._.       _.-"    .-"
    `.-" _____  ._              .-"
   -(.g$$$$$$b.              .'
     ""^^T$$$P^)            .(:
       _/  -"  /.'         /:/;
    ._.'-'`-'  ")/         /;/;
 `-.-"..--""   " /         /  ;
.-" ..--""        -'          :
..--""--.-"         (\      .-(\
  ..--""              `-\(\/;`
    _.                      :
                            ;`-
                           :\
                           ;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.4.24;

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

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts 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 c;
  }

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

    return c;
  }

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

    return c;
  }

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

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

pragma solidity ^0.4.24;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

pragma solidity ^0.4.24;



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract ERC20 is IERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;

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

  uint256 private _totalSupply;

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

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

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

  /**
  * @dev Transfer token 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) {
    _transfer(msg.sender, to, value);
    return true;
  }

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

    _allowed[msg.sender][spender] = value;
    emit Approval(msg.sender, spender, value);
    return true;
  }

  /**
   * @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(value <= _allowed[from][msg.sender]);

    _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
    _transfer(from, to, value);
    return true;
  }

  /**
   * @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 increaseAllowance(
    address spender,
    uint256 addedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _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 decreaseAllowance(
    address spender,
    uint256 subtractedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].sub(subtractedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

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

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

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

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

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

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

    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
      value);
    _burn(account, value);
  }
}

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

pragma solidity ^0.4.24;


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

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

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

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

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

// File: contracts/math/Power.sol

pragma solidity 0.4.25;


 /**
 * @title Power function by Bancor
 * @dev https://github.com/bancorprotocol/contracts
 *
 * Modified from the original by Slava Balasanov & Tarrence van As
 *
 * Split Power.sol out from BancorFormula.sol
 * https://github.com/bancorprotocol/contracts/blob/c9adc95e82fdfb3a0ada102514beb8ae00147f5d/solidity/contracts/converter/BancorFormula.sol
 *
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements;
 * and to You under the Apache License, Version 2.0. "
 */
contract Power {
    string public version = "0.3";

    uint256 private constant ONE = 1;
    uint32 private constant MAX_WEIGHT = 1000000;
    uint8 private constant MIN_PRECISION = 32;
    uint8 private constant MAX_PRECISION = 127;

    /**
      The values below depend on MAX_PRECISION. If you choose to change it:
      Apply the same change in file 'PrintIntScalingFactors.py', run it and paste the results below.
    */
    uint256 private constant FIXED_1 = 0x080000000000000000000000000000000;
    uint256 private constant FIXED_2 = 0x100000000000000000000000000000000;
    uint256 private constant MAX_NUM = 0x200000000000000000000000000000000;

    /**
        Auto-generated via 'PrintLn2ScalingFactors.py'
    */
    uint256 private constant LN2_NUMERATOR   = 0x3f80fe03f80fe03f80fe03f80fe03f8;
    uint256 private constant LN2_DENOMINATOR = 0x5b9de1d10bf4103d647b0955897ba80;

    /**
        Auto-generated via 'PrintFunctionOptimalLog.py' and 'PrintFunctionOptimalExp.py'
    */
    uint256 private constant OPT_LOG_MAX_VAL = 0x15bf0a8b1457695355fb8ac404e7a79e3;
    uint256 private constant OPT_EXP_MAX_VAL = 0x800000000000000000000000000000000;

    /**
      The values below depend on MIN_PRECISION and MAX_PRECISION. If you choose to change either one of them:
      Apply the same change in file 'PrintFunctionBancorFormula.py', run it and paste the results below.
    */
    uint256[128] private maxExpArray;

    constructor() public {
    //  maxExpArray[0] = 0x6bffffffffffffffffffffffffffffffff;
    //  maxExpArray[1] = 0x67ffffffffffffffffffffffffffffffff;
    //  maxExpArray[2] = 0x637fffffffffffffffffffffffffffffff;
    //  maxExpArray[3] = 0x5f6fffffffffffffffffffffffffffffff;
    //  maxExpArray[4] = 0x5b77ffffffffffffffffffffffffffffff;
    //  maxExpArray[5] = 0x57b3ffffffffffffffffffffffffffffff;
    //  maxExpArray[6] = 0x5419ffffffffffffffffffffffffffffff;
    //  maxExpArray[7] = 0x50a2ffffffffffffffffffffffffffffff;
    //  maxExpArray[8] = 0x4d517fffffffffffffffffffffffffffff;
    //  maxExpArray[9] = 0x4a233fffffffffffffffffffffffffffff;
    //  maxExpArray[10] = 0x47165fffffffffffffffffffffffffffff;
    //  maxExpArray[11] = 0x4429afffffffffffffffffffffffffffff;
    //  maxExpArray[12] = 0x415bc7ffffffffffffffffffffffffffff;
    //  maxExpArray[13] = 0x3eab73ffffffffffffffffffffffffffff;
    //  maxExpArray[14] = 0x3c1771ffffffffffffffffffffffffffff;
    //  maxExpArray[15] = 0x399e96ffffffffffffffffffffffffffff;
    //  maxExpArray[16] = 0x373fc47fffffffffffffffffffffffffff;
    //  maxExpArray[17] = 0x34f9e8ffffffffffffffffffffffffffff;
    //  maxExpArray[18] = 0x32cbfd5fffffffffffffffffffffffffff;
    //  maxExpArray[19] = 0x30b5057fffffffffffffffffffffffffff;
    //  maxExpArray[20] = 0x2eb40f9fffffffffffffffffffffffffff;
    //  maxExpArray[21] = 0x2cc8340fffffffffffffffffffffffffff;
    //  maxExpArray[22] = 0x2af09481ffffffffffffffffffffffffff;
    //  maxExpArray[23] = 0x292c5bddffffffffffffffffffffffffff;
    //  maxExpArray[24] = 0x277abdcdffffffffffffffffffffffffff;
    //  maxExpArray[25] = 0x25daf6657fffffffffffffffffffffffff;
    //  maxExpArray[26] = 0x244c49c65fffffffffffffffffffffffff;
    //  maxExpArray[27] = 0x22ce03cd5fffffffffffffffffffffffff;
    //  maxExpArray[28] = 0x215f77c047ffffffffffffffffffffffff;
    //  maxExpArray[29] = 0x1fffffffffffffffffffffffffffffffff;
    //  maxExpArray[30] = 0x1eaefdbdabffffffffffffffffffffffff;
    //  maxExpArray[31] = 0x1d6bd8b2ebffffffffffffffffffffffff;
        maxExpArray[32] = 0x1c35fedd14ffffffffffffffffffffffff;
        maxExpArray[33] = 0x1b0ce43b323fffffffffffffffffffffff;
        maxExpArray[34] = 0x19f0028ec1ffffffffffffffffffffffff;
        maxExpArray[35] = 0x18ded91f0e7fffffffffffffffffffffff;
        maxExpArray[36] = 0x17d8ec7f0417ffffffffffffffffffffff;
        maxExpArray[37] = 0x16ddc6556cdbffffffffffffffffffffff;
        maxExpArray[38] = 0x15ecf52776a1ffffffffffffffffffffff;
        maxExpArray[39] = 0x15060c256cb2ffffffffffffffffffffff;
        maxExpArray[40] = 0x1428a2f98d72ffffffffffffffffffffff;
        maxExpArray[41] = 0x13545598e5c23fffffffffffffffffffff;
        maxExpArray[42] = 0x1288c4161ce1dfffffffffffffffffffff;
        maxExpArray[43] = 0x11c592761c666fffffffffffffffffffff;
        maxExpArray[44] = 0x110a688680a757ffffffffffffffffffff;
        maxExpArray[45] = 0x1056f1b5bedf77ffffffffffffffffffff;
        maxExpArray[46] = 0x0faadceceeff8bffffffffffffffffffff;
        maxExpArray[47] = 0x0f05dc6b27edadffffffffffffffffffff;
        maxExpArray[48] = 0x0e67a5a25da4107fffffffffffffffffff;
        maxExpArray[49] = 0x0dcff115b14eedffffffffffffffffffff;
        maxExpArray[50] = 0x0d3e7a392431239fffffffffffffffffff;
        maxExpArray[51] = 0x0cb2ff529eb71e4fffffffffffffffffff;
        maxExpArray[52] = 0x0c2d415c3db974afffffffffffffffffff;
        maxExpArray[53] = 0x0bad03e7d883f69bffffffffffffffffff;
        maxExpArray[54] = 0x0b320d03b2c343d5ffffffffffffffffff;
        maxExpArray[55] = 0x0abc25204e02828dffffffffffffffffff;
        maxExpArray[56] = 0x0a4b16f74ee4bb207fffffffffffffffff;
        maxExpArray[57] = 0x09deaf736ac1f569ffffffffffffffffff;
        maxExpArray[58] = 0x0976bd9952c7aa957fffffffffffffffff;
        maxExpArray[59] = 0x09131271922eaa606fffffffffffffffff;
        maxExpArray[60] = 0x08b380f3558668c46fffffffffffffffff;
        maxExpArray[61] = 0x0857ddf0117efa215bffffffffffffffff;
        maxExpArray[62] = 0x07ffffffffffffffffffffffffffffffff;
        maxExpArray[63] = 0x07abbf6f6abb9d087fffffffffffffffff;
        maxExpArray[64] = 0x075af62cbac95f7dfa7fffffffffffffff;
        maxExpArray[65] = 0x070d7fb7452e187ac13fffffffffffffff;
        maxExpArray[66] = 0x06c3390ecc8af379295fffffffffffffff;
        maxExpArray[67] = 0x067c00a3b07ffc01fd6fffffffffffffff;
        maxExpArray[68] = 0x0637b647c39cbb9d3d27ffffffffffffff;
        maxExpArray[69] = 0x05f63b1fc104dbd39587ffffffffffffff;
        maxExpArray[70] = 0x05b771955b36e12f7235ffffffffffffff;
        maxExpArray[71] = 0x057b3d49dda84556d6f6ffffffffffffff;
        maxExpArray[72] = 0x054183095b2c8ececf30ffffffffffffff;
        maxExpArray[73] = 0x050a28be635ca2b888f77fffffffffffff;
        maxExpArray[74] = 0x04d5156639708c9db33c3fffffffffffff;
        maxExpArray[75] = 0x04a23105873875bd52dfdfffffffffffff;
        maxExpArray[76] = 0x0471649d87199aa990756fffffffffffff;
        maxExpArray[77] = 0x04429a21a029d4c1457cfbffffffffffff;
        maxExpArray[78] = 0x0415bc6d6fb7dd71af2cb3ffffffffffff;
        maxExpArray[79] = 0x03eab73b3bbfe282243ce1ffffffffffff;
        maxExpArray[80] = 0x03c1771ac9fb6b4c18e229ffffffffffff;
        maxExpArray[81] = 0x0399e96897690418f785257fffffffffff;
        maxExpArray[82] = 0x0373fc456c53bb779bf0ea9fffffffffff;
        maxExpArray[83] = 0x034f9e8e490c48e67e6ab8bfffffffffff;
        maxExpArray[84] = 0x032cbfd4a7adc790560b3337ffffffffff;
        maxExpArray[85] = 0x030b50570f6e5d2acca94613ffffffffff;
        maxExpArray[86] = 0x02eb40f9f620fda6b56c2861ffffffffff;
        maxExpArray[87] = 0x02cc8340ecb0d0f520a6af58ffffffffff;
        maxExpArray[88] = 0x02af09481380a0a35cf1ba02ffffffffff;
        maxExpArray[89] = 0x0292c5bdd3b92ec810287b1b3fffffffff;
        maxExpArray[90] = 0x0277abdcdab07d5a77ac6d6b9fffffffff;
        maxExpArray[91] = 0x025daf6654b1eaa55fd64df5efffffffff;
        maxExpArray[92] = 0x0244c49c648baa98192dce88b7ffffffff;
        maxExpArray[93] = 0x022ce03cd5619a311b2471268bffffffff;
        maxExpArray[94] = 0x0215f77c045fbe885654a44a0fffffffff;
        maxExpArray[95] = 0x01ffffffffffffffffffffffffffffffff;
        maxExpArray[96] = 0x01eaefdbdaaee7421fc4d3ede5ffffffff;
        maxExpArray[97] = 0x01d6bd8b2eb257df7e8ca57b09bfffffff;
        maxExpArray[98] = 0x01c35fedd14b861eb0443f7f133fffffff;
        maxExpArray[99] = 0x01b0ce43b322bcde4a56e8ada5afffffff;
        maxExpArray[100] = 0x019f0028ec1fff007f5a195a39dfffffff;
        maxExpArray[101] = 0x018ded91f0e72ee74f49b15ba527ffffff;
        maxExpArray[102] = 0x017d8ec7f04136f4e5615fd41a63ffffff;
        maxExpArray[103] = 0x016ddc6556cdb84bdc8d12d22e6fffffff;
        maxExpArray[104] = 0x015ecf52776a1155b5bd8395814f7fffff;
        maxExpArray[105] = 0x015060c256cb23b3b3cc3754cf40ffffff;
        maxExpArray[106] = 0x01428a2f98d728ae223ddab715be3fffff;
        maxExpArray[107] = 0x013545598e5c23276ccf0ede68034fffff;
        maxExpArray[108] = 0x01288c4161ce1d6f54b7f61081194fffff;
        maxExpArray[109] = 0x011c592761c666aa641d5a01a40f17ffff;
        maxExpArray[110] = 0x0110a688680a7530515f3e6e6cfdcdffff;
        maxExpArray[111] = 0x01056f1b5bedf75c6bcb2ce8aed428ffff;
        maxExpArray[112] = 0x00faadceceeff8a0890f3875f008277fff;
        maxExpArray[113] = 0x00f05dc6b27edad306388a600f6ba0bfff;
        maxExpArray[114] = 0x00e67a5a25da41063de1495d5b18cdbfff;
        maxExpArray[115] = 0x00dcff115b14eedde6fc3aa5353f2e4fff;
        maxExpArray[116] = 0x00d3e7a3924312399f9aae2e0f868f8fff;
        maxExpArray[117] = 0x00cb2ff529eb71e41582cccd5a1ee26fff;
        maxExpArray[118] = 0x00c2d415c3db974ab32a51840c0b67edff;
        maxExpArray[119] = 0x00bad03e7d883f69ad5b0a186184e06bff;
        maxExpArray[120] = 0x00b320d03b2c343d4829abd6075f0cc5ff;
        maxExpArray[121] = 0x00abc25204e02828d73c6e80bcdb1a95bf;
        maxExpArray[122] = 0x00a4b16f74ee4bb2040a1ec6c15fbbf2df;
        maxExpArray[123] = 0x009deaf736ac1f569deb1b5ae3f36c130f;
        maxExpArray[124] = 0x00976bd9952c7aa957f5937d790ef65037;
        maxExpArray[125] = 0x009131271922eaa6064b73a22d0bd4f2bf;
        maxExpArray[126] = 0x008b380f3558668c46c91c49a2f8e967b9;
        maxExpArray[127] = 0x00857ddf0117efa215952912839f6473e6;
    }

    /**
      General Description:
          Determine a value of precision.
          Calculate an integer approximation of (_baseN / _baseD) ^ (_expN / _expD) * 2 ^ precision.
          Return the result along with the precision used.
      Detailed Description:
          Instead of calculating "base ^ exp", we calculate "e ^ (log(base) * exp)".
          The value of "log(base)" is represented with an integer slightly smaller than "log(base) * 2 ^ precision".
          The larger "precision" is, the more accurately this value represents the real value.
          However, the larger "precision" is, the more bits are required in order to store this value.
          And the exponentiation function, which takes "x" and calculates "e ^ x", is limited to a maximum exponent (maximum value of "x").
          This maximum exponent depends on the "precision" used, and it is given by "maxExpArray[precision] >> (MAX_PRECISION - precision)".
          Hence we need to determine the highest precision which can be used for the given input, before calling the exponentiation function.
          This allows us to compute "base ^ exp" with maximum accuracy and without exceeding 256 bits in any of the intermediate computations.
          This functions assumes that "_expN < 2 ^ 256 / log(MAX_NUM - 1)", otherwise the multiplication should be replaced with a "safeMul".
    */
    function power(
        uint256 _baseN,
        uint256 _baseD,
        uint32 _expN,
        uint32 _expD
    ) internal view returns (uint256, uint8)
    {
        require(_baseN < MAX_NUM, "baseN exceeds max value.");
        require(_baseN >= _baseD, "Bases < 1 are not supported.");

        uint256 baseLog;
        uint256 base = _baseN * FIXED_1 / _baseD;
        if (base < OPT_LOG_MAX_VAL) {
            baseLog = optimalLog(base);
        } else {
            baseLog = generalLog(base);
        }

        uint256 baseLogTimesExp = baseLog * _expN / _expD;
        if (baseLogTimesExp < OPT_EXP_MAX_VAL) {
            return (optimalExp(baseLogTimesExp), MAX_PRECISION);
        } else {
            uint8 precision = findPositionInMaxExpArray(baseLogTimesExp);
            return (generalExp(baseLogTimesExp >> (MAX_PRECISION - precision), precision), precision);
        }
    }

    /**
        Compute log(x / FIXED_1) * FIXED_1.
        This functions assumes that "x >= FIXED_1", because the output would be negative otherwise.
    */
    function generalLog(uint256 _x) internal pure returns (uint256) {
        uint256 res = 0;
        uint256 x = _x;

        // If x >= 2, then we compute the integer part of log2(x), which is larger than 0.
        if (x >= FIXED_2) {
            uint8 count = floorLog2(x / FIXED_1);
            x >>= count; // now x < 2
            res = count * FIXED_1;
        }

        // If x > 1, then we compute the fraction part of log2(x), which is larger than 0.
        if (x > FIXED_1) {
            for (uint8 i = MAX_PRECISION; i > 0; --i) {
                x = (x * x) / FIXED_1; // now 1 < x < 4
                if (x >= FIXED_2) {
                    x >>= 1; // now 1 < x < 2
                    res += ONE << (i - 1);
                }
            }
        }

        return res * LN2_NUMERATOR / LN2_DENOMINATOR;
    }

    /**
      Compute the largest integer smaller than or equal to the binary logarithm of the input.
    */
    function floorLog2(uint256 _n) internal pure returns (uint8) {
        uint8 res = 0;
        uint256 n = _n;

        if (n < 256) {
            // At most 8 iterations
            while (n > 1) {
                n >>= 1;
                res += 1;
            }
        } else {
            // Exactly 8 iterations
            for (uint8 s = 128; s > 0; s >>= 1) {
                if (n >= (ONE << s)) {
                    n >>= s;
                    res |= s;
                }
            }
        }

        return res;
    }

    /**
        The global "maxExpArray" is sorted in descending order, and therefore the following statements are equivalent:
        - This function finds the position of [the smallest value in "maxExpArray" larger than or equal to "x"]
        - This function finds the highest position of [a value in "maxExpArray" larger than or equal to "x"]
    */
    function findPositionInMaxExpArray(uint256 _x)
    internal view returns (uint8)
    {
        uint8 lo = MIN_PRECISION;
        uint8 hi = MAX_PRECISION;

        while (lo + 1 < hi) {
            uint8 mid = (lo + hi) / 2;
            if (maxExpArray[mid] >= _x)
                lo = mid;
            else
                hi = mid;
        }

        if (maxExpArray[hi] >= _x)
            return hi;
        if (maxExpArray[lo] >= _x)
            return lo;

        assert(false);
        return 0;
    }

    /* solhint-disable */
    /**
        This function can be auto-generated by the script 'PrintFunctionGeneralExp.py'.
        It approximates "e ^ x" via maclaurin summation: "(x^0)/0! + (x^1)/1! + ... + (x^n)/n!".
        It returns "e ^ (x / 2 ^ precision) * 2 ^ precision", that is, the result is upshifted for accuracy.
        The global "maxExpArray" maps each "precision" to "((maximumExponent + 1) << (MAX_PRECISION - precision)) - 1".
        The maximum permitted value for "x" is therefore given by "maxExpArray[precision] >> (MAX_PRECISION - precision)".
    */
    function generalExp(uint256 _x, uint8 _precision) internal pure returns (uint256) {
        uint256 xi = _x;
        uint256 res = 0;

        xi = (xi * _x) >> _precision; res += xi * 0x3442c4e6074a82f1797f72ac0000000; // add x^02 * (33! / 02!)
        xi = (xi * _x) >> _precision; res += xi * 0x116b96f757c380fb287fd0e40000000; // add x^03 * (33! / 03!)
        xi = (xi * _x) >> _precision; res += xi * 0x045ae5bdd5f0e03eca1ff4390000000; // add x^04 * (33! / 04!)
        xi = (xi * _x) >> _precision; res += xi * 0x00defabf91302cd95b9ffda50000000; // add x^05 * (33! / 05!)
        xi = (xi * _x) >> _precision; res += xi * 0x002529ca9832b22439efff9b8000000; // add x^06 * (33! / 06!)
        xi = (xi * _x) >> _precision; res += xi * 0x00054f1cf12bd04e516b6da88000000; // add x^07 * (33! / 07!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000a9e39e257a09ca2d6db51000000; // add x^08 * (33! / 08!)
        xi = (xi * _x) >> _precision; res += xi * 0x000012e066e7b839fa050c309000000; // add x^09 * (33! / 09!)
        xi = (xi * _x) >> _precision; res += xi * 0x000001e33d7d926c329a1ad1a800000; // add x^10 * (33! / 10!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000002bee513bdb4a6b19b5f800000; // add x^11 * (33! / 11!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000003a9316fa79b88eccf2a00000; // add x^12 * (33! / 12!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000048177ebe1fa812375200000; // add x^13 * (33! / 13!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000005263fe90242dcbacf00000; // add x^14 * (33! / 14!)
        xi = (xi * _x) >> _precision; res += xi * 0x000000000057e22099c030d94100000; // add x^15 * (33! / 15!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000000057e22099c030d9410000; // add x^16 * (33! / 16!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000000000052b6b54569976310000; // add x^17 * (33! / 17!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000000000004985f67696bf748000; // add x^18 * (33! / 18!)
        xi = (xi * _x) >> _precision; res += xi * 0x000000000000003dea12ea99e498000; // add x^19 * (33! / 19!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000000000000031880f2214b6e000; // add x^20 * (33! / 20!)
        xi = (xi * _x) >> _precision; res += xi * 0x000000000000000025bcff56eb36000; // add x^21 * (33! / 21!)
        xi = (xi * _x) >> _precision; res += xi * 0x000000000000000001b722e10ab1000; // add x^22 * (33! / 22!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000000000000001317c70077000; // add x^23 * (33! / 23!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000000000000000000cba84aafa00; // add x^24 * (33! / 24!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000000000000000000082573a0a00; // add x^25 * (33! / 25!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000000000000000000005035ad900; // add x^26 * (33! / 26!)
        xi = (xi * _x) >> _precision; res += xi * 0x000000000000000000000002f881b00; // add x^27 * (33! / 27!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000000000000000000001b29340; // add x^28 * (33! / 28!)
        xi = (xi * _x) >> _precision; res += xi * 0x00000000000000000000000000efc40; // add x^29 * (33! / 29!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000000000000000000000007fe0; // add x^30 * (33! / 30!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000000000000000000000000420; // add x^31 * (33! / 31!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000000000000000000000000021; // add x^32 * (33! / 32!)
        xi = (xi * _x) >> _precision; res += xi * 0x0000000000000000000000000000001; // add x^33 * (33! / 33!)

        return res / 0x688589cc0e9505e2f2fee5580000000 + _x + (ONE << _precision); // divide by 33! and then add x^1 / 1! + x^0 / 0!
    }

    /**
        Return log(x / FIXED_1) * FIXED_1
        Input range: FIXED_1 <= x <= LOG_EXP_MAX_VAL - 1
        Auto-generated via 'PrintFunctionOptimalLog.py'
    */
    function optimalLog(uint256 x) internal pure returns (uint256) {
        uint256 res = 0;

        uint256 y;
        uint256 z;
        uint256 w;

        if (x >= 0xd3094c70f034de4b96ff7d5b6f99fcd8) {res += 0x40000000000000000000000000000000; x = x * FIXED_1 / 0xd3094c70f034de4b96ff7d5b6f99fcd8;}
        if (x >= 0xa45af1e1f40c333b3de1db4dd55f29a7) {res += 0x20000000000000000000000000000000; x = x * FIXED_1 / 0xa45af1e1f40c333b3de1db4dd55f29a7;}
        if (x >= 0x910b022db7ae67ce76b441c27035c6a1) {res += 0x10000000000000000000000000000000; x = x * FIXED_1 / 0x910b022db7ae67ce76b441c27035c6a1;}
        if (x >= 0x88415abbe9a76bead8d00cf112e4d4a8) {res += 0x08000000000000000000000000000000; x = x * FIXED_1 / 0x88415abbe9a76bead8d00cf112e4d4a8;}
        if (x >= 0x84102b00893f64c705e841d5d4064bd3) {res += 0x04000000000000000000000000000000; x = x * FIXED_1 / 0x84102b00893f64c705e841d5d4064bd3;}
        if (x >= 0x8204055aaef1c8bd5c3259f4822735a2) {res += 0x02000000000000000000000000000000; x = x * FIXED_1 / 0x8204055aaef1c8bd5c3259f4822735a2;}
        if (x >= 0x810100ab00222d861931c15e39b44e99) {res += 0x01000000000000000000000000000000; x = x * FIXED_1 / 0x810100ab00222d861931c15e39b44e99;}
        if (x >= 0x808040155aabbbe9451521693554f733) {res += 0x00800000000000000000000000000000; x = x * FIXED_1 / 0x808040155aabbbe9451521693554f733;}

        z = y = x - FIXED_1;
        w = y * y / FIXED_1;
        res += z * (0x100000000000000000000000000000000 - y) / 0x100000000000000000000000000000000; z = z * w / FIXED_1;
        res += z * (0x0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa - y) / 0x200000000000000000000000000000000; z = z * w / FIXED_1;
        res += z * (0x099999999999999999999999999999999 - y) / 0x300000000000000000000000000000000; z = z * w / FIXED_1;
        res += z * (0x092492492492492492492492492492492 - y) / 0x400000000000000000000000000000000; z = z * w / FIXED_1;
        res += z * (0x08e38e38e38e38e38e38e38e38e38e38e - y) / 0x500000000000000000000000000000000; z = z * w / FIXED_1;
        res += z * (0x08ba2e8ba2e8ba2e8ba2e8ba2e8ba2e8b - y) / 0x600000000000000000000000000000000; z = z * w / FIXED_1;
        res += z * (0x089d89d89d89d89d89d89d89d89d89d89 - y) / 0x700000000000000000000000000000000; z = z * w / FIXED_1;
        res += z * (0x088888888888888888888888888888888 - y) / 0x800000000000000000000000000000000;

        return res;
    }

    /**
        Return e ^ (x / FIXED_1) * FIXED_1
        Input range: 0 <= x <= OPT_EXP_MAX_VAL - 1
        Auto-generated via 'PrintFunctionOptimalExp.py'
    */
    function optimalExp(uint256 x) internal pure returns (uint256) {
        uint256 res = 0;

        uint256 y;
        uint256 z;

        z = y = x % 0x10000000000000000000000000000000;
        z = z * y / FIXED_1; res += z * 0x10e1b3be415a0000; // add y^02 * (20! / 02!)
        z = z * y / FIXED_1; res += z * 0x05a0913f6b1e0000; // add y^03 * (20! / 03!)
        z = z * y / FIXED_1; res += z * 0x0168244fdac78000; // add y^04 * (20! / 04!)
        z = z * y / FIXED_1; res += z * 0x004807432bc18000; // add y^05 * (20! / 05!)
        z = z * y / FIXED_1; res += z * 0x000c0135dca04000; // add y^06 * (20! / 06!)
        z = z * y / FIXED_1; res += z * 0x0001b707b1cdc000; // add y^07 * (20! / 07!)
        z = z * y / FIXED_1; res += z * 0x000036e0f639b800; // add y^08 * (20! / 08!)
        z = z * y / FIXED_1; res += z * 0x00000618fee9f800; // add y^09 * (20! / 09!)
        z = z * y / FIXED_1; res += z * 0x0000009c197dcc00; // add y^10 * (20! / 10!)
        z = z * y / FIXED_1; res += z * 0x0000000e30dce400; // add y^11 * (20! / 11!)
        z = z * y / FIXED_1; res += z * 0x000000012ebd1300; // add y^12 * (20! / 12!)
        z = z * y / FIXED_1; res += z * 0x0000000017499f00; // add y^13 * (20! / 13!)
        z = z * y / FIXED_1; res += z * 0x0000000001a9d480; // add y^14 * (20! / 14!)
        z = z * y / FIXED_1; res += z * 0x00000000001c6380; // add y^15 * (20! / 15!)
        z = z * y / FIXED_1; res += z * 0x000000000001c638; // add y^16 * (20! / 16!)
        z = z * y / FIXED_1; res += z * 0x0000000000001ab8; // add y^17 * (20! / 17!)
        z = z * y / FIXED_1; res += z * 0x000000000000017c; // add y^18 * (20! / 18!)
        z = z * y / FIXED_1; res += z * 0x0000000000000014; // add y^19 * (20! / 19!)
        z = z * y / FIXED_1; res += z * 0x0000000000000001; // add y^20 * (20! / 20!)
        res = res / 0x21c3677c82b40000 + y + FIXED_1; // divide by 20! and then add y^1 / 1! + y^0 / 0!

        if ((x & 0x010000000000000000000000000000000) != 0) res = res * 0x1c3d6a24ed82218787d624d3e5eba95f9 / 0x18ebef9eac820ae8682b9793ac6d1e776;
        if ((x & 0x020000000000000000000000000000000) != 0) res = res * 0x18ebef9eac820ae8682b9793ac6d1e778 / 0x1368b2fc6f9609fe7aceb46aa619baed4;
        if ((x & 0x040000000000000000000000000000000) != 0) res = res * 0x1368b2fc6f9609fe7aceb46aa619baed5 / 0x0bc5ab1b16779be3575bd8f0520a9f21f;
        if ((x & 0x080000000000000000000000000000000) != 0) res = res * 0x0bc5ab1b16779be3575bd8f0520a9f21e / 0x0454aaa8efe072e7f6ddbab84b40a55c9;
        if ((x & 0x100000000000000000000000000000000) != 0) res = res * 0x0454aaa8efe072e7f6ddbab84b40a55c5 / 0x00960aadc109e7a3bf4578099615711ea;
        if ((x & 0x200000000000000000000000000000000) != 0) res = res * 0x00960aadc109e7a3bf4578099615711d7 / 0x0002bf84208204f5977f9a8cf01fdce3d;
        if ((x & 0x400000000000000000000000000000000) != 0) res = res * 0x0002bf84208204f5977f9a8cf01fdc307 / 0x0000003c6ab775dd0b95b4cbee7e65d11;

        return res;
    }
    /* solhint-enable */
}

// File: contracts/math/BancorFormula.sol

pragma solidity 0.4.25;




/**
* @title Bancor formula by Bancor
*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements;
* and to You under the Apache License, Version 2.0. "
*/
contract BancorFormula is Power {
    using SafeMath for uint256;
    uint32 private constant MAX_RESERVE_RATIO = 1000000;

    /**
    * @dev given a wolf token supply, reserve token balance, reserve ratio, and a deposit amount (in the reserve token),
    * calculates the return for a given conversion (in the wolf token)
    *
    * Formula:
    * Return = _supply * ((1 + _depositAmount / _reserveBalance) ^ (_reserveRatio / MAX_RESERVE_RATIO) - 1)
    *
    * @param _supply              wolf token total supply
    * @param _reserveBalance    total reserve token balance
    * @param _reserveRatio     reserve ratio, represented in ppm, 1-1000000
    * @param _depositAmount       deposit amount, in reserve token
    *
    *  @return purchase return amount
    */
    function calculatePurchaseReturn(
        uint256 _supply,
        uint256 _reserveBalance,
        uint32 _reserveRatio,
        uint256 _depositAmount) public view returns (uint256)
    {
        // validate input
        require(_supply > 0 && _reserveBalance > 0 && _reserveRatio > 0 && _reserveRatio <= MAX_RESERVE_RATIO, "Invalid inputs.");
        // special case for 0 deposit amount
        if (_depositAmount == 0) {
            return 0;
        }
        // special case if the ratio = 100%
        if (_reserveRatio == MAX_RESERVE_RATIO) {
            return _supply.mul(_depositAmount).div(_reserveBalance);
        }
        uint256 result;
        uint8 precision;
        uint256 baseN = _depositAmount.add(_reserveBalance);
        (result, precision) = power(
            baseN, _reserveBalance, _reserveRatio, MAX_RESERVE_RATIO
        );
        uint256 newTokenSupply = _supply.mul(result) >> precision;
        return newTokenSupply.sub(_supply);
    }

    /**
    * @dev given a wolf token supply, reserve token balance, reserve ratio and a sell amount (in the wolf token),
    * calculates the return for a given conversion (in the reserve token)
    *
    * Formula:
    * Return = _reserveBalance * (1 - (1 - _sellAmount / _supply) ^ (1 / (_reserveRatio / MAX_RESERVE_RATIO)))
    *
    * @param _supply              wolf token total supply
    * @param _reserveBalance    total reserve token balance
    * @param _reserveRatio     constant reserve ratio, represented in ppm, 1-1000000
    * @param _sellAmount          sell amount, in the wolf token itself
    *
    * @return sale return amount
    */
    function calculateSaleReturn(
        uint256 _supply,
        uint256 _reserveBalance,
        uint32 _reserveRatio,
        uint256 _sellAmount) public view returns (uint256)
    {
        // validate input
        require(_supply > 0 && _reserveBalance > 0 && _reserveRatio > 0 && _reserveRatio <= MAX_RESERVE_RATIO && _sellAmount <= _supply, "Invalid inputs.");
        // special case for 0 sell amount
        if (_sellAmount == 0) {
            return 0;
        }
        // special case for selling the entire supply
        if (_sellAmount == _supply) {
            return _reserveBalance;
        }
        // special case if the ratio = 100%
        if (_reserveRatio == MAX_RESERVE_RATIO) {
            return _reserveBalance.mul(_sellAmount).div(_supply);
        }
        uint256 result;
        uint8 precision;
        uint256 baseD = _supply.sub(_sellAmount);
        (result, precision) = power(
            _supply, baseD, MAX_RESERVE_RATIO, _reserveRatio
        );
        uint256 oldBalance = _reserveBalance.mul(result);
        uint256 newBalance = _reserveBalance << precision;
        return oldBalance.sub(newBalance).div(result);
    }
}

// contracts/lib/ValidGasPrice.sol

pragma solidity 0.4.25;



contract ValidGasPrice is Ownable {
    uint256 public maxGasPrice = 1 * 10**18;

    modifier validGasPrice() {
        require(tx.gasprice <= maxGasPrice, "Gas price must be <= maximum gas price to prevent front running attacks.");
        _;
    }

    function setMaxGasPrice(uint256 newPrice) public onlyOwner {
        maxGasPrice = newPrice;
    }
}

// contracts/interfaces/IBondingCurve.sol

pragma solidity 0.4.25;


interface IBondingCurve {
    /**
    * @dev Given a reserve token amount, calculates the amount of wolf tokens returned.
    */
    function getWolfMintReward(uint _reserveTokenAmount) external view returns (uint);

    /**
    * @dev Given a wolf token amount, calculates the amount of reserve tokens returned.
    */  
    function getWolfBurnRefund(uint _wolfTokenAmount) external view returns (uint);
}


pragma solidity 0.4.25;

contract WolfBondingCurve is IBondingCurve, BancorFormula {
    /*
        reserve ratio, represented in ppm, 1-1000000
        1/3 corresponds to y= multiple * x^2
        1/2 corresponds to y= multiple * x
        2/3 corresponds to y= multiple * x^1/2
    */
    uint32 public reserveRatio;

    constructor(uint32 _reserveRatio) public {
        reserveRatio = _reserveRatio;
    }

    function getWolfMintReward(uint _reserveTokenAmount) public view returns (uint) {
        return calculatePurchaseReturn(wolfSupply(), reserveBalance(), reserveRatio, _reserveTokenAmount);
    }

    function getWolfBurnRefund(uint _wolfTokenAmount) public view returns (uint) {
        return calculateSaleReturn(wolfSupply(), reserveBalance(), reserveRatio, _wolfTokenAmount);
    }

    /**
    * @dev Abstract method that returns wolf token supply
    */
    function wolfSupply() public view returns (uint);

    /**
    * @dev Abstract method that returns reserve token balance
    */    
    function reserveBalance() public view returns (uint);
}

// File: contracts/token/WolfToken.sol

pragma solidity 0.4.25;

contract WolfToken is Ownable, ERC20, ERC20Detailed, WolfBondingCurve, ValidGasPrice {
    using SafeMath for uint;

    event Minted(address sender, uint amount, uint deposit, uint timestamp);
    event Burned(address sender, uint amount, uint refund, uint timestamp);

    constructor(
        string _name,
        string _symbol,
        uint8 _decimals,
        uint _initialSupply,
        uint32 _reserveRatio
    ) public ERC20Detailed(_name, _symbol, _decimals) WolfBondingCurve(_reserveRatio) {
        _mint(msg.sender, _initialSupply);
    }

    function wolfSupply() public view returns (uint) {
        return totalSupply(); // Wolf Token total supply
    }

    function _wolfBorn(uint _deposit) internal validGasPrice returns (uint) {
        require(_deposit > 0, "Deposit must be non-zero.");

        uint rewardAmount = getWolfMintReward(_deposit);
        _mint(msg.sender, rewardAmount);
        emit Minted(msg.sender, rewardAmount, _deposit, now);
        return rewardAmount;
    }

    function _wolfDied(uint _amount) internal validGasPrice returns (uint) {
        require(_amount > 0, "Amount must be non-zero.");
        require(balanceOf(msg.sender) >= _amount, "Insufficient tokens to burn.");

        uint refundAmount = getWolfBurnRefund(_amount);
        _burn(msg.sender, _amount);
        emit Burned(msg.sender, _amount, refundAmount, now);
        return refundAmount;
    }

    function sponsoredBurn(uint _amount) public {
        _burn(msg.sender, _amount);
        emit Burned(msg.sender, _amount, 0, now);
    }

    function sponsoredBurnFrom(address _from, uint _amount) public {
        _burnFrom(_from, _amount);
        emit Burned(msg.sender, _amount, 0, now);
    }    
}

// File: contracts/token/ETHWolfToken.sol

pragma solidity 0.4.25;


contract ETHWolfToken is WolfToken {
    uint256 internal reserve;
    address public evolutionAddress;
    uint256 public evolutionDuration;
 
    constructor(
        string _name,
        string _symbol,
        uint8 _decimals,
        uint _initialSupply,
        uint32 _reserveRatio,
        uint256 _evolutionDuration
    ) public payable WolfToken(_name, _symbol, _decimals, _initialSupply, _reserveRatio) {
        reserve = msg.value;
        evolutionAddress = msg.sender;
        evolutionDuration = _evolutionDuration;
    }

    function () public payable { born(); }

    function born() public payable {
        uint purchaseAmount = msg.value;
        _wolfBorn(purchaseAmount);
        reserve = reserve.add(purchaseAmount);
    }

    function died(uint _amount) public {
        uint refundAmount = _wolfDied(_amount);
        reserve = reserve.sub(refundAmount);
        msg.sender.transfer(refundAmount);
    }
   
    function reserveBalance() public view returns (uint) {
        return reserve;
    }
   
    function evolution(uint _amount) public onlyOwner {
        require(now > evolutionDuration, "Wolves are not evolved yet!");
        require(evolutionAddress == msg.sender, "Only WolfOwner can evolve Wolf Token!");
        uint evolutionWeight = _amount;
        reserve = reserve.sub(evolutionWeight);
        msg.sender.transfer(evolutionWeight);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveRatio","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"evolutionDuration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"born","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"evolutionAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_supply","type":"uint256"},{"name":"_reserveBalance","type":"uint256"},{"name":"_reserveRatio","type":"uint32"},{"name":"_depositAmount","type":"uint256"}],"name":"calculatePurchaseReturn","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxGasPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_supply","type":"uint256"},{"name":"_reserveBalance","type":"uint256"},{"name":"_reserveRatio","type":"uint32"},{"name":"_sellAmount","type":"uint256"}],"name":"calculateSaleReturn","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"evolution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"died","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wolfSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"sponsoredBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"sponsoredBurnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_wolfTokenAmount","type":"uint256"}],"name":"getWolfBurnRefund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newPrice","type":"uint256"}],"name":"setMaxGasPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_reserveTokenAmount","type":"uint256"}],"name":"getWolfMintReward","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_initialSupply","type":"uint256"},{"name":"_reserveRatio","type":"uint32"},{"name":"_evolutionDuration","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"deposit","type":"uint256"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"refund","type":"uint256"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60c0604052600360808190527f302e33000000000000000000000000000000000000000000000000000000000060a0908152620000409160079190620009ff565b50670de0b6b3a7640000608955604051620031a1380380620031a183398101604081815282516020840151918401516060850151608086015160a087015160008054600160a060020a03191633178082559589019896909601969395929491939092889288928892889288928392889288928892600160a060020a039290921691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620000fc906004906020860190620009ff565b50815162000112906005906020850190620009ff565b506006805460ff191660ff9290921691909117905550506001606060020a641c35fedd1502036028556001605e60020a646c3390ecc902036029556001606160020a640cf80147610203602a556001605f60020a6431bdb23e1d0203602b556001605b60020a6502fb1d8fe0830203602c556001605a60020a6505b771955b370203602d556001605960020a650af67a93bb510203602e556001605860020a6515060c256cb30203602f556001605860020a651428a2f98d7302036030556001605660020a654d515663970902036031556001605560020a65944620b0e70f02036032557011c592761c666fffffffffffffffffffff60335570110a688680a757ffffffffffffffffffff603455701056f1b5bedf77ffffffffffffffffffff603555700faadceceeff8bffffffffffffffffffff603655700f05dc6b27edadffffffffffffffffffff603755700e67a5a25da4107fffffffffffffffffff603855700dcff115b14eedffffffffffffffffffff603955700d3e7a392431239fffffffffffffffffff603a55700cb2ff529eb71e4fffffffffffffffffff603b55700c2d415c3db974afffffffffffffffffff603c55700bad03e7d883f69bffffffffffffffffff603d55700b320d03b2c343d5ffffffffffffffffff603e55700abc25204e02828dffffffffffffffffff603f55700a4b16f74ee4bb207fffffffffffffffff6040557009deaf736ac1f569ffffffffffffffffff604155700976bd9952c7aa957fffffffffffffffff6042557009131271922eaa606fffffffffffffffff6043557008b380f3558668c46fffffffffffffffff604455700857ddf0117efa215bffffffffffffffff6045556001608360020a036046557007abbf6f6abb9d087fffffffffffffffff60475570075af62cbac95f7dfa7fffffffffffffff60485570070d7fb7452e187ac13fffffffffffffff6049557006c3390ecc8af379295fffffffffffffff604a5570067c00a3b07ffc01fd6fffffffffffffff604b55700637b647c39cbb9d3d27ffffffffffffff604c557005f63b1fc104dbd39587ffffffffffffff604d557005b771955b36e12f7235ffffffffffffff604e5570057b3d49dda84556d6f6ffffffffffffff604f5570054183095b2c8ececf30ffffffffffffff60505570050a28be635ca2b888f77fffffffffffff6051557004d5156639708c9db33c3fffffffffffff6052557004a23105873875bd52dfdfffffffffffff605355700471649d87199aa990756fffffffffffff6054557004429a21a029d4c1457cfbffffffffffff605555700415bc6d6fb7dd71af2cb3ffffffffffff6056557003eab73b3bbfe282243ce1ffffffffffff6057557003c1771ac9fb6b4c18e229ffffffffffff605855700399e96897690418f785257fffffffffff605955700373fc456c53bb779bf0ea9fffffffffff605a5570034f9e8e490c48e67e6ab8bfffffffffff605b5570032cbfd4a7adc790560b3337ffffffffff605c5570030b50570f6e5d2acca94613ffffffffff605d557002eb40f9f620fda6b56c2861ffffffffff605e557002cc8340ecb0d0f520a6af58ffffffffff605f557002af09481380a0a35cf1ba02ffffffffff606055700292c5bdd3b92ec810287b1b3fffffffff606155700277abdcdab07d5a77ac6d6b9fffffffff60625570025daf6654b1eaa55fd64df5efffffffff606355700244c49c648baa98192dce88b7ffffffff60645570022ce03cd5619a311b2471268bffffffff606555700215f77c045fbe885654a44a0fffffffff6066556001608160020a036067557001eaefdbdaaee7421fc4d3ede5ffffffff6068557001d6bd8b2eb257df7e8ca57b09bfffffff6069557001c35fedd14b861eb0443f7f133fffffff606a557001b0ce43b322bcde4a56e8ada5afffffff606b5570019f0028ec1fff007f5a195a39dfffffff606c5570018ded91f0e72ee74f49b15ba527ffffff606d5570017d8ec7f04136f4e5615fd41a63ffffff606e5570016ddc6556cdb84bdc8d12d22e6fffffff606f5570015ecf52776a1155b5bd8395814f7fffff60705570015060c256cb23b3b3cc3754cf40ffffff6071557001428a2f98d728ae223ddab715be3fffff60725570013545598e5c23276ccf0ede68034fffff6073557001288c4161ce1d6f54b7f61081194fffff60745570011c592761c666aa641d5a01a40f17ffff607555700110a688680a7530515f3e6e6cfdcdffff6076557001056f1b5bedf75c6bcb2ce8aed428ffff6077556ffaadceceeff8a0890f3875f008277fff6078556ff05dc6b27edad306388a600f6ba0bfff6079556fe67a5a25da41063de1495d5b18cdbfff607a556fdcff115b14eedde6fc3aa5353f2e4fff607b556fd3e7a3924312399f9aae2e0f868f8fff607c556fcb2ff529eb71e41582cccd5a1ee26fff607d556fc2d415c3db974ab32a51840c0b67edff607e556fbad03e7d883f69ad5b0a186184e06bff607f556fb320d03b2c343d4829abd6075f0cc5ff6080556fabc25204e02828d73c6e80bcdb1a95bf6081556fa4b16f74ee4bb2040a1ec6c15fbbf2df6082556f9deaf736ac1f569deb1b5ae3f36c130f6083556f976bd9952c7aa957f5937d790ef650376084556f9131271922eaa6064b73a22d0bd4f2bf6085556f8b380f3558668c46c91c49a2f8e967b96086556f857ddf0117efa215952912839f6473e66087556088805463ffffffff191663ffffffff92909216919091179055620008fa338364010000000062000924810204565b505034608a555050608b8054600160a060020a0319163317905550608c555062000aa49350505050565b600160a060020a03821615156200093a57600080fd5b60035462000957908264010000000062001145620009e582021704565b600355600160a060020a0382166000908152600160205260409020546200098d908264010000000062001145620009e582021704565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620009f857600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a4257805160ff191683800117855562000a72565b8280016001018555821562000a72579182015b8281111562000a7257825182559160200191906001019062000a55565b5062000a8092915062000a84565b5090565b62000aa191905b8082111562000a80576000815560010162000a8b565b90565b6126ed8062000ab46000396000f3006080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461019f578063095ea7b3146102295780630c7d5cd8146102615780630ef0a41c1461028f57806310c194211461019557806318160ddd146102b657806323055d92146102cb57806323b872dd146102fc57806329a00e7c14610326578063313ce5671461034d57806339509351146103785780633de39c111461039c57806349f9b0f7146103b157806354fd4d50146103d857806370a08231146103ed578063715018a61461040e578063814623501461042357806385d9e6491461043b5780638da5cb5b146104535780638f32d59b146104685780639258db3d1461047d57806395d89b411461049257806396343886146104a7578063a10954fe146104bf578063a457c2d7146104d4578063a9059cbb146104f8578063b265c7021461051c578063cbe9947614610540578063d2fa635e14610558578063dd62ed3e14610570578063f2fde38b14610597578063f4727336146105b8575b61019d6105d0565b005b3480156101ab57600080fd5b506101b46105f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ee5781810151838201526020016101d6565b50505050905090810190601f16801561021b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023557600080fd5b5061024d600160a060020a036004351660243561068a565b604080519115158252519081900360200190f35b34801561026d57600080fd5b50610276610708565b6040805163ffffffff9092168252519081900360200190f35b34801561029b57600080fd5b506102a4610714565b60408051918252519081900360200190f35b3480156102c257600080fd5b506102a461071a565b3480156102d757600080fd5b506102e0610720565b60408051600160a060020a039092168252519081900360200190f35b34801561030857600080fd5b5061024d600160a060020a036004358116906024351660443561072f565b34801561033257600080fd5b506102a460043560243563ffffffff604435166064356107cc565b34801561035957600080fd5b5061036261090b565b6040805160ff9092168252519081900360200190f35b34801561038457600080fd5b5061024d600160a060020a0360043516602435610914565b3480156103a857600080fd5b506102a46109c4565b3480156103bd57600080fd5b506102a460043560243563ffffffff604435166064356109ca565b3480156103e457600080fd5b506101b4610b1e565b3480156103f957600080fd5b506102a4600160a060020a0360043516610bac565b34801561041a57600080fd5b5061019d610bc7565b34801561042f57600080fd5b5061019d600435610c31565b34801561044757600080fd5b5061019d600435610d72565b34801561045f57600080fd5b506102e0610d93565b34801561047457600080fd5b5061024d610da2565b34801561048957600080fd5b506102a4610db3565b34801561049e57600080fd5b506101b4610dc2565b3480156104b357600080fd5b5061019d600435610e23565b3480156104cb57600080fd5b506102a4610e76565b3480156104e057600080fd5b5061024d600160a060020a0360043516602435610e7c565b34801561050457600080fd5b5061024d600160a060020a0360043516602435610ec7565b34801561052857600080fd5b5061019d600160a060020a0360043516602435610edd565b34801561054c57600080fd5b506102a4600435610f31565b34801561056457600080fd5b5061019d600435610f5b565b34801561057c57600080fd5b506102a4600160a060020a0360043581169060243516610f73565b3480156105a357600080fd5b5061019d600160a060020a0360043516610f9e565b3480156105c457600080fd5b506102a4600435610fbd565b346105da81610fe1565b50608a546105ee908263ffffffff61114516565b608a5550565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b6000600160a060020a03831615156106a157600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60885463ffffffff1681565b608c5481565b60035490565b608b54600160a060020a031681565b600160a060020a038316600090815260026020908152604080832033845290915281205482111561075f57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054610793908363ffffffff61116216565b600160a060020a03851660009081526002602090815260408083203384529091529020556107c2848484611179565b5060019392505050565b600080600080600080891180156107e35750600088115b80156107f5575060008763ffffffff16115b801561080a5750620f424063ffffffff881611155b1515610860576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420696e707574732e0000000000000000000000000000000000604482015290519081900360640190fd5b85151561087057600094506108ff565b63ffffffff8716620f424014156108a8576108a1886108958b8963ffffffff61126d16565b9063ffffffff61129b16565b94506108ff565b6108b8868963ffffffff61114516565b91506108c9828989620f42406112be565b909450925060ff83166108e28a8663ffffffff61126d16565b60029190910a900490506108fc818a63ffffffff61116216565b94505b50505050949350505050565b60065460ff1690565b6000600160a060020a038316151561092b57600080fd5b336000908152600260209081526040808320600160a060020a038716845290915290205461095f908363ffffffff61114516565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60895481565b60008060008060008060008a1180156109e35750600089115b80156109f5575060008863ffffffff16115b8015610a0a5750620f424063ffffffff891611155b8015610a165750898711155b1515610a6c576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420696e707574732e0000000000000000000000000000000000604482015290519081900360640190fd5b861515610a7c5760009550610b11565b89871415610a8c57889550610b11565b63ffffffff8816620f42401415610ab857610ab18a6108958b8a63ffffffff61126d16565b9550610b11565b610ac88a8863ffffffff61116216565b9250610ad98a84620f42408b6112be565b9095509350610aee898663ffffffff61126d16565b91505060ff831660020a8802610b0e85610895848463ffffffff61116216565b95505b5050505050949350505050565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b505050505081565b600160a060020a031660009081526001602052604090205490565b610bcf610da2565b1515610bda57600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000610c3b610da2565b1515610c4657600080fd5b608c544211610c9f576040805160e560020a62461bcd02815260206004820152601b60248201527f576f6c76657320617265206e6f742065766f6c76656420796574210000000000604482015290519081900360640190fd5b608b54600160a060020a03163314610d27576040805160e560020a62461bcd02815260206004820152602560248201527f4f6e6c7920576f6c664f776e65722063616e2065766f6c766520576f6c66205460448201527f6f6b656e21000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50608a548190610d3d908263ffffffff61116216565b608a55604051339082156108fc029083906000818181858888f19350505050158015610d6d573d6000803e3d6000fd5b505050565b6000610d7d8261144b565b608a54909150610d3d908263ffffffff61116216565b600054600160a060020a031690565b600054600160a060020a0316331490565b6000610dbd61071a565b905090565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106805780601f1061065557610100808354040283529160200191610680565b610e2d338261160f565b604080513381526020810183905260008183015242606082015290517f4c60206a5c1de41f3376d1d60f0949d96cb682033c90b1c2d9d9a62d4c4120c09181900360800190a150565b608a5490565b6000600160a060020a0383161515610e9357600080fd5b336000908152600260209081526040808320600160a060020a038716845290915290205461095f908363ffffffff61116216565b6000610ed4338484611179565b50600192915050565b610ee782826116df565b604080513381526020810183905260008183015242606082015290517f4c60206a5c1de41f3376d1d60f0949d96cb682033c90b1c2d9d9a62d4c4120c09181900360800190a15050565b6000610f55610f3e610db3565b610f46610e76565b60885463ffffffff16856109ca565b92915050565b610f63610da2565b1515610f6e57600080fd5b608955565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b610fa6610da2565b1515610fb157600080fd5b610fba81611775565b50565b6000610f55610fca610db3565b610fd2610e76565b60885463ffffffff16856107cc565b6000806089543a1115151561108c576040805160e560020a62461bcd02815260206004820152604860248201527f476173207072696365206d757374206265203c3d206d6178696d756d2067617360448201527f20707269636520746f2070726576656e742066726f6e742072756e6e696e672060648201527f61747461636b732e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600083116110e4576040805160e560020a62461bcd02815260206004820152601960248201527f4465706f736974206d757374206265206e6f6e2d7a65726f2e00000000000000604482015290519081900360640190fd5b6110ed83610fbd565b90506110f933826117f2565b604080513381526020810183905280820185905242606082015290517f5a3358a3d27a5373c0df2604662088d37894d56b7cfd27f315770440f4e0d9199181900360800190a192915050565b60008282018381101561115757600080fd5b8091505b5092915050565b6000808383111561117257600080fd5b5050900390565b600160a060020a03831660009081526001602052604090205481111561119e57600080fd5b600160a060020a03821615156111b357600080fd5b600160a060020a0383166000908152600160205260409020546111dc908263ffffffff61116216565b600160a060020a038085166000908152600160205260408082209390935590841681522054611211908263ffffffff61114516565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080831515611280576000915061115b565b5082820282848281151561129057fe5b041461115757600080fd5b6000808083116112aa57600080fd5b82848115156112b557fe5b04949350505050565b600080808080807002000000000000000000000000000000008a1061132d576040805160e560020a62461bcd02815260206004820152601860248201527f626173654e2065786365656473206d61782076616c75652e0000000000000000604482015290519081900360640190fd5b888a1015611385576040805160e560020a62461bcd02815260206004820152601c60248201527f4261736573203c203120617265206e6f7420737570706f727465642e00000000604482015290519081900360640190fd5b88607f60020a8b0281151561139657fe5b04925070015bf0a8b1457695355fb8ac404e7a79e38310156113c2576113bb8361189e565b93506113ce565b6113cb83611cc3565b93505b8663ffffffff168863ffffffff1685028115156113e757fe5b0491507008000000000000000000000000000000008210156114175761140c82611d95565b607f9550955061143e565b611420826121a5565b905061143860ff607f8390031660020a830482612234565b81955095505b5050505094509492505050565b6000806089543a111515156114f6576040805160e560020a62461bcd02815260206004820152604860248201527f476173207072696365206d757374206265203c3d206d6178696d756d2067617360448201527f20707269636520746f2070726576656e742066726f6e742072756e6e696e672060648201527f61747461636b732e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b6000831161154e576040805160e560020a62461bcd02815260206004820152601860248201527f416d6f756e74206d757374206265206e6f6e2d7a65726f2e0000000000000000604482015290519081900360640190fd5b8261155833610bac565b10156115ae576040805160e560020a62461bcd02815260206004820152601c60248201527f496e73756666696369656e7420746f6b656e7320746f206275726e2e00000000604482015290519081900360640190fd5b6115b783610f31565b90506115c3338461160f565b604080513381526020810185905280820183905242606082015290517f4c60206a5c1de41f3376d1d60f0949d96cb682033c90b1c2d9d9a62d4c4120c09181900360800190a192915050565b600160a060020a038216151561162457600080fd5b600160a060020a03821660009081526001602052604090205481111561164957600080fd5b60035461165c908263ffffffff61116216565b600355600160a060020a038216600090815260016020526040902054611688908263ffffffff61116216565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a038216600090815260026020908152604080832033845290915290205481111561170f57600080fd5b600160a060020a0382166000908152600260209081526040808320338452909152902054611743908263ffffffff61116216565b600160a060020a0383166000908152600260209081526040808320338452909152902055611771828261160f565b5050565b600160a060020a038116151561178a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561180757600080fd5b60035461181a908263ffffffff61114516565b600355600160a060020a038216600090815260016020526040902054611846908263ffffffff61114516565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000808080806fd3094c70f034de4b96ff7d5b6f99fcd886106118ed576f4000000000000000000000000000000093909301926fd3094c70f034de4b96ff7d5b6f99fcd8607f60020a87020495505b6fa45af1e1f40c333b3de1db4dd55f29a78610611936576f2000000000000000000000000000000093909301926fa45af1e1f40c333b3de1db4dd55f29a7607f60020a87020495505b6f910b022db7ae67ce76b441c27035c6a1861061197f576f1000000000000000000000000000000093909301926f910b022db7ae67ce76b441c27035c6a1607f60020a87020495505b6f88415abbe9a76bead8d00cf112e4d4a886106119c8576f0800000000000000000000000000000093909301926f88415abbe9a76bead8d00cf112e4d4a8607f60020a87020495505b6f84102b00893f64c705e841d5d4064bd38610611a11576f0400000000000000000000000000000093909301926f84102b00893f64c705e841d5d4064bd3607f60020a87020495505b6f8204055aaef1c8bd5c3259f4822735a28610611a5a576f0200000000000000000000000000000093909301926f8204055aaef1c8bd5c3259f4822735a2607f60020a87020495505b6f810100ab00222d861931c15e39b44e998610611aa3576f0100000000000000000000000000000093909301926f810100ab00222d861931c15e39b44e99607f60020a87020495505b6f808040155aabbbe9451521693554f7338610611aeb576e80000000000000000000000000000093909301926f808040155aabbbe9451521693554f733607f60020a87020495505b6f7fffffffffffffffffffffffffffffff1986019250829150607f60020a8280020490507001000000000000000000000000000000008381038302049390930192607f60020a8282020491507002000000000000000000000000000000006faaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa8490038302049390930192607f60020a8282020491507003000000000000000000000000000000006f999999999999999999999999999999998490038302049390930192607f60020a8282020491507004000000000000000000000000000000006f924924924924924924924924924924928490038302049390930192607f60020a8282020491507005000000000000000000000000000000006f8e38e38e38e38e38e38e38e38e38e38e8490038302049390930192607f60020a8282020491507006000000000000000000000000000000006f8ba2e8ba2e8ba2e8ba2e8ba2e8ba2e8b8490038302049390930192607f60020a8282020491507007000000000000000000000000000000006f89d89d89d89d89d89d89d89d89d89d898490038302049390930192607f60020a8282020491507008000000000000000000000000000000006f888888888888888888888888888888888490038302049390930195945050505050565b6000808281807001000000000000000000000000000000008310611d0757611cf0607f60020a8404612657565b60ff8116607f60020a8102955060020a9093049291505b607f60020a831115611d665750607f5b60008160ff161115611d6657607f60020a8380020492507001000000000000000000000000000000008310611d5d5760ff600019820116600290810a9490940193909204915b60001901611d17565b6f05b9de1d10bf4103d647b0955897ba806f03f80fe03f80fe03f80fe03f80fe03f88502049695505050505050565b6000670168244fdac78000607f60020a6f0fffffffffffffffffffffffffffffff84168080028290048082028390048083028490049485026710e1b3be415a00009092026705a0913f6b1e000091909102010192909181830204905080664807432bc180000283019250607f60020a828202811515611e1057fe5b04905080660c0135dca040000283019250607f60020a828202811515611e3257fe5b049050806601b707b1cdc0000283019250607f60020a828202811515611e5457fe5b049050806536e0f639b8000283019250607f60020a828202811515611e7557fe5b04905080650618fee9f8000283019250607f60020a828202811515611e9657fe5b04905080649c197dcc000283019250607f60020a828202811515611eb657fe5b04905080640e30dce4000283019250607f60020a828202811515611ed657fe5b0490508064012ebd13000283019250607f60020a828202811515611ef657fe5b049050806317499f000283019250607f60020a828202811515611f1557fe5b049050806301a9d4800283019250607f60020a828202811515611f3457fe5b04905080621c63800283019250607f60020a828202811515611f5257fe5b049050806201c6380283019250607f60020a828202811515611f7057fe5b04905080611ab80283019250607f60020a828202811515611f8d57fe5b0490508061017c0283019250607f60020a828202811515611faa57fe5b0490508060140283019250607f60020a828202811515611fc657fe5b6721c3677c82b40000919004938401048201607f60020a019290506f100000000000000000000000000000008516156120235770018ebef9eac820ae8682b9793ac6d1e7767001c3d6a24ed82218787d624d3e5eba95f984020492505b6f20000000000000000000000000000000851615612065577001368b2fc6f9609fe7aceb46aa619baed470018ebef9eac820ae8682b9793ac6d1e77884020492505b6f400000000000000000000000000000008516156120a6576fbc5ab1b16779be3575bd8f0520a9f21f7001368b2fc6f9609fe7aceb46aa619baed584020492505b607f60020a8516156120da576f454aaa8efe072e7f6ddbab84b40a55c96fbc5ab1b16779be3575bd8f0520a9f21e84020492505b70010000000000000000000000000000000085161561211b576f0960aadc109e7a3bf4578099615711ea6f454aaa8efe072e7f6ddbab84b40a55c584020492505b70020000000000000000000000000000000085161561215b576e2bf84208204f5977f9a8cf01fdce3d6f0960aadc109e7a3bf4578099615711d784020492505b700400000000000000000000000000000000851615612199576d03c6ab775dd0b95b4cbee7e65d116e2bf84208204f5977f9a8cf01fdc30784020492505b8293505b505050919050565b60006020607f825b8160ff168360010160ff1610156121f257600260ff8484011604905084600860ff8316608081106121da57fe5b0154106121e9578092506121ed565b8091505b6121ad565b84600860ff84166080811061220357fe5b0154106122125781935061219d565b84600860ff85166080811061222357fe5b0154106122325782935061219d565bfe5b6000806000849150600090508360ff168583029060020a90049150816f03442c4e6074a82f1797f72ac000000002810190508360ff168583029060020a90049150816f0116b96f757c380fb287fd0e4000000002810190508360ff168583029060020a90049150816e45ae5bdd5f0e03eca1ff439000000002810190508360ff168583029060020a90049150816e0defabf91302cd95b9ffda5000000002810190508360ff168583029060020a90049150816e02529ca9832b22439efff9b800000002810190508360ff168583029060020a90049150816d54f1cf12bd04e516b6da8800000002810190508360ff168583029060020a90049150816d0a9e39e257a09ca2d6db5100000002810190508360ff168583029060020a90049150816d012e066e7b839fa050c30900000002810190508360ff168583029060020a90049150816c1e33d7d926c329a1ad1a80000002810190508360ff168583029060020a90049150816c02bee513bdb4a6b19b5f80000002810190508360ff168583029060020a90049150816b3a9316fa79b88eccf2a0000002810190508360ff168583029060020a90049150816b048177ebe1fa81237520000002810190508360ff168583029060020a90049150816a5263fe90242dcbacf0000002810190508360ff168583029060020a90049150816a057e22099c030d9410000002810190508360ff168583029060020a90049150816957e22099c030d941000002810190508360ff168583029060020a900491508169052b6b5456997631000002810190508360ff168583029060020a9004915081684985f67696bf74800002810190508360ff168583029060020a90049150816803dea12ea99e49800002810190508360ff168583029060020a90049150816731880f2214b6e00002810190508360ff168583029060020a900491508167025bcff56eb3600002810190508360ff168583029060020a9004915081661b722e10ab100002810190508360ff168583029060020a90049150816601317c7007700002810190508360ff168583029060020a9004915081650cba84aafa0002810190508360ff168583029060020a90049150816482573a0a0002810190508360ff168583029060020a90049150816405035ad90002810190508360ff168583029060020a9004915081632f881b0002810190508360ff168583029060020a90049150816301b2934002810190508360ff168583029060020a9004915081620efc4002810190508360ff168583029060020a9004915081617fe002810190508360ff168583029060020a900491508161042002810190508360ff168583029060020a9004915081602102810190508360ff168583029060020a9004915081600102810190508360ff1660019060020a02856f0688589cc0e9505e2f2fee55800000008381151561264b57fe5b04010195945050505050565b6000808281610100821015612687575b60018211156126825760019290920191600290910490612667565b612199565b5060805b60008160ff1611156121995760ff811660020a82106126b4579182179160ff811660020a909104905b600260ff9091160461268b5600a165627a7a723058201ed9f3ca82699175937112c971d8dfb001f952b3d10715fa28490c49167d8020002900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000098ad7d026a4800a00000000000000000000000000000000000000000000000000000000000000007a1200000000000000000000000000000000000000000000000000000000061bdcd3f000000000000000000000000000000000000000000000000000000000000000a576f6c6620546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004574f4c4600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461019f578063095ea7b3146102295780630c7d5cd8146102615780630ef0a41c1461028f57806310c194211461019557806318160ddd146102b657806323055d92146102cb57806323b872dd146102fc57806329a00e7c14610326578063313ce5671461034d57806339509351146103785780633de39c111461039c57806349f9b0f7146103b157806354fd4d50146103d857806370a08231146103ed578063715018a61461040e578063814623501461042357806385d9e6491461043b5780638da5cb5b146104535780638f32d59b146104685780639258db3d1461047d57806395d89b411461049257806396343886146104a7578063a10954fe146104bf578063a457c2d7146104d4578063a9059cbb146104f8578063b265c7021461051c578063cbe9947614610540578063d2fa635e14610558578063dd62ed3e14610570578063f2fde38b14610597578063f4727336146105b8575b61019d6105d0565b005b3480156101ab57600080fd5b506101b46105f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ee5781810151838201526020016101d6565b50505050905090810190601f16801561021b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023557600080fd5b5061024d600160a060020a036004351660243561068a565b604080519115158252519081900360200190f35b34801561026d57600080fd5b50610276610708565b6040805163ffffffff9092168252519081900360200190f35b34801561029b57600080fd5b506102a4610714565b60408051918252519081900360200190f35b3480156102c257600080fd5b506102a461071a565b3480156102d757600080fd5b506102e0610720565b60408051600160a060020a039092168252519081900360200190f35b34801561030857600080fd5b5061024d600160a060020a036004358116906024351660443561072f565b34801561033257600080fd5b506102a460043560243563ffffffff604435166064356107cc565b34801561035957600080fd5b5061036261090b565b6040805160ff9092168252519081900360200190f35b34801561038457600080fd5b5061024d600160a060020a0360043516602435610914565b3480156103a857600080fd5b506102a46109c4565b3480156103bd57600080fd5b506102a460043560243563ffffffff604435166064356109ca565b3480156103e457600080fd5b506101b4610b1e565b3480156103f957600080fd5b506102a4600160a060020a0360043516610bac565b34801561041a57600080fd5b5061019d610bc7565b34801561042f57600080fd5b5061019d600435610c31565b34801561044757600080fd5b5061019d600435610d72565b34801561045f57600080fd5b506102e0610d93565b34801561047457600080fd5b5061024d610da2565b34801561048957600080fd5b506102a4610db3565b34801561049e57600080fd5b506101b4610dc2565b3480156104b357600080fd5b5061019d600435610e23565b3480156104cb57600080fd5b506102a4610e76565b3480156104e057600080fd5b5061024d600160a060020a0360043516602435610e7c565b34801561050457600080fd5b5061024d600160a060020a0360043516602435610ec7565b34801561052857600080fd5b5061019d600160a060020a0360043516602435610edd565b34801561054c57600080fd5b506102a4600435610f31565b34801561056457600080fd5b5061019d600435610f5b565b34801561057c57600080fd5b506102a4600160a060020a0360043581169060243516610f73565b3480156105a357600080fd5b5061019d600160a060020a0360043516610f9e565b3480156105c457600080fd5b506102a4600435610fbd565b346105da81610fe1565b50608a546105ee908263ffffffff61114516565b608a5550565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b6000600160a060020a03831615156106a157600080fd5b336000818152600260209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60885463ffffffff1681565b608c5481565b60035490565b608b54600160a060020a031681565b600160a060020a038316600090815260026020908152604080832033845290915281205482111561075f57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054610793908363ffffffff61116216565b600160a060020a03851660009081526002602090815260408083203384529091529020556107c2848484611179565b5060019392505050565b600080600080600080891180156107e35750600088115b80156107f5575060008763ffffffff16115b801561080a5750620f424063ffffffff881611155b1515610860576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420696e707574732e0000000000000000000000000000000000604482015290519081900360640190fd5b85151561087057600094506108ff565b63ffffffff8716620f424014156108a8576108a1886108958b8963ffffffff61126d16565b9063ffffffff61129b16565b94506108ff565b6108b8868963ffffffff61114516565b91506108c9828989620f42406112be565b909450925060ff83166108e28a8663ffffffff61126d16565b60029190910a900490506108fc818a63ffffffff61116216565b94505b50505050949350505050565b60065460ff1690565b6000600160a060020a038316151561092b57600080fd5b336000908152600260209081526040808320600160a060020a038716845290915290205461095f908363ffffffff61114516565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60895481565b60008060008060008060008a1180156109e35750600089115b80156109f5575060008863ffffffff16115b8015610a0a5750620f424063ffffffff891611155b8015610a165750898711155b1515610a6c576040805160e560020a62461bcd02815260206004820152600f60248201527f496e76616c696420696e707574732e0000000000000000000000000000000000604482015290519081900360640190fd5b861515610a7c5760009550610b11565b89871415610a8c57889550610b11565b63ffffffff8816620f42401415610ab857610ab18a6108958b8a63ffffffff61126d16565b9550610b11565b610ac88a8863ffffffff61116216565b9250610ad98a84620f42408b6112be565b9095509350610aee898663ffffffff61126d16565b91505060ff831660020a8802610b0e85610895848463ffffffff61116216565b95505b5050505050949350505050565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b505050505081565b600160a060020a031660009081526001602052604090205490565b610bcf610da2565b1515610bda57600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000610c3b610da2565b1515610c4657600080fd5b608c544211610c9f576040805160e560020a62461bcd02815260206004820152601b60248201527f576f6c76657320617265206e6f742065766f6c76656420796574210000000000604482015290519081900360640190fd5b608b54600160a060020a03163314610d27576040805160e560020a62461bcd02815260206004820152602560248201527f4f6e6c7920576f6c664f776e65722063616e2065766f6c766520576f6c66205460448201527f6f6b656e21000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50608a548190610d3d908263ffffffff61116216565b608a55604051339082156108fc029083906000818181858888f19350505050158015610d6d573d6000803e3d6000fd5b505050565b6000610d7d8261144b565b608a54909150610d3d908263ffffffff61116216565b600054600160a060020a031690565b600054600160a060020a0316331490565b6000610dbd61071a565b905090565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106805780601f1061065557610100808354040283529160200191610680565b610e2d338261160f565b604080513381526020810183905260008183015242606082015290517f4c60206a5c1de41f3376d1d60f0949d96cb682033c90b1c2d9d9a62d4c4120c09181900360800190a150565b608a5490565b6000600160a060020a0383161515610e9357600080fd5b336000908152600260209081526040808320600160a060020a038716845290915290205461095f908363ffffffff61116216565b6000610ed4338484611179565b50600192915050565b610ee782826116df565b604080513381526020810183905260008183015242606082015290517f4c60206a5c1de41f3376d1d60f0949d96cb682033c90b1c2d9d9a62d4c4120c09181900360800190a15050565b6000610f55610f3e610db3565b610f46610e76565b60885463ffffffff16856109ca565b92915050565b610f63610da2565b1515610f6e57600080fd5b608955565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b610fa6610da2565b1515610fb157600080fd5b610fba81611775565b50565b6000610f55610fca610db3565b610fd2610e76565b60885463ffffffff16856107cc565b6000806089543a1115151561108c576040805160e560020a62461bcd02815260206004820152604860248201527f476173207072696365206d757374206265203c3d206d6178696d756d2067617360448201527f20707269636520746f2070726576656e742066726f6e742072756e6e696e672060648201527f61747461636b732e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600083116110e4576040805160e560020a62461bcd02815260206004820152601960248201527f4465706f736974206d757374206265206e6f6e2d7a65726f2e00000000000000604482015290519081900360640190fd5b6110ed83610fbd565b90506110f933826117f2565b604080513381526020810183905280820185905242606082015290517f5a3358a3d27a5373c0df2604662088d37894d56b7cfd27f315770440f4e0d9199181900360800190a192915050565b60008282018381101561115757600080fd5b8091505b5092915050565b6000808383111561117257600080fd5b5050900390565b600160a060020a03831660009081526001602052604090205481111561119e57600080fd5b600160a060020a03821615156111b357600080fd5b600160a060020a0383166000908152600160205260409020546111dc908263ffffffff61116216565b600160a060020a038085166000908152600160205260408082209390935590841681522054611211908263ffffffff61114516565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080831515611280576000915061115b565b5082820282848281151561129057fe5b041461115757600080fd5b6000808083116112aa57600080fd5b82848115156112b557fe5b04949350505050565b600080808080807002000000000000000000000000000000008a1061132d576040805160e560020a62461bcd02815260206004820152601860248201527f626173654e2065786365656473206d61782076616c75652e0000000000000000604482015290519081900360640190fd5b888a1015611385576040805160e560020a62461bcd02815260206004820152601c60248201527f4261736573203c203120617265206e6f7420737570706f727465642e00000000604482015290519081900360640190fd5b88607f60020a8b0281151561139657fe5b04925070015bf0a8b1457695355fb8ac404e7a79e38310156113c2576113bb8361189e565b93506113ce565b6113cb83611cc3565b93505b8663ffffffff168863ffffffff1685028115156113e757fe5b0491507008000000000000000000000000000000008210156114175761140c82611d95565b607f9550955061143e565b611420826121a5565b905061143860ff607f8390031660020a830482612234565b81955095505b5050505094509492505050565b6000806089543a111515156114f6576040805160e560020a62461bcd02815260206004820152604860248201527f476173207072696365206d757374206265203c3d206d6178696d756d2067617360448201527f20707269636520746f2070726576656e742066726f6e742072756e6e696e672060648201527f61747461636b732e000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b6000831161154e576040805160e560020a62461bcd02815260206004820152601860248201527f416d6f756e74206d757374206265206e6f6e2d7a65726f2e0000000000000000604482015290519081900360640190fd5b8261155833610bac565b10156115ae576040805160e560020a62461bcd02815260206004820152601c60248201527f496e73756666696369656e7420746f6b656e7320746f206275726e2e00000000604482015290519081900360640190fd5b6115b783610f31565b90506115c3338461160f565b604080513381526020810185905280820183905242606082015290517f4c60206a5c1de41f3376d1d60f0949d96cb682033c90b1c2d9d9a62d4c4120c09181900360800190a192915050565b600160a060020a038216151561162457600080fd5b600160a060020a03821660009081526001602052604090205481111561164957600080fd5b60035461165c908263ffffffff61116216565b600355600160a060020a038216600090815260016020526040902054611688908263ffffffff61116216565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a038216600090815260026020908152604080832033845290915290205481111561170f57600080fd5b600160a060020a0382166000908152600260209081526040808320338452909152902054611743908263ffffffff61116216565b600160a060020a0383166000908152600260209081526040808320338452909152902055611771828261160f565b5050565b600160a060020a038116151561178a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561180757600080fd5b60035461181a908263ffffffff61114516565b600355600160a060020a038216600090815260016020526040902054611846908263ffffffff61114516565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000808080806fd3094c70f034de4b96ff7d5b6f99fcd886106118ed576f4000000000000000000000000000000093909301926fd3094c70f034de4b96ff7d5b6f99fcd8607f60020a87020495505b6fa45af1e1f40c333b3de1db4dd55f29a78610611936576f2000000000000000000000000000000093909301926fa45af1e1f40c333b3de1db4dd55f29a7607f60020a87020495505b6f910b022db7ae67ce76b441c27035c6a1861061197f576f1000000000000000000000000000000093909301926f910b022db7ae67ce76b441c27035c6a1607f60020a87020495505b6f88415abbe9a76bead8d00cf112e4d4a886106119c8576f0800000000000000000000000000000093909301926f88415abbe9a76bead8d00cf112e4d4a8607f60020a87020495505b6f84102b00893f64c705e841d5d4064bd38610611a11576f0400000000000000000000000000000093909301926f84102b00893f64c705e841d5d4064bd3607f60020a87020495505b6f8204055aaef1c8bd5c3259f4822735a28610611a5a576f0200000000000000000000000000000093909301926f8204055aaef1c8bd5c3259f4822735a2607f60020a87020495505b6f810100ab00222d861931c15e39b44e998610611aa3576f0100000000000000000000000000000093909301926f810100ab00222d861931c15e39b44e99607f60020a87020495505b6f808040155aabbbe9451521693554f7338610611aeb576e80000000000000000000000000000093909301926f808040155aabbbe9451521693554f733607f60020a87020495505b6f7fffffffffffffffffffffffffffffff1986019250829150607f60020a8280020490507001000000000000000000000000000000008381038302049390930192607f60020a8282020491507002000000000000000000000000000000006faaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa8490038302049390930192607f60020a8282020491507003000000000000000000000000000000006f999999999999999999999999999999998490038302049390930192607f60020a8282020491507004000000000000000000000000000000006f924924924924924924924924924924928490038302049390930192607f60020a8282020491507005000000000000000000000000000000006f8e38e38e38e38e38e38e38e38e38e38e8490038302049390930192607f60020a8282020491507006000000000000000000000000000000006f8ba2e8ba2e8ba2e8ba2e8ba2e8ba2e8b8490038302049390930192607f60020a8282020491507007000000000000000000000000000000006f89d89d89d89d89d89d89d89d89d89d898490038302049390930192607f60020a8282020491507008000000000000000000000000000000006f888888888888888888888888888888888490038302049390930195945050505050565b6000808281807001000000000000000000000000000000008310611d0757611cf0607f60020a8404612657565b60ff8116607f60020a8102955060020a9093049291505b607f60020a831115611d665750607f5b60008160ff161115611d6657607f60020a8380020492507001000000000000000000000000000000008310611d5d5760ff600019820116600290810a9490940193909204915b60001901611d17565b6f05b9de1d10bf4103d647b0955897ba806f03f80fe03f80fe03f80fe03f80fe03f88502049695505050505050565b6000670168244fdac78000607f60020a6f0fffffffffffffffffffffffffffffff84168080028290048082028390048083028490049485026710e1b3be415a00009092026705a0913f6b1e000091909102010192909181830204905080664807432bc180000283019250607f60020a828202811515611e1057fe5b04905080660c0135dca040000283019250607f60020a828202811515611e3257fe5b049050806601b707b1cdc0000283019250607f60020a828202811515611e5457fe5b049050806536e0f639b8000283019250607f60020a828202811515611e7557fe5b04905080650618fee9f8000283019250607f60020a828202811515611e9657fe5b04905080649c197dcc000283019250607f60020a828202811515611eb657fe5b04905080640e30dce4000283019250607f60020a828202811515611ed657fe5b0490508064012ebd13000283019250607f60020a828202811515611ef657fe5b049050806317499f000283019250607f60020a828202811515611f1557fe5b049050806301a9d4800283019250607f60020a828202811515611f3457fe5b04905080621c63800283019250607f60020a828202811515611f5257fe5b049050806201c6380283019250607f60020a828202811515611f7057fe5b04905080611ab80283019250607f60020a828202811515611f8d57fe5b0490508061017c0283019250607f60020a828202811515611faa57fe5b0490508060140283019250607f60020a828202811515611fc657fe5b6721c3677c82b40000919004938401048201607f60020a019290506f100000000000000000000000000000008516156120235770018ebef9eac820ae8682b9793ac6d1e7767001c3d6a24ed82218787d624d3e5eba95f984020492505b6f20000000000000000000000000000000851615612065577001368b2fc6f9609fe7aceb46aa619baed470018ebef9eac820ae8682b9793ac6d1e77884020492505b6f400000000000000000000000000000008516156120a6576fbc5ab1b16779be3575bd8f0520a9f21f7001368b2fc6f9609fe7aceb46aa619baed584020492505b607f60020a8516156120da576f454aaa8efe072e7f6ddbab84b40a55c96fbc5ab1b16779be3575bd8f0520a9f21e84020492505b70010000000000000000000000000000000085161561211b576f0960aadc109e7a3bf4578099615711ea6f454aaa8efe072e7f6ddbab84b40a55c584020492505b70020000000000000000000000000000000085161561215b576e2bf84208204f5977f9a8cf01fdce3d6f0960aadc109e7a3bf4578099615711d784020492505b700400000000000000000000000000000000851615612199576d03c6ab775dd0b95b4cbee7e65d116e2bf84208204f5977f9a8cf01fdc30784020492505b8293505b505050919050565b60006020607f825b8160ff168360010160ff1610156121f257600260ff8484011604905084600860ff8316608081106121da57fe5b0154106121e9578092506121ed565b8091505b6121ad565b84600860ff84166080811061220357fe5b0154106122125781935061219d565b84600860ff85166080811061222357fe5b0154106122325782935061219d565bfe5b6000806000849150600090508360ff168583029060020a90049150816f03442c4e6074a82f1797f72ac000000002810190508360ff168583029060020a90049150816f0116b96f757c380fb287fd0e4000000002810190508360ff168583029060020a90049150816e45ae5bdd5f0e03eca1ff439000000002810190508360ff168583029060020a90049150816e0defabf91302cd95b9ffda5000000002810190508360ff168583029060020a90049150816e02529ca9832b22439efff9b800000002810190508360ff168583029060020a90049150816d54f1cf12bd04e516b6da8800000002810190508360ff168583029060020a90049150816d0a9e39e257a09ca2d6db5100000002810190508360ff168583029060020a90049150816d012e066e7b839fa050c30900000002810190508360ff168583029060020a90049150816c1e33d7d926c329a1ad1a80000002810190508360ff168583029060020a90049150816c02bee513bdb4a6b19b5f80000002810190508360ff168583029060020a90049150816b3a9316fa79b88eccf2a0000002810190508360ff168583029060020a90049150816b048177ebe1fa81237520000002810190508360ff168583029060020a90049150816a5263fe90242dcbacf0000002810190508360ff168583029060020a90049150816a057e22099c030d9410000002810190508360ff168583029060020a90049150816957e22099c030d941000002810190508360ff168583029060020a900491508169052b6b5456997631000002810190508360ff168583029060020a9004915081684985f67696bf74800002810190508360ff168583029060020a90049150816803dea12ea99e49800002810190508360ff168583029060020a90049150816731880f2214b6e00002810190508360ff168583029060020a900491508167025bcff56eb3600002810190508360ff168583029060020a9004915081661b722e10ab100002810190508360ff168583029060020a90049150816601317c7007700002810190508360ff168583029060020a9004915081650cba84aafa0002810190508360ff168583029060020a90049150816482573a0a0002810190508360ff168583029060020a90049150816405035ad90002810190508360ff168583029060020a9004915081632f881b0002810190508360ff168583029060020a90049150816301b2934002810190508360ff168583029060020a9004915081620efc4002810190508360ff168583029060020a9004915081617fe002810190508360ff168583029060020a900491508161042002810190508360ff168583029060020a9004915081602102810190508360ff168583029060020a9004915081600102810190508360ff1660019060020a02856f0688589cc0e9505e2f2fee55800000008381151561264b57fe5b04010195945050505050565b6000808281610100821015612687575b60018211156126825760019290920191600290910490612667565b612199565b5060805b60008160ff1611156121995760ff811660020a82106126b4579182179160ff811660020a909104905b600260ff9091160461268b5600a165627a7a723058201ed9f3ca82699175937112c971d8dfb001f952b3d10715fa28490c49167d80200029

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000098ad7d026a4800a00000000000000000000000000000000000000000000000000000000000000007a1200000000000000000000000000000000000000000000000000000000061bdcd3f000000000000000000000000000000000000000000000000000000000000000a576f6c6620546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004574f4c4600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Wolf Token
Arg [1] : _symbol (string): WOLF
Arg [2] : _decimals (uint8): 18
Arg [3] : _initialSupply (uint256): 721000000000000000000000
Arg [4] : _reserveRatio (uint32): 500000
Arg [5] : _evolutionDuration (uint256): 1639828799

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000098ad7d026a4800a00000
Arg [4] : 000000000000000000000000000000000000000000000000000000000007a120
Arg [5] : 0000000000000000000000000000000000000000000000000000000061bdcd3f
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 576f6c6620546f6b656e00000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 574f4c4600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48268:1434:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48859:6;:4;:6::i;:::-;48268:1434;14360:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14360:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14360:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8977:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8977:226:0;-1:-1:-1;;;;;8977:226:0;;;;;;;;;;;;;;;;;;;;;;;;;45542:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45542:26:0;;;;;;;;;;;;;;;;;;;;;;;48379:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48379:32:0;;;;;;;;;;;;;;;;;;;;7188:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7188:85:0;;;;48341:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48341:31:0;;;;;;;;-1:-1:-1;;;;;48341:31:0;;;;;;;;;;;;;;9483:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9483:301:0;-1:-1:-1;;;;;9483:301:0;;;;;;;;;;;;41428:999;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;41428:999:0;;;;;;;;;;;;;14632:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14632:76:0;;;;;;;;;;;;;;;;;;;;;;;10246:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10246:343:0;-1:-1:-1;;;;;10246:343:0;;;;;;;44415:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44415:39:0;;;;43104:1194;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;43104:1194:0;;;;;;;;;;;;;15330:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15330:29:0;;;;7477:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7477:100:0;-1:-1:-1;;;;;7477:100:0;;;;;3122:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3122:130:0;;;;49339:360;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;49339:360:0;;;;;49049:182;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;49049:182:0;;;;;2463:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2463:72:0;;;;2765:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2765:85:0;;;;46992:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46992:115:0;;;;14488:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14488:73:0;;;;47877:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;47877:140:0;;;;;49242:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49242:86:0;;;;11056:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11056:353:0;-1:-1:-1;;;;;11056:353:0;;;;;;;8220:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8220:130:0;-1:-1:-1;;;;;8220:130:0;;;;;;;48025:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;48025:158:0;-1:-1:-1;;;;;48025:158:0;;;;;;;45877:186;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;45877:186:0;;;;;44638:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44638:100:0;;;;;7902:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7902:159:0;-1:-1:-1;;;;;7902:159:0;;;;;;;;;;3419:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3419:103:0;-1:-1:-1;;;;;3419:103:0;;;;;45673:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;45673:196:0;;;;;48876:165;48940:9;48960:25;48940:9;48960;:25::i;:::-;-1:-1:-1;49006:7:0;;:27;;49018:14;49006:27;:11;:27;:::i;:::-;48996:7;:37;-1:-1:-1;48876:165:0:o;14360:69::-;14418:5;14411:12;;;;;;;;-1:-1:-1;;14411:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14396:6;;14411:12;;14418:5;;14411:12;;14418:5;14411:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14360:69;:::o;8977:226::-;9042:4;-1:-1:-1;;;;;9063:21:0;;;;9055:30;;;;;;9103:10;9094:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9094:29:0;;;;;;;;;;;;:37;;;9143:36;;;;;;;9094:29;;9103:10;9143:36;;;;;;;;;;;-1:-1:-1;9193:4:0;8977:226;;;;:::o;45542:26::-;;;;;;:::o;48379:32::-;;;;:::o;7188:85::-;7255:12;;7188:85;:::o;48341:31::-;;;-1:-1:-1;;;;;48341:31:0;;:::o;9483:301::-;-1:-1:-1;;;;;9625:14:0;;9592:4;9625:14;;;:8;:14;;;;;;;;9640:10;9625:26;;;;;;;;9616:35;;;9608:44;;;;;;-1:-1:-1;;;;;9690:14:0;;;;;;:8;:14;;;;;;;;9705:10;9690:26;;;;;;;;:37;;9721:5;9690:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;9661:14:0;;;;;;:8;:14;;;;;;;;9676:10;9661:26;;;;;;;:66;9734:26;9670:4;9750:2;9754:5;9734:9;:26::i;:::-;-1:-1:-1;9774:4:0;9483:301;;;;;:::o;41428:999::-;41607:7;42084:14;42109:15;42135:13;42317:22;41677:1;41667:7;:11;:34;;;;;41700:1;41682:15;:19;41667:34;:55;;;;;41721:1;41705:13;:17;;;41667:55;:93;;;;-1:-1:-1;40751:7:0;41726:34;;;;;41667:93;41659:121;;;;;;;-1:-1:-1;;;;;41659:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41841:19;;41837:60;;;41884:1;41877:8;;;;41837:60;41956:34;;;40751:7;41956:34;41952:122;;;42014:48;42046:15;42014:27;:7;42026:14;42014:27;:11;:27;:::i;:::-;:31;:48;:31;:48;:::i;:::-;42007:55;;;;41952:122;42151:35;:14;42170:15;42151:35;:18;:35;:::i;:::-;42135:51;;42219:87;42239:5;42246:15;42263:13;40751:7;42219:5;:87::i;:::-;42197:109;;-1:-1:-1;42197:109:0;-1:-1:-1;42342:32:0;;;:19;:7;42197:109;42342:19;:11;:19;:::i;:::-;:32;;;;;;;;-1:-1:-1;42392:27:0;42342:32;42411:7;42392:27;:18;:27;:::i;:::-;42385:34;;41428:999;;;;;;;;;;;:::o;14632:76::-;14693:9;;;;14632:76;:::o;10246:343::-;10351:4;-1:-1:-1;;;;;10375:21:0;;;;10367:30;;;;;;10456:10;10447:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10447:29:0;;;;;;;;;;:45;;10481:10;10447:45;:33;:45;:::i;:::-;10415:10;10406:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10406:29:0;;;;;;;;;;;;:87;;;10505:60;;;;;;10406:29;;10505:60;;;;;;;;;;;-1:-1:-1;10579:4:0;10246:343;;;;:::o;44415:39::-;;;;:::o;43104:1194::-;43276:7;43912:14;43937:15;43963:13;44126:18;44185;43346:1;43336:7;:11;:34;;;;;43369:1;43351:15;:19;43336:34;:55;;;;;43390:1;43374:13;:17;;;43336:55;:93;;;;-1:-1:-1;40751:7:0;43395:34;;;;;43336:93;:119;;;;;43448:7;43433:11;:22;;43336:119;43328:147;;;;;;;-1:-1:-1;;;;;43328:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43533:16;;43529:57;;;43573:1;43566:8;;;;43529:57;43670:7;43655:11;:22;43651:77;;;43701:15;43694:22;;;;43651:77;43787:34;;;40751:7;43787:34;43783:119;;;43845:45;43882:7;43845:32;:15;43865:11;43845:32;:19;:32;:::i;:45::-;43838:52;;;;43783:119;43979:24;:7;43991:11;43979:24;:11;:24;:::i;:::-;43963:40;;44036:79;44056:7;44065:5;40751:7;44091:13;44036:5;:79::i;:::-;44014:101;;-1:-1:-1;44014:101:0;-1:-1:-1;44147:27:0;:15;44014:101;44147:27;:19;:27;:::i;:::-;44126:48;-1:-1:-1;;44206:28:0;;;;;;;44252:38;44283:6;44252:26;44126:48;44206:28;44252:26;:14;:26;:::i;:38::-;44245:45;;43104:1194;;;;;;;;;;;;:::o;15330:29::-;;;;;;;;;;;;;;;-1:-1:-1;;15330:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7477:100::-;-1:-1:-1;;;;;7555:16:0;7532:7;7555:16;;;:9;:16;;;;;;;7477:100::o;3122:130::-;2656:9;:7;:9::i;:::-;2648:18;;;;;;;;3217:1;3201:6;;3180:40;;-1:-1:-1;;;;;3201:6:0;;;;3180:40;;3217:1;;3180:40;3244:1;3227:19;;-1:-1:-1;;3227:19:0;;;3122:130::o;49339:360::-;49565:20;2656:9;:7;:9::i;:::-;2648:18;;;;;;;;49414:17;;49408:3;:23;49400:63;;;;;-1:-1:-1;;;;;49400:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;49482:16;;-1:-1:-1;;;;;49482:16:0;49502:10;49482:30;49474:80;;;;;-1:-1:-1;;;;;49474:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49616:7:0;;49588;;49616:28;;49588:7;49616:28;:11;:28;:::i;:::-;49606:7;:38;49655:36;;:10;;:36;;;;;49675:15;;49655:36;;;;49675:15;49655:10;:36;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49655:36:0;49339:360;;:::o;49049:182::-;49095:17;49115:18;49125:7;49115:9;:18::i;:::-;49154:7;;49095:38;;-1:-1:-1;49154:25:0;;49095:38;49154:25;:11;:25;:::i;2463:72::-;2500:7;2523:6;-1:-1:-1;;;;;2523:6:0;2463:72;:::o;2765:85::-;2804:4;2838:6;-1:-1:-1;;;;;2838:6:0;2824:10;:20;;2765:85::o;46992:115::-;47035:4;47059:13;:11;:13::i;:::-;47052:20;;46992:115;:::o;14488:73::-;14548:7;14541:14;;;;;;;;-1:-1:-1;;14541:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14526:6;;14541:14;;14548:7;;14541:14;;14548:7;14541:14;;;;;;;;;;;;;;;;;;;;;;;;47877:140;47932:26;47938:10;47950:7;47932:5;:26::i;:::-;47974:35;;;47981:10;47974:35;;;;;;;;48002:1;47974:35;;;;48005:3;47974:35;;;;;;;;;;;;;;;47877:140;:::o;49242:86::-;49313:7;;49242:86;:::o;11056:353::-;11166:4;-1:-1:-1;;;;;11190:21:0;;;;11182:30;;;;;;11271:10;11262:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11262:29:0;;;;;;;;;;:50;;11296:15;11262:50;:33;:50;:::i;8220:130::-;8281:4;8294:32;8304:10;8316:2;8320:5;8294:9;:32::i;:::-;-1:-1:-1;8340:4:0;8220:130;;;;:::o;48025:158::-;48099:25;48109:5;48116:7;48099:9;:25::i;:::-;48140:35;;;48147:10;48140:35;;;;;;;;48168:1;48140:35;;;;48171:3;48140:35;;;;;;;;;;;;;;;48025:158;;:::o;45877:186::-;45948:4;45972:83;45992:12;:10;:12::i;:::-;46006:16;:14;:16::i;:::-;46024:12;;;;46038:16;45972:19;:83::i;:::-;45965:90;45877:186;-1:-1:-1;;45877:186:0:o;44638:100::-;2656:9;:7;:9::i;:::-;2648:18;;;;;;;;44708:11;:22;44638:100::o;7902:159::-;-1:-1:-1;;;;;8031:15:0;;;8005:7;8031:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;7902:159::o;3419:103::-;2656:9;:7;:9::i;:::-;2648:18;;;;;;;;3488:28;3507:8;3488:18;:28::i;:::-;3419:103;:::o;45673:196::-;45747:4;45771:90;45795:12;:10;:12::i;:::-;45809:16;:14;:16::i;:::-;45827:12;;;;45841:19;45771:23;:90::i;47115:336::-;47181:4;47261:17;44522:11;;44507;:26;;44499:111;;;;;;;-1:-1:-1;;;;;44499:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47217:1;47206:12;;47198:50;;;;;-1:-1:-1;;;;;47198:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47281:27;47299:8;47281:17;:27::i;:::-;47261:47;;47319:31;47325:10;47337:12;47319:5;:31::i;:::-;47366:47;;;47373:10;47366:47;;;;;;;;;;;;;;47409:3;47366:47;;;;;;;;;;;;;;;47431:12;47115:336;-1:-1:-1;;47115:336:0:o;5225:136::-;5283:7;5311:5;;;5331:6;;;;5323:15;;;;;;5354:1;5347:8;;5225:136;;;;;;:::o;5021:::-;5079:7;;5103:6;;;;5095:15;;;;;;-1:-1:-1;;5129:5:0;;;5021:136::o;11617:284::-;-1:-1:-1;;;;;11710:15:0;;;;;;:9;:15;;;;;;11701:24;;;11693:33;;;;;;-1:-1:-1;;;;;11741:16:0;;;;11733:25;;;;;;-1:-1:-1;;;;;11785:15:0;;;;;;:9;:15;;;;;;:26;;11805:5;11785:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;11767:15:0;;;;;;;:9;:15;;;;;;:44;;;;11834:13;;;;;;;:24;;11852:5;11834:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;11818:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;11870:25;;;;;;;11818:13;;11870:25;;;;;;;;;;;;;11617:284;;;:::o;4119:393::-;4177:7;;4405:6;;4401:37;;;4429:1;4422:8;;;;4401:37;-1:-1:-1;4458:5:0;;;4462:1;4458;:5;4478;;;;;;;;:10;4470:19;;;;;4627:276;4685:7;;4709:5;;;4701:14;;;;;;4796:1;4792;:5;;;;;;;;;4627:276;-1:-1:-1;;;;4627:276:0:o;26552:917::-;26693:7;;;;;;15942:35;26733:16;;26725:53;;;;;-1:-1:-1;;;;;26725:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26797:16;;;;26789:57;;;;;-1:-1:-1;;;;;26789:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26919:6;-1:-1:-1;;;26900:6:0;:16;:25;;;;;;;;26885:40;;16377:35;26940:4;:22;26936:140;;;26989:16;27000:4;26989:10;:16::i;:::-;26979:26;;26936:140;;;27048:16;27059:4;27048:10;:16::i;:::-;27038:26;;26936:140;27132:5;27114:23;;27124:5;27114:15;;:7;:15;:23;;;;;;;;27088:49;;16462:35;27152:15;:33;27148:314;;;27210:27;27221:15;27210:10;:27::i;:::-;15545:3;27202:51;;;;;;27148:314;27304:42;27330:15;27304:25;:42::i;:::-;27286:60;-1:-1:-1;27369:69:0;27380:46;15545:3;27400:25;;;27380:46;;;;;27286:60;27369:10;:69::i;:::-;27440:9;27361:89;;;;27148:314;26552:917;;;;;;;;;;;:::o;47459:410::-;47524:4;47686:17;44522:11;;44507;:26;;44499:111;;;;;;;-1:-1:-1;;;;;44499:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47559:1;47549:11;;47541:48;;;;;-1:-1:-1;;;;;47541:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47633:7;47608:21;47618:10;47608:9;:21::i;:::-;:32;;47600:73;;;;;-1:-1:-1;;;;;47600:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47706:26;47724:7;47706:17;:26::i;:::-;47686:46;;47743:26;47749:10;47761:7;47743:5;:26::i;:::-;47785:46;;;47792:10;47785:46;;;;;;;;;;;;;;47827:3;47785:46;;;;;;;;;;;;;;;47849:12;47459:410;-1:-1:-1;;47459:410:0:o;12697:285::-;-1:-1:-1;;;;;12768:12:0;;;;12760:21;;;;;;-1:-1:-1;;;;;12805:18:0;;;;;;:9;:18;;;;;;12796:27;;;12788:36;;;;;;12848:12;;:23;;12865:5;12848:23;:16;:23;:::i;:::-;12833:12;:38;-1:-1:-1;;;;;12899:18:0;;;;;;:9;:18;;;;;;:29;;12922:5;12899:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12878:18:0;;;;;;:9;:18;;;;;;;;:50;;;;12940:36;;;;;;;12878:18;;12940:36;;;;;;;;;;;12697:285;;:::o;13297:398::-;-1:-1:-1;;;;;13381:17:0;;;;;;:8;:17;;;;;;;;13399:10;13381:29;;;;;;;;13372:38;;;13364:47;;;;;;-1:-1:-1;;;;;13613:17:0;;;;;;:8;:17;;;;;;;;13631:10;13613:29;;;;;;;;:48;;13655:5;13613:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;13581:17:0;;;;;;:8;:17;;;;;;;;13599:10;13581:29;;;;;;;:80;13668:21;13590:7;13683:5;13668;:21::i;:::-;13297:398;;:::o;3662:173::-;-1:-1:-1;;;;;3732:22:0;;;;3724:31;;;;;;3788:6;;;3767:38;;-1:-1:-1;;;;;3767:38:0;;;;3788:6;;;3767:38;;;3812:6;:17;;-1:-1:-1;;3812:17:0;-1:-1:-1;;;;;3812:17:0;;;;;;;;;;3662:173::o;12237:240::-;-1:-1:-1;;;;;12308:12:0;;;;12300:21;;;;;;12343:12;;:23;;12360:5;12343:23;:16;:23;:::i;:::-;12328:12;:38;-1:-1:-1;;;;;12394:18:0;;;;;;:9;:18;;;;;;:29;;12417:5;12394:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12373:18:0;;;;;;:9;:18;;;;;;;;:50;;;;12435:36;;;;;;;12373:18;;;;12435:36;;;;;;;;;;12237:240;;:::o;34700:2425::-;34754:7;;;;;34873:34;34868:39;;34864:143;;34917:34;34910:41;;;;;34971:34;-1:-1:-1;;;34957:11:0;;:48;34953:52;;34864:143;35026:34;35021:39;;35017:143;;35070:34;35063:41;;;;;35124:34;-1:-1:-1;;;35110:11:0;;:48;35106:52;;35017:143;35179:34;35174:39;;35170:143;;35223:34;35216:41;;;;;35277:34;-1:-1:-1;;;35263:11:0;;:48;35259:52;;35170:143;35332:34;35327:39;;35323:143;;35376:34;35369:41;;;;;35430:34;-1:-1:-1;;;35416:11:0;;:48;35412:52;;35323:143;35485:34;35480:39;;35476:143;;35529:34;35522:41;;;;;35583:34;-1:-1:-1;;;35569:11:0;;:48;35565:52;;35476:143;35638:34;35633:39;;35629:143;;35682:34;35675:41;;;;;35736:34;-1:-1:-1;;;35722:11:0;;:48;35718:52;;35629:143;35791:34;35786:39;;35782:143;;35835:34;35828:41;;;;;35889:34;-1:-1:-1;;;35875:11:0;;:48;35871:52;;35782:143;35944:34;35939:39;;35935:143;;35988:34;35981:41;;;;;36042:34;-1:-1:-1;;;36028:11:0;;:48;36024:52;;35935:143;-1:-1:-1;;36098:11:0;;;-1:-1:-1;36098:11:0;;-1:-1:-1;;;;36124:5:0;;;:15;;-1:-1:-1;36205:35:0;36162:39;;;36157:45;;:83;36150:90;;;;;-1:-1:-1;;;36246:5:0;;;:15;;-1:-1:-1;36327:35:0;36284;:39;;;36279:45;;:83;36272:90;;;;;-1:-1:-1;;;36368:5:0;;;:15;;-1:-1:-1;36449:35:0;36406;:39;;;36401:45;;:83;36394:90;;;;;-1:-1:-1;;;36490:5:0;;;:15;;-1:-1:-1;36571:35:0;36528;:39;;;36523:45;;:83;36516:90;;;;;-1:-1:-1;;;36612:5:0;;;:15;;-1:-1:-1;36693:35:0;36650;:39;;;36645:45;;:83;36638:90;;;;;-1:-1:-1;;;36734:5:0;;;:15;;-1:-1:-1;36815:35:0;36772;:39;;;36767:45;;:83;36760:90;;;;;-1:-1:-1;;;36856:5:0;;;:15;;-1:-1:-1;36937:35:0;36894;:39;;;36889:45;;:83;36882:90;;;;;-1:-1:-1;;;36978:5:0;;;:15;;-1:-1:-1;37059:35:0;37016;:39;;;37011:45;;:83;37004:90;;;;;34700:2425;-1:-1:-1;;;;;34700:2425:0:o;27640:849::-;27695:7;;27753:2;27695:7;;15865:35;27864:12;;27860:156;;27907:22;-1:-1:-1;;;27917:1:0;:11;27907:9;:22::i;:::-;27944:11;;;-1:-1:-1;;;27989:15:0;;;-1:-1:-1;27944:11:0;;;;;;;-1:-1:-1;27860:156:0;-1:-1:-1;;;28124:1:0;:11;28120:305;;;-1:-1:-1;15545:3:0;28152:262;28186:1;28182;:5;;;28152:262;;;-1:-1:-1;;;28218:5:0;;;28217:17;;-1:-1:-1;15865:35:0;28274:12;;28270:129;;28365:14;-1:-1:-1;;28373:5:0;;28365:14;28311:7;28365:14;;;28358:21;;;;;28311:7;;;;28270:129;-1:-1:-1;;28189:3:0;28152:262;;;16185:33;16102;28444:19;;:37;;27640:849;-1:-1:-1;;;;;;27640:849:0:o;37303:3017::-;37357:7;37710:18;-1:-1:-1;;;37455:38:0;;;37508:5;;;:15;;;37595:5;;;:15;;;37682:5;;;:15;;;37706:22;;;37536:18;37532:22;;;37623:18;37619:22;;;;37612:29;37699;;37455:38;;37769:5;;;:15;37765:19;;37793:1;37797:18;37793:22;37786:29;;;;-1:-1:-1;;;37860:1:0;37856;:5;:15;;;;;;;;37852:19;;37880:1;37884:18;37880:22;37873:29;;;;-1:-1:-1;;;37947:1:0;37943;:5;:15;;;;;;;;37939:19;;37967:1;37971:18;37967:22;37960:29;;;;-1:-1:-1;;;38034:1:0;38030;:5;:15;;;;;;;;38026:19;;38054:1;38058:18;38054:22;38047:29;;;;-1:-1:-1;;;38121:1:0;38117;:5;:15;;;;;;;;38113:19;;38141:1;38145:18;38141:22;38134:29;;;;-1:-1:-1;;;38208:1:0;38204;:5;:15;;;;;;;;38200:19;;38228:1;38232:18;38228:22;38221:29;;;;-1:-1:-1;;;38295:1:0;38291;:5;:15;;;;;;;;38287:19;;38315:1;38319:18;38315:22;38308:29;;;;-1:-1:-1;;;38382:1:0;38378;:5;:15;;;;;;;;38374:19;;38402:1;38406:18;38402:22;38395:29;;;;-1:-1:-1;;;38469:1:0;38465;:5;:15;;;;;;;;38461:19;;38489:1;38493:18;38489:22;38482:29;;;;-1:-1:-1;;;38556:1:0;38552;:5;:15;;;;;;;;38548:19;;38576:1;38580:18;38576:22;38569:29;;;;-1:-1:-1;;;38643:1:0;38639;:5;:15;;;;;;;;38635:19;;38663:1;38667:18;38663:22;38656:29;;;;-1:-1:-1;;;38730:1:0;38726;:5;:15;;;;;;;;38722:19;;38750:1;38754:18;38750:22;38743:29;;;;-1:-1:-1;;;38817:1:0;38813;:5;:15;;;;;;;;38809:19;;38837:1;38841:18;38837:22;38830:29;;;;-1:-1:-1;;;38904:1:0;38900;:5;:15;;;;;;;;38896:19;;38924:1;38928:18;38924:22;38917:29;;;;-1:-1:-1;;;38991:1:0;38987;:5;:15;;;;;;;;38983:19;;39011:1;39015:18;39011:22;39004:29;;;;-1:-1:-1;;;39078:1:0;39074;:5;:15;;;;;;;39169:18;39074:15;;;39091:29;;;39163:24;:28;;-1:-1:-1;;;39163:38:0;;39074:15;-1:-1:-1;39273:35:0;39269:39;;39268:46;39264:137;;39366:35;39328;39322:41;;:79;39316:85;;39264:137;39421:35;39417:39;;39416:46;39412:137;;39514:35;39476;39470:41;;:79;39464:85;;39412:137;39569:35;39565:39;;39564:46;39560:137;;39662:35;39624;39618:41;;:79;39612:85;;39560:137;-1:-1:-1;;;39713:39:0;;39712:46;39708:137;;39810:35;39772;39766:41;;:79;39760:85;;39708:137;39865:35;39861:39;;39860:46;39856:137;;39958:35;39920;39914:41;;:79;39908:85;;39856:137;40013:35;40009:39;;40008:46;40004:137;;40106:35;40068;40062:41;;:79;40056:85;;40004:137;40161:35;40157:39;;40156:46;40152:137;;40254:35;40216;40210:41;;:79;40204:85;;40152:137;40309:3;40302:10;;37303:3017;;;;;;;:::o;29530:529::-;29605:5;15497:2;15545:3;29605:5;29700:185;29716:2;29707:11;;:2;29712:1;29707:6;:11;;;29700:185;;;29759:1;29747:13;29748:7;;;29747:13;;;-1:-1:-1;29799:2:0;29779:11;:16;;;;;;;;;;;;:22;29775:98;;29825:3;29820:8;;29775:98;;;29870:3;29865:8;;29775:98;29700:185;;;29920:2;29901:11;:15;;;;;;;;;;;;:21;29897:49;;29944:2;29937:9;;;;29897:49;29980:2;29961:11;:15;;;;;;;;;;;;:21;29957:49;;30004:2;29997:9;;;;29957:49;30019:13;30653:3864;30726:7;30746:10;30772:11;30759:2;30746:15;;30786:1;30772:15;;30818:10;30805:23;;30811:2;30806;:7;30805:23;;;;;30800:28;;30837:2;30842:33;30837:38;30830:45;;;;30930:10;30917:23;;30923:2;30918;:7;30917:23;;;;;30912:28;;30949:2;30954:33;30949:38;30942:45;;;;31042:10;31029:23;;31035:2;31030;:7;31029:23;;;;;31024:28;;31061:2;31066:33;31061:38;31054:45;;;;31154:10;31141:23;;31147:2;31142;:7;31141:23;;;;;31136:28;;31173:2;31178:33;31173:38;31166:45;;;;31266:10;31253:23;;31259:2;31254;:7;31253:23;;;;;31248:28;;31285:2;31290:33;31285:38;31278:45;;;;31378:10;31365:23;;31371:2;31366;:7;31365:23;;;;;31360:28;;31397:2;31402:33;31397:38;31390:45;;;;31490:10;31477:23;;31483:2;31478;:7;31477:23;;;;;31472:28;;31509:2;31514:33;31509:38;31502:45;;;;31602:10;31589:23;;31595:2;31590;:7;31589:23;;;;;31584:28;;31621:2;31626:33;31621:38;31614:45;;;;31714:10;31701:23;;31707:2;31702;:7;31701:23;;;;;31696:28;;31733:2;31738:33;31733:38;31726:45;;;;31826:10;31813:23;;31819:2;31814;:7;31813:23;;;;;31808:28;;31845:2;31850:33;31845:38;31838:45;;;;31938:10;31925:23;;31931:2;31926;:7;31925:23;;;;;31920:28;;31957:2;31962:33;31957:38;31950:45;;;;32050:10;32037:23;;32043:2;32038;:7;32037:23;;;;;32032:28;;32069:2;32074:33;32069:38;32062:45;;;;32162:10;32149:23;;32155:2;32150;:7;32149:23;;;;;32144:28;;32181:2;32186:33;32181:38;32174:45;;;;32274:10;32261:23;;32267:2;32262;:7;32261:23;;;;;32256:28;;32293:2;32298:33;32293:38;32286:45;;;;32386:10;32373:23;;32379:2;32374;:7;32373:23;;;;;32368:28;;32405:2;32410:33;32405:38;32398:45;;;;32498:10;32485:23;;32491:2;32486;:7;32485:23;;;;;32480:28;;32517:2;32522:33;32517:38;32510:45;;;;32610:10;32597:23;;32603:2;32598;:7;32597:23;;;;;32592:28;;32629:2;32634:33;32629:38;32622:45;;;;32722:10;32709:23;;32715:2;32710;:7;32709:23;;;;;32704:28;;32741:2;32746:33;32741:38;32734:45;;;;32834:10;32821:23;;32827:2;32822;:7;32821:23;;;;;32816:28;;32853:2;32858:33;32853:38;32846:45;;;;32946:10;32933:23;;32939:2;32934;:7;32933:23;;;;;32928:28;;32965:2;32970:33;32965:38;32958:45;;;;33058:10;33045:23;;33051:2;33046;:7;33045:23;;;;;33040:28;;33077:2;33082:33;33077:38;33070:45;;;;33170:10;33157:23;;33163:2;33158;:7;33157:23;;;;;33152:28;;33189:2;33194:33;33189:38;33182:45;;;;33282:10;33269:23;;33275:2;33270;:7;33269:23;;;;;33264:28;;33301:2;33306:33;33301:38;33294:45;;;;33394:10;33381:23;;33387:2;33382;:7;33381:23;;;;;33376:28;;33413:2;33418:33;33413:38;33406:45;;;;33506:10;33493:23;;33499:2;33494;:7;33493:23;;;;;33488:28;;33525:2;33530:33;33525:38;33518:45;;;;33618:10;33605:23;;33611:2;33606;:7;33605:23;;;;;33600:28;;33637:2;33642:33;33637:38;33630:45;;;;33730:10;33717:23;;33723:2;33718;:7;33717:23;;;;;33712:28;;33749:2;33754:33;33749:38;33742:45;;;;33842:10;33829:23;;33835:2;33830;:7;33829:23;;;;;33824:28;;33861:2;33866:33;33861:38;33854:45;;;;33954:10;33941:23;;33947:2;33942;:7;33941:23;;;;;33936:28;;33973:2;33978:33;33973:38;33966:45;;;;34066:10;34053:23;;34059:2;34054;:7;34053:23;;;;;34048:28;;34085:2;34090:33;34085:38;34078:45;;;;34178:10;34165:23;;34171:2;34166;:7;34165:23;;;;;34160:28;;34197:2;34202:33;34197:38;34190:45;;;;34290:10;34277:23;;34283:2;34278;:7;34277:23;;;;;34272:28;;34309:2;34314:33;34309:38;34302:45;;;;34448:10;34441:17;;15399:1;34441:17;;;;34435:2;34399:33;34393:3;:39;;;;;;;;:44;:66;;30653:3864;-1:-1:-1;;;;;30653:3864:0:o;28609:553::-;28663:5;;28717:2;28663:5;28740:3;28736:7;;28732:400;;;28797:83;28808:1;28804;:5;28797:83;;;28836:1;28856:8;;;;;28830:7;;;;;28797:83;;;28732:400;;;-1:-1:-1;28964:3:0;28949:172;28973:1;28969;:5;;;28949:172;;;29014:8;;;;;29008:15;;29004:102;;29078:8;;;;29048:7;;;;;;;;;29004:102;28976:7;;;;;;28949:172;

Swarm Source

bzzr://1ed9f3ca82699175937112c971d8dfb001f952b3d10715fa28490c49167d8020
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.