ETH Price: $3,299.51 (+0.43%)

Token

BrincGovToken (gBRC)

Overview

Max Total Supply

846,298.711174387765557959 gBRC

Holders

25,744 (0.00%)

Market

Price

$0.0104 @ 0.000003 ETH

Onchain Market Cap

$8,801.94

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
10 gBRC

Value
$0.10 ( ~3.03075659423628E-05 ETH) [0.0012%]
0x1f4dc26f26262fe6431c6ff1bd304affdf600289
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Brinc governnance token is used to incentivize users on the Brinc protocol for staking the BRC and the gBRC tokens. The Brinc protocol also provides for a governance token, gBRC, to be used to initiate and vote on all governance proposals initiated by the community.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 gBRC
Market Data Source: Coinmarketcap

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xfE7c6098...776b11723
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BrincGovToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : BrincGovToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Snapshot.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";

contract BrincGovToken is ERC20, ERC20Burnable, ERC20Snapshot, ERC20Pausable, Ownable {
  using SafeERC20 for IERC20;
  using SafeMath for uint256;

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

  // The treasury will be controlled by a separate address, NOT THE OWNER OF THIS CONTRACT ADDRESS.
  // The owner will be relinquished to the BrincStaking contract upon deployment.
  address public treasuryOwner;

  mapping(address => bool) public isMinter;

  // MembersOnly is the mapping of addresses to the BRINC team and/or investors. The addresses can and will only be included by use of the contract constructor and the manual addition by the OWNER of this contract address.

  struct MemberInfo {
    uint256 vestingStartBlock; // Block of when vesting begins.
    uint256 vestingBlocks; // Vesting duration in blocks (1 block estimated to be 13 seconds).
    uint256 claimedBalance; // Amount of gBRC that has be claimed.
    uint256 awardBalance; // Total amount of gBRC awarded. Note, this balance is different than the balanceOf that is part of the ERC20 methods. awardBalance is the number of tokens that has been allocated based on specified team/investor allocations.
  }

  mapping (address => MemberInfo) public members;

  uint256 public maxTotalSupply;
  
  event BalanceUpdated(address indexed user, uint256 value);
  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);

  event Mint(address _to, uint256 amount);
  event Burn(address _from, uint256 amount);
  event SetMinter(address _minter, bool _isMinter);

  constructor (
    string memory _name,
    string memory _symbol,
    address[] memory _initAllocAddrs,
    uint256[] memory _initAllocAmount,
    uint256[] memory _initVestBlocks,
    uint256 _maxTotalSupply
  ) public ERC20(_name, _symbol) {
    require(_initAllocAddrs.length == _initAllocAmount.length);
    require(_initAllocAddrs.length == _initVestBlocks.length);
    // sets the initial gov token allocations to the corresponding address to their token amount.
    for (uint i = 0; i < _initAllocAddrs.length; i++) {
      MemberInfo storage member = members[_initAllocAddrs[i]];
      require(_initVestBlocks[i] > 0);
      require(_initAllocAmount[i] > 0);
      member.vestingStartBlock = block.number;
      member.vestingBlocks = _initVestBlocks[i];
      member.claimedBalance = 0;
      member.awardBalance = _initAllocAmount[i];
    }
    maxTotalSupply = _maxTotalSupply;
    treasuryOwner = msg.sender;
    isMinter[msg.sender] = true;
  }

  modifier onlyMembers {
      require(members[msg.sender].vestingStartBlock > 0, "onlyMemebers: member does not exist");
      require(members[msg.sender].awardBalance > 0, "onlyMemebers: member does not exist");
      _;
   }

  modifier onlyTreasuryOwner {
    require(msg.sender == treasuryOwner, "onlyTreasuryOwner: only treasury owner can call this operation");
    _;
  }

  modifier onlyMinter {
    require(isMinter[msg.sender], "onlyMinter: only minter can call this operation");
    _;
  }

  /**
    * @dev shows the amount of time in blocks remaining for vesting.
    *
    */
  /// #if_succeeds {:msg "vestingTimeRemaining: vesting time in blocks remaining is correct - case endBlock > block.number"}
      /// let endBlock := members[msg.sender].vestingStartBlock + members[msg.sender].vestingBlocks in
      /// endBlock > block.number ==> $result == endBlock - block.number;
  /// #if_succeeds {:msg "vestingTimeRemaining: vesting time remaining is incorrect - case endBlock < block.number"}
      /// let endBlock := members[msg.sender].vestingStartBlock + members[msg.sender].vestingBlocks in
      /// endBlock < block.number ==> $result == 0;
  function vestingTimeRemaining() public view onlyMembers returns (uint256) {
    uint256 endBlock = members[msg.sender].vestingStartBlock.add(members[msg.sender].vestingBlocks);
    if (endBlock > block.number) {
      return endBlock.sub(block.number);
    }
    return 0;
  }

  /**
    * @dev gets the claimable tokens for _address. 
    * this will return 0 if _address does not have any stakes
    * 
    * formula:
    * claimableAmount = (blocks passed) * (awardAmount / vestingBlocks)
    *
    * @return claimable amount in gov tokens
    */
  /// #if_succeeds {:msg "getClaimableAmount: case block.number >= member.vestingStartBlock + member.vestingBlocks"}
    /// block.number >= members[_address].vestingStartBlock + members[_address].vestingBlocks ==>
    /// $result == members[_address].awardBalance.sub(members[_address].claimedBalance);
  /// #if_succeeds {:msg "getClaimableAmount: 0"}
    /// block.number < members[_address].vestingStartBlock + members[_address].vestingBlocks && block.number < members[_address].vestingStartBlock ==> $result == 0;
  function getClaimableAmount(address _address) public view returns (uint256) {
    MemberInfo memory member = members[_address];
    require(member.claimedBalance < member.awardBalance, "getClaimableAmount: no claimable balance");

    if (block.number >= member.vestingStartBlock.add(member.vestingBlocks)) {
      return member.awardBalance.sub(member.claimedBalance);
    }
    if (block.number > member.vestingStartBlock) {
      uint256 timePassed = block.number.sub(member.vestingStartBlock);
      return member.awardBalance.mul(1e10).div(member.vestingBlocks).mul(timePassed).div(1e10).sub(member.claimedBalance);
    }
    return 0;
  }

  /**
    * @dev claims the member reward.
    * The number of tokens that can be claimed will be calculated based off the following formula:
    *    withdrawableAmount = (awardBalance) / (vestingEndBlock - block.number)
    *    This will produce the amount of tokens that can be claimed depending on the vesting time remaining.
    */
  /// #if_succeeds {:msg "memberClaim: claimed balance mints correctly"}
      /// let claimableAmount := old(this.getClaimableAmount(msg.sender)) in
      /// this.balanceOf(msg.sender) == old(this.balanceOf(msg.sender)) + claimableAmount;
  /// #if_succeeds {:msg "memberClaim: updates member info correctly"}
      /// let claimableAmount := old(this.getClaimableAmount(msg.sender)) in
      /// members[msg.sender].claimedBalance == old(members[msg.sender].claimedBalance) + claimableAmount;
  function memberClaim() public onlyMembers {
    uint256 claimableAmount = getClaimableAmount(msg.sender);
    require(claimableAmount > 0, "memberClaim: nothing to claim");

    MemberInfo storage member = members[msg.sender];
    member.claimedBalance = member.claimedBalance.add(claimableAmount);

    _mint(msg.sender, claimableAmount);
    emit Mint(msg.sender, claimableAmount);
  }

  /**
    * @dev transfer ownership of treasury. Only the current treasury owner can invoke this method.
    *
    * @param _address new owner of the treasury.
    */
  /// #if_succeeds {:msg "transferTreasuryOwnership: The sender must be treasuryOwner"}
      /// old(msg.sender == getTreasuryOwner());
  /// #if_succeeds {:msg "transferTreasuryOwnership: treasuryOwner updated correctly"}
      /// getTreasuryOwner() == _address;
  function transferTreasuryOwnership(address _address) public onlyTreasuryOwner {
    require(treasuryOwner != address(0), "TrasnferTreasuryOwnership: transferring ownership to 0x0");
    require(treasuryOwner != _address, "TrasnferTreasuryOwnership: transferring ownership to self");
    treasuryOwner = _address;
  }

  /**
    * @dev mint to treasury owner.
    * The minter will be the staking contract that will be allowed to mint tokens on behalf of the treasury owner.
    * The staking contract will only allow msg.sender == treasuryOwner to call this method.
    *
    * @param _amount amount to mint to the treasury contract.
    *
    */
  /// #if_succeeds {:msg "mintToTreasury: The sender must be Minter"}
      /// isMinter[msg.sender] == true;
  /// #if_succeeds {:msg "mintToTreasury: balance of treasury address is correct after mint"}
      /// this.balanceOf(treasuryOwner) == old(this.balanceOf(treasuryOwner) + _amount);
  function mintToTreasury(uint256 _amount) public onlyMinter {
    _mint(treasuryOwner, _amount);
    emit Mint(treasuryOwner, _amount);
  }

  /**
    * @dev burns the specified number of tokens. can only be called by the treasury owner.
    *
    * @param _to address to mint tokens to.
    * @param _amount amount to burn by the treasury owner.
    * @notice Creates `_amount` token to `_to`. Must only be called by the owner (BrincStaking).
    */
  /// #if_succeeds {:msg "mint: The sender must be Owner"}
      /// isMinter[msg.sender] == true;
  /// #if_succeeds {:msg "mint: balance of receiving address is correct after mint"}
      /// this.balanceOf(_to) == old(this.balanceOf(_to) + _amount);
  function mint(address _to, uint256 _amount) public onlyMinter {
    _mint(_to, _amount);
    emit Mint(_to, _amount);
  }

  /**
    * @dev burns the specified number of tokens. can only be called by the treasury owner.
    *
    * @param _amount amount to burn by the treasury owner.
    */
  /// #if_succeeds {:msg "burn: The sender must be treasuryOwner"}
      /// old(msg.sender == getTreasuryOwner());
  /// #if_succeeds {:msg "burn: balance of treasury address is correct after burn"}
      /// this.balanceOf(treasuryOwner) == old(this.balanceOf(treasuryOwner) - _amount);
  function burn(uint256 _amount) public override onlyTreasuryOwner {
    require(balanceOf(address(treasuryOwner))>0, "burn: Not enough funds in treasury");
    _burn(treasuryOwner, _amount);
    emit Burn(treasuryOwner, _amount);
  }

  /**
    * @dev transfer the specified number of tokens to a specific address. can only be called by the treasury owner.
    *
    * @param _to address to send the treasury tokens to.
    * @param _amount amount to burn by the treasury owner.
    */
  /// #if_succeeds {:msg "treasuryTransferToken: The sender must be treasuryOwner"}
      /// old(msg.sender == getTreasuryOwner());
  /// #if_succeeds {:msg "treasuryTransferToken: balance of receiving address is correct after transfer"}
      /// _to != getTreasuryOwner() ==>
      /// this.balanceOf(_to) == old(this.balanceOf(_to)) + _amount;
  /// #if_succeeds {:msg "treasuryTransferToken: balance of treasury address is correct after transfer"}
      /// _to != getTreasuryOwner() ==>
      /// this.balanceOf(treasuryOwner) == old(this.balanceOf(treasuryOwner)) - _amount;
  function treasuryTransferToken(address _to, uint256 _amount) public onlyTreasuryOwner {
    require(balanceOf(address(treasuryOwner)) > 0, "treasuryTransferToken: Not enough funds in treasury");
    _transfer(treasuryOwner, _to, _amount);
    emit Transfer(treasuryOwner, _to, _amount);
  }

  /**
    * @dev add a Member. Only the treasury owner is authorized to call this method.
    *
    * @param _address address of member.
    * @param _awardAmount award amount attributed to user. The tokens will be locked up and released over the vesting time.
    * @param _vestingBlocks time given in block numbers.
    */
  /// #if_succeeds {:msg "addMember: The sender must be treasuryOwner"}
      /// old(msg.sender == getTreasuryOwner());
  /// #if_succeeds {:msg "addMember: member should be added correctly"}
      /// members[_address].vestingStartBlock != 0 && 
      /// members[_address].vestingBlocks != 0 &&
      /// members[_address].claimedBalance == 0 &&
      /// members[_address].awardBalance != 0;
  function addMember(address _address, uint256 _awardAmount, uint256 _vestingBlocks) public onlyTreasuryOwner {
    MemberInfo storage member = members[_address];
    require(member.awardBalance == member.claimedBalance, "addMember: member already exists");
    require(_awardAmount > 0, "addMember: invalid _awardAmount provided");
    require(_vestingBlocks > 0, "addMember: invalid _vestingBlocks provided");

    member.vestingStartBlock = block.number;
    member.vestingBlocks = _vestingBlocks;
    member.claimedBalance = 0;
    member.awardBalance = _awardAmount;
  }

  /**
    * @dev remove a Member. Only the treasury owner is authorized to call this method.
    *
    * @param _address address of member.
    */
  /// #if_succeeds {:msg "removeMember: The sender must be treasuryOwner"}
      /// old(msg.sender == getTreasuryOwner());
  /// #if_succeeds {:msg "removeMember: member should be removed correctly"}
      /// let claimableAmount := old(getClaimableAmount(_address)) in
      /// claimableAmount > 0 ==>
      /// members[_address].vestingStartBlock != 0 && 
      /// members[_address].vestingBlocks == 1 &&
      /// members[_address].awardBalance == claimableAmount;
  function removeMember(address _address) public onlyTreasuryOwner {
    MemberInfo storage member = members[_address];
    require(member.vestingStartBlock != 0, "removeMember: member does not exist");
    require(member.awardBalance > 0, "removeMember: member does not exist");
    uint256 claimableAmount = getClaimableAmount(_address);
    member.vestingBlocks = 1;
    member.awardBalance = claimableAmount;
  }


  /**
    * @dev gets a member information for msg.sender.
    *
    */
  function getMemberInfo() public view returns(MemberInfo memory) {
    return members[msg.sender];
  }

  /**
    * @dev returns the treasury owner address.
    *
    */
  /// #if_succeeds {:msg "getTreasuryOwner: result should be the treasuryOwner"}
      /// $result == treasuryOwner;
  function getTreasuryOwner() public view returns(address) {
    return treasuryOwner;
  }

  /**
    * @dev returns the treasury owner address.
    *
    */
  /// #if_succeeds {:msg "getTreasuryBalance: result should give the treasury balance"}
      /// $result == this.balanceOf(treasuryOwner);
  function getTreasuryBalance() public view returns(uint256) {
    return this.balanceOf(treasuryOwner);
  }

  /**
    * @dev returns the treasury owner address.
    * note: CirculatingSupply is the number of tokens that are currently in circulation.
    * The circulating supply represents the number of tokens that have been minted minus the number of tokens that are locked up.
    * Locked tokens will be associated to a the treasury contract address. All other tokens are considered unlocked and circulating.
    * The number of tokens located in the treasury will be locked indefinitely by the BRINC_TEAM until a time of their choosing (or can be discovered by the community through governance).
    */
  /// #if_succeeds {:msg "circulatingSupply: result should give the total supply minus treasury balance"}
      /// $result == totalSupply().sub(this.balanceOf(treasuryOwner));
  function circulatingSupply() public view returns (uint256) {
    return totalSupply().sub(this.balanceOf(treasuryOwner));
  }

  // ERC20Pausable
  /**
    * @dev Pauses the contract's transfer, mint & burn functions
    *
    */
  /// #if_succeeds {:msg "The caller must be Owner"}
    /// old(msg.sender == getTreasuryOwner());
  function pause() public onlyTreasuryOwner {
    _pause();
  }
  /**
    * @dev Unpauses the contract's transfer, mint & burn functions
    *
    */
  /// #if_succeeds {:msg "The caller must be Owner"}
    /// old(msg.sender == getTreasuryOwner());
  function unpause() public onlyTreasuryOwner {
    _unpause();
  }

  // ERC20Snapshot
  /**
    * @dev Creates a new snapshot and returns its snapshot id.
    *
    * Emits a {Snapshot} event that contains the same id.
    *
    */
  /// #if_succeeds {:msg "The caller must be Owner"}
    /// old(msg.sender == getTreasuryOwner());
  function snapshot() public onlyTreasuryOwner returns (uint256) {
    return _snapshot();
  }

  /**
   * @dev setMinter will set and allow the specified address to mint gBRC tokens.
   * only the owner will be able to call this method.
   * changing _isMinter to false will revoke minting privileges.
   *
   * @param _address address of minter
   * @param _isMinter bool access
   * 
   */
  /// #if_succeeds {:msg "setMinter: The sender must be owner"}
    /// old(msg.sender == this.owner());;
  function setMinter(address _minter, bool _isMinter) public onlyOwner {
    require(_minter != address(0), "invalid minter address");
    isMinter[_minter] = _isMinter;
    emit SetMinter(_minter, _isMinter);
  }

  function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Snapshot, ERC20Pausable) {
    if (from == address(0)) {
      // when minting, from is 0x0 -- we check maxTotalSupply
      require(totalSupply() <= maxTotalSupply, "too much tokens minted");
    }
    super._beforeTokenTransfer(from, to, amount);
  }

}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 15 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../../utils/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 4 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

File 5 of 15 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 6 of 15 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../../utils/Context.sol";
import "./ERC20.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

File 7 of 15 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./ERC20.sol";
import "../../utils/Pausable.sol";

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

File 8 of 15 : ERC20Snapshot.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../../math/SafeMath.sol";
import "../../utils/Arrays.sol";
import "../../utils/Counters.sol";
import "./ERC20.sol";

/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */
abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using SafeMath for uint256;
    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping (address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _currentSnapshotId.current();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns(uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }


    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
      super._beforeTokenTransfer(from, to, amount);

      if (from == address(0)) {
        // mint
        _updateAccountSnapshot(to);
        _updateTotalSupplySnapshot();
      } else if (to == address(0)) {
        // burn
        _updateAccountSnapshot(from);
        _updateTotalSupplySnapshot();
      } else {
        // transfer
        _updateAccountSnapshot(from);
        _updateAccountSnapshot(to);
      }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots)
        private view returns (bool, uint256)
    {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        // solhint-disable-next-line max-line-length
        require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _currentSnapshotId.current();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

File 9 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 10 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 13 of 15 : Arrays.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
   /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

File 14 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../math/SafeMath.sol";

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

File 15 of 15 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address[]","name":"_initAllocAddrs","type":"address[]"},{"internalType":"uint256[]","name":"_initAllocAmount","type":"uint256[]"},{"internalType":"uint256[]","name":"_initVestBlocks","type":"uint256[]"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"BalanceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"bool","name":"_isMinter","type":"bool"}],"name":"SetMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_awardAmount","type":"uint256"},{"internalType":"uint256","name":"_vestingBlocks","type":"uint256"}],"name":"addMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getClaimableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMemberInfo","outputs":[{"components":[{"internalType":"uint256","name":"vestingStartBlock","type":"uint256"},{"internalType":"uint256","name":"vestingBlocks","type":"uint256"},{"internalType":"uint256","name":"claimedBalance","type":"uint256"},{"internalType":"uint256","name":"awardBalance","type":"uint256"}],"internalType":"struct BrincGovToken.MemberInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTreasuryBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTreasuryOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"members","outputs":[{"internalType":"uint256","name":"vestingStartBlock","type":"uint256"},{"internalType":"uint256","name":"vestingBlocks","type":"uint256"},{"internalType":"uint256","name":"claimedBalance","type":"uint256"},{"internalType":"uint256","name":"awardBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"bool","name":"_isMinter","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"transferTreasuryOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"treasuryTransferToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingTimeRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620053ca380380620053ca833981810160405281019062000037919062000576565b85858160039080519060200190620000519291906200032c565b5080600490805190602001906200006a9291906200032c565b506012600560006101000a81548160ff021916908360ff16021790555050506000600a60006101000a81548160ff0219169083151502179055506000620000b66200032460201b60201c565b905080600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35082518451146200016457600080fd5b81518451146200017357600080fd5b60005b845181101562000277576000600e60008784815181106200019357fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000848381518110620001e657fe5b602002602001015111620001f957600080fd5b60008583815181106200020857fe5b6020026020010151116200021b57600080fd5b4381600001819055508382815181106200023157fe5b60200260200101518160010181905550600081600201819055508482815181106200025857fe5b6020026020010151816003018190555050808060010191505062000176565b5080600f8190555033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050620007de565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200036f57805160ff1916838001178555620003a0565b82800160010185558215620003a0579182015b828111156200039f57825182559160200191906001019062000382565b5b509050620003af9190620003b3565b5090565b5b80821115620003ce576000816000905550600101620003b4565b5090565b600081519050620003e381620007aa565b92915050565b600082601f830112620003fb57600080fd5b8151620004126200040c82620006b7565b62000689565b915081818352602084019350602081019050838560208402820111156200043857600080fd5b60005b838110156200046c5781620004518882620003d2565b8452602084019350602083019250506001810190506200043b565b5050505092915050565b600082601f8301126200048857600080fd5b81516200049f6200049982620006e0565b62000689565b91508181835260208401935060208101905083856020840282011115620004c557600080fd5b60005b83811015620004f95781620004de88826200055f565b845260208401935060208301925050600181019050620004c8565b5050505092915050565b600082601f8301126200051557600080fd5b81516200052c620005268262000709565b62000689565b915080825260208301602083018583830111156200054957600080fd5b6200055683828462000774565b50505092915050565b6000815190506200057081620007c4565b92915050565b60008060008060008060c087890312156200059057600080fd5b600087015167ffffffffffffffff811115620005ab57600080fd5b620005b989828a0162000503565b965050602087015167ffffffffffffffff811115620005d757600080fd5b620005e589828a0162000503565b955050604087015167ffffffffffffffff8111156200060357600080fd5b6200061189828a01620003e9565b945050606087015167ffffffffffffffff8111156200062f57600080fd5b6200063d89828a0162000476565b935050608087015167ffffffffffffffff8111156200065b57600080fd5b6200066989828a0162000476565b92505060a06200067c89828a016200055f565b9150509295509295509295565b6000604051905081810181811067ffffffffffffffff82111715620006ad57600080fd5b8060405250919050565b600067ffffffffffffffff821115620006cf57600080fd5b602082029050602081019050919050565b600067ffffffffffffffff821115620006f857600080fd5b602082029050602081019050919050565b600067ffffffffffffffff8211156200072157600080fd5b601f19601f8301169050602081019050919050565b600062000743826200074a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200079457808201518184015260208101905062000777565b83811115620007a4576000848401525b50505050565b620007b58162000736565b8114620007c157600080fd5b50565b620007cf816200076a565b8114620007db57600080fd5b50565b614bdc80620007ee6000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063a457c2d7116100b8578063dc257d011161007c578063dc257d01146106be578063dd62ed3e146106da578063e12f3a611461070a578063f0410b7c1461073a578063f2fde38b1461075857610248565b8063a457c2d7146105f6578063a65948a314610626578063a9059cbb14610642578063aa271e1a14610672578063cf456ae7146106a257610248565b806395d89b41116100ff57806395d89b411461054e5780639711715a1461056c578063981b24d01461058a5780639b5655dc146105ba578063a1a8787c146105d857610248565b8063715018a6146104e257806379cc6790146104ec5780638456cb59146105085780638da5cb5b146105125780639358928b1461053057610248565b80633f4ba83a116101c957806352a680b91161018d57806352a680b91461043c5780635c975abb1461045857806360104e1114610476578063629d3f8f1461049457806370a08231146104b257610248565b80633f4ba83a146103c05780633f8515d2146103ca57806340c10f19146103d457806342966c68146103f05780634ee2cd7e1461040c57610248565b806318160ddd1161021057806318160ddd1461030657806323b872dd146103245780632ab4d05214610354578063313ce56714610372578063395093511461039057610248565b806306fdde031461024d57806308ae4b0c1461026b578063095ea7b31461029e5780630b1ca49a146102ce5780630e67ac2d146102ea575b600080fd5b610255610774565b6040516102629190614505565b60405180910390f35b610285600480360381019061028091906136b2565b610816565b604051610295949392919061495d565b60405180910390f35b6102b860048036038101906102b391906137a2565b610846565b6040516102c591906144ea565b60405180910390f35b6102e860048036038101906102e391906136b2565b610864565b005b61030460048036038101906102ff91906137de565b6109eb565b005b61030e610bb9565b60405161031b9190614942565b60405180910390f35b61033e60048036038101906103399190613717565b610bc3565b60405161034b91906144ea565b60405180910390f35b61035c610c9c565b6040516103699190614942565b60405180910390f35b61037a610ca2565b60405161038791906149a2565b60405180910390f35b6103aa60048036038101906103a591906137a2565b610cb9565b6040516103b791906144ea565b60405180910390f35b6103c8610d6c565b005b6103d2610e06565b005b6103ee60048036038101906103e991906137a2565b611009565b005b61040a6004803603810190610405919061382d565b6110dc565b005b610426600480360381019061042191906137a2565b611263565b6040516104339190614942565b60405180910390f35b610456600480360381019061045191906136b2565b6112d3565b005b6104606114ca565b60405161046d91906144ea565b60405180910390f35b61047e6114e1565b60405161048b9190614927565b60405180910390f35b61049c611560565b6040516104a99190614439565b60405180910390f35b6104cc60048036038101906104c791906136b2565b611586565b6040516104d99190614942565b60405180910390f35b6104ea6115ce565b005b610506600480360381019061050191906137a2565b61170b565b005b61051061176d565b005b61051a611807565b6040516105279190614439565b60405180910390f35b610538611831565b6040516105459190614942565b60405180910390f35b6105566118fc565b6040516105639190614505565b60405180910390f35b61057461199e565b6040516105819190614942565b60405180910390f35b6105a4600480360381019061059f919061382d565b611a3d565b6040516105b19190614942565b60405180910390f35b6105c2611a6e565b6040516105cf9190614942565b60405180910390f35b6105e0611b20565b6040516105ed9190614439565b60405180910390f35b610610600480360381019061060b91906137a2565b611b4a565b60405161061d91906144ea565b60405180910390f35b610640600480360381019061063b919061382d565b611c17565b005b61065c600480360381019061065791906137a2565b611d2d565b60405161066991906144ea565b60405180910390f35b61068c600480360381019061068791906136b2565b611d4b565b60405161069991906144ea565b60405180910390f35b6106bc60048036038101906106b79190613766565b611d6b565b005b6106d860048036038101906106d391906137a2565b611eeb565b005b6106f460048036038101906106ef91906136db565b6120a0565b6040516107019190614942565b60405180910390f35b610724600480360381019061071f91906136b2565b612127565b6040516107319190614942565b60405180910390f35b6107426122df565b60405161074f9190614942565b60405180910390f35b610772600480360381019061076d91906136b2565b6124b1565b005b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b600e6020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b600061085a61085361265d565b8484612665565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90614687565b60405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154141561097f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097690614747565b60405180910390fd5b60008160030154116109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90614747565b60405180910390fd5b60006109d183612127565b905060018260010181905550808260030181905550505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290614687565b60405180910390fd5b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508060020154816003015414610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90614787565b60405180910390fd5b60008311610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290614767565b60405180910390fd5b60008211610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614647565b60405180910390fd5b4381600001819055508181600101819055506000816002018190555082816003018190555050505050565b6000600254905090565b6000610bd0848484612830565b610c9184610bdc61265d565b610c8c85604051806060016040528060288152602001614b3660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c4261265d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b612665565b600190509392505050565b600f5481565b6000600560009054906101000a900460ff16905090565b6000610d62610cc661265d565b84610d5d8560016000610cd761265d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b1a90919063ffffffff16565b612665565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614687565b60405180910390fd5b610e04612b6f565b565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290614727565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015411610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790614727565b60405180910390fd5b6000610f1b33612127565b905060008111610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906145c7565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610fba828260020154612b1a90919063ffffffff16565b8160020181905550610fcc3383612c11565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051610ffd92919061446f565b60405180910390a15050565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906148c7565b60405180910390fd5b61109f8282612c11565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688582826040516110d09291906144c1565b60405180910390a15050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390614687565b60405180910390fd5b6000611199600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611586565b116111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906148a7565b60405180910390fd5b611205600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612da5565b7fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516112589291906144c1565b60405180910390a150565b60008060006112b084600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612f53565b91509150816112c7576112c285611586565b6112c9565b805b9250505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90614687565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906145a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90614707565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900460ff16905090565b6114e9613636565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d661265d565b73ffffffffffffffffffffffffffffffffffffffff166115f4611807565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061174a82604051806060016040528060248152602001614b5e6024913961173b8661173661265d565b6120a0565b612ac59092919063ffffffff16565b905061175e8361175861265d565b83612665565b6117688383612da5565b505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490614687565b60405180910390fd5b611805613044565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006118f73073ffffffffffffffffffffffffffffffffffffffff166370a08231600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016118919190614439565b60206040518083038186803b1580156118a957600080fd5b505afa1580156118bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e19190613856565b6118e9610bb9565b6130e790919063ffffffff16565b905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119945780601f1061196957610100808354040283529160200191611994565b820191906000526020600020905b81548152906001019060200180831161197757829003601f168201915b5050505050905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790614687565b60405180910390fd5b611a38613137565b905090565b6000806000611a4d846007612f53565b9150915081611a6357611a5e610bb9565b611a65565b805b92505050919050565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401611acb9190614439565b60206040518083038186803b158015611ae357600080fd5b505afa158015611af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1b9190613856565b905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611c0d611b5761265d565b84611c0885604051806060016040528060258152602001614b826025913960016000611b8161265d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b612665565b6001905092915050565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906148c7565b60405180910390fd5b611ccf600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612c11565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611d229291906144c1565b60405180910390a150565b6000611d41611d3a61265d565b8484612830565b6001905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b611d7361265d565b73ffffffffffffffffffffffffffffffffffffffff16611d91611807565b73ffffffffffffffffffffffffffffffffffffffff1614611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614847565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd008282604051611edf929190614498565b60405180910390a15050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614687565b60405180910390fd5b6000611fa8600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611586565b11611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614587565b60405180910390fd5b612015600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168383612830565b8173ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120949190614942565b60405180910390a35050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612131613636565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905080606001518160400151106121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906145e7565b60405180910390fd5b61220a81602001518260000151612b1a90919063ffffffff16565b43106122335761222b816040015182606001516130e790919063ffffffff16565b9150506122da565b80600001514311156122d45760006122588260000151436130e790919063ffffffff16565b90506122cb82604001516122bd6402540be4006122af856122a188602001516122936402540be4008b6060015161318f90919063ffffffff16565b6131ff90919063ffffffff16565b61318f90919063ffffffff16565b6131ff90919063ffffffff16565b6130e790919063ffffffff16565b925050506122da565b60009150505b919050565b600080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614727565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154116123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190614727565b60405180910390fd5b6000612483600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154612b1a90919063ffffffff16565b9050438111156124a8576124a043826130e790919063ffffffff16565b9150506124ae565b60009150505b90565b6124b961265d565b73ffffffffffffffffffffffffffffffffffffffff166124d7611807565b73ffffffffffffffffffffffffffffffffffffffff161461252d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612524906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561259d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259490614607565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cc90614867565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c90614627565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128239190614942565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614827565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790614547565b60405180910390fd5b61291b838383613255565b61298681604051806060016040528060268152602001614b10602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a19816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b1a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612ab89190614942565b60405180910390a3505050565b6000838311158290612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b049190614505565b60405180910390fd5b5082840390509392505050565b600080828401905083811015612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90614667565b60405180910390fd5b8091505092915050565b612b776114ca565b612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90614567565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612bfa61265d565b604051612c079190614454565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c78906148e7565b60405180910390fd5b612c8d60008383613255565b612ca281600254612b1a90919063ffffffff16565b600281905550612cf9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b1a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612d999190614942565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90614807565b60405180910390fd5b612e2182600083613255565b612e8c81604051806060016040528060228152602001614aee602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ee3816002546130e790919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f479190614942565b60405180910390a35050565b60008060008411612f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9090614887565b60405180910390fd5b612fa360096132e7565b841115612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdc90614527565b60405180910390fd5b6000612ffd85856000016132f590919063ffffffff16565b9050836000018054905081141561301b57600080925092505061303d565b600184600101828154811061302c57fe5b906000526020600020015492509250505b9250929050565b61304c6114ca565b1561308c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613083906146e7565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586130d061265d565b6040516130dd9190614454565b60405180910390a1565b60008282111561312c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613123906146a7565b60405180910390fd5b818303905092915050565b600061314360096133a6565b600061314f60096132e7565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516131809190614942565b60405180910390a18091505090565b6000808314156131a257600090506131f9565b60008284029050828482816131b357fe5b04146131f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131eb906147a7565b60405180910390fd5b809150505b92915050565b6000808211613243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323a906146c7565b60405180910390fd5b81838161324c57fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132d757600f54613295610bb9565b11156132d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd906147e7565b60405180910390fd5b5b6132e28383836133bc565b505050565b600081600001549050919050565b6000808380549050141561330c57600090506133a0565b600080848054905090505b8082101561336057600061332b8383613414565b90508486828154811061333a57fe5b906000526020600020015411156133535780915061335a565b6001810192505b50613317565b60008211801561338857508385600184038154811061337b57fe5b9060005260206000200154145b1561339a5760018203925050506133a0565b81925050505b92915050565b6001816000016000828254019250508190555050565b6133c7838383613456565b6133cf6114ca565b1561340f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340690614907565b60405180910390fd5b505050565b6000600280838161342157fe5b066002858161342c57fe5b06018161343557fe5b046002838161344057fe5b046002858161344b57fe5b040101905092915050565b613461838383613510565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ac5761349f82613515565b6134a7613568565b61350b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f7576134ea83613515565b6134f2613568565b61350a565b61350083613515565b61350982613515565b5b5b505050565b505050565b613565600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061356083611586565b61357c565b50565b61357a6007613575610bb9565b61357c565b565b600061358860096132e7565b905080613597846000016135f9565b10156135f45782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156136105760009050613631565b8160018380549050038154811061362357fe5b906000526020600020015490505b919050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b60008135905061366d81614aa8565b92915050565b60008135905061368281614abf565b92915050565b60008135905061369781614ad6565b92915050565b6000815190506136ac81614ad6565b92915050565b6000602082840312156136c457600080fd5b60006136d28482850161365e565b91505092915050565b600080604083850312156136ee57600080fd5b60006136fc8582860161365e565b925050602061370d8582860161365e565b9150509250929050565b60008060006060848603121561372c57600080fd5b600061373a8682870161365e565b935050602061374b8682870161365e565b925050604061375c86828701613688565b9150509250925092565b6000806040838503121561377957600080fd5b60006137878582860161365e565b925050602061379885828601613673565b9150509250929050565b600080604083850312156137b557600080fd5b60006137c38582860161365e565b92505060206137d485828601613688565b9150509250929050565b6000806000606084860312156137f357600080fd5b60006138018682870161365e565b935050602061381286828701613688565b925050604061382386828701613688565b9150509250925092565b60006020828403121561383f57600080fd5b600061384d84828501613688565b91505092915050565b60006020828403121561386857600080fd5b60006138768482850161369d565b91505092915050565b61388881614a2e565b82525050565b613897816149d9565b82525050565b6138a6816149eb565b82525050565b60006138b7826149bd565b6138c181856149c8565b93506138d1818560208601614a64565b6138da81614a97565b840191505092915050565b60006138f2601d836149c8565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b60006139326023836149c8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139986014836149c8565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006139d86033836149c8565b91507f74726561737572795472616e73666572546f6b656e3a204e6f7420656e6f756760008301527f682066756e647320696e207472656173757279000000000000000000000000006020830152604082019050919050565b6000613a3e6038836149c8565b91507f547261736e66657254726561737572794f776e6572736869703a207472616e7360008301527f66657272696e67206f776e65727368697020746f2030783000000000000000006020830152604082019050919050565b6000613aa4601d836149c8565b91507f6d656d626572436c61696d3a206e6f7468696e6720746f20636c61696d0000006000830152602082019050919050565b6000613ae46028836149c8565b91507f676574436c61696d61626c65416d6f756e743a206e6f20636c61696d61626c6560008301527f2062616c616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4a6026836149c8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bb06022836149c8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c16602a836149c8565b91507f6164644d656d6265723a20696e76616c6964205f76657374696e67426c6f636b60008301527f732070726f7669646564000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c7c601b836149c8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613cbc603e836149c8565b91507f6f6e6c7954726561737572794f776e65723a206f6e6c7920747265617375727960008301527f206f776e65722063616e2063616c6c2074686973206f7065726174696f6e00006020830152604082019050919050565b6000613d22601e836149c8565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613d62601a836149c8565b91507f536166654d6174683a206469766973696f6e206279207a65726f0000000000006000830152602082019050919050565b6000613da26010836149c8565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613de26039836149c8565b91507f547261736e66657254726561737572794f776e6572736869703a207472616e7360008301527f66657272696e67206f776e65727368697020746f2073656c66000000000000006020830152604082019050919050565b6000613e486023836149c8565b91507f6f6e6c794d656d65626572733a206d656d62657220646f6573206e6f7420657860008301527f69737400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eae6023836149c8565b91507f72656d6f76654d656d6265723a206d656d62657220646f6573206e6f7420657860008301527f69737400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f146028836149c8565b91507f6164644d656d6265723a20696e76616c6964205f6177617264416d6f756e742060008301527f70726f76696465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f7a6020836149c8565b91507f6164644d656d6265723a206d656d62657220616c7265616479206578697374736000830152602082019050919050565b6000613fba6021836149c8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140206020836149c8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140606016836149c8565b91507f746f6f206d75636820746f6b656e73206d696e746564000000000000000000006000830152602082019050919050565b60006140a06021836149c8565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141066025836149c8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416c6016836149c8565b91507f696e76616c6964206d696e7465722061646472657373000000000000000000006000830152602082019050919050565b60006141ac6024836149c8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142126016836149c8565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b60006142526022836149c8565b91507f6275726e3a204e6f7420656e6f7567682066756e647320696e2074726561737560008301527f72790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b8602f836149c8565b91507f6f6e6c794d696e7465723a206f6e6c79206d696e7465722063616e2063616c6c60008301527f2074686973206f7065726174696f6e00000000000000000000000000000000006020830152604082019050919050565b600061431e601f836149c8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600061435e602a836149c8565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6080820160008201516143cd600085018261440c565b5060208201516143e0602085018261440c565b5060408201516143f3604085018261440c565b506060820151614406606085018261440c565b50505050565b61441581614a17565b82525050565b61442481614a17565b82525050565b61443381614a21565b82525050565b600060208201905061444e600083018461388e565b92915050565b6000602082019050614469600083018461387f565b92915050565b6000604082019050614484600083018561387f565b614491602083018461441b565b9392505050565b60006040820190506144ad600083018561388e565b6144ba602083018461389d565b9392505050565b60006040820190506144d6600083018561388e565b6144e3602083018461441b565b9392505050565b60006020820190506144ff600083018461389d565b92915050565b6000602082019050818103600083015261451f81846138ac565b905092915050565b60006020820190508181036000830152614540816138e5565b9050919050565b6000602082019050818103600083015261456081613925565b9050919050565b600060208201905081810360008301526145808161398b565b9050919050565b600060208201905081810360008301526145a0816139cb565b9050919050565b600060208201905081810360008301526145c081613a31565b9050919050565b600060208201905081810360008301526145e081613a97565b9050919050565b6000602082019050818103600083015261460081613ad7565b9050919050565b6000602082019050818103600083015261462081613b3d565b9050919050565b6000602082019050818103600083015261464081613ba3565b9050919050565b6000602082019050818103600083015261466081613c09565b9050919050565b6000602082019050818103600083015261468081613c6f565b9050919050565b600060208201905081810360008301526146a081613caf565b9050919050565b600060208201905081810360008301526146c081613d15565b9050919050565b600060208201905081810360008301526146e081613d55565b9050919050565b6000602082019050818103600083015261470081613d95565b9050919050565b6000602082019050818103600083015261472081613dd5565b9050919050565b6000602082019050818103600083015261474081613e3b565b9050919050565b6000602082019050818103600083015261476081613ea1565b9050919050565b6000602082019050818103600083015261478081613f07565b9050919050565b600060208201905081810360008301526147a081613f6d565b9050919050565b600060208201905081810360008301526147c081613fad565b9050919050565b600060208201905081810360008301526147e081614013565b9050919050565b6000602082019050818103600083015261480081614053565b9050919050565b6000602082019050818103600083015261482081614093565b9050919050565b60006020820190508181036000830152614840816140f9565b9050919050565b600060208201905081810360008301526148608161415f565b9050919050565b600060208201905081810360008301526148808161419f565b9050919050565b600060208201905081810360008301526148a081614205565b9050919050565b600060208201905081810360008301526148c081614245565b9050919050565b600060208201905081810360008301526148e0816142ab565b9050919050565b6000602082019050818103600083015261490081614311565b9050919050565b6000602082019050818103600083015261492081614351565b9050919050565b600060808201905061493c60008301846143b7565b92915050565b6000602082019050614957600083018461441b565b92915050565b6000608082019050614972600083018761441b565b61497f602083018661441b565b61498c604083018561441b565b614999606083018461441b565b95945050505050565b60006020820190506149b7600083018461442a565b92915050565b600081519050919050565b600082825260208201905092915050565b60006149e4826149f7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614a3982614a40565b9050919050565b6000614a4b82614a52565b9050919050565b6000614a5d826149f7565b9050919050565b60005b83811015614a82578082015181840152602081019050614a67565b83811115614a91576000848401525b50505050565b6000601f19601f8301169050919050565b614ab1816149d9565b8114614abc57600080fd5b50565b614ac8816149eb565b8114614ad357600080fd5b50565b614adf81614a17565b8114614aea57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122062c941fd23bef522683d275199c3d1cfdc8075e0a2dc0325badc7bd20e5bfe1464736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000d4272696e63476f76546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046742524300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063a457c2d7116100b8578063dc257d011161007c578063dc257d01146106be578063dd62ed3e146106da578063e12f3a611461070a578063f0410b7c1461073a578063f2fde38b1461075857610248565b8063a457c2d7146105f6578063a65948a314610626578063a9059cbb14610642578063aa271e1a14610672578063cf456ae7146106a257610248565b806395d89b41116100ff57806395d89b411461054e5780639711715a1461056c578063981b24d01461058a5780639b5655dc146105ba578063a1a8787c146105d857610248565b8063715018a6146104e257806379cc6790146104ec5780638456cb59146105085780638da5cb5b146105125780639358928b1461053057610248565b80633f4ba83a116101c957806352a680b91161018d57806352a680b91461043c5780635c975abb1461045857806360104e1114610476578063629d3f8f1461049457806370a08231146104b257610248565b80633f4ba83a146103c05780633f8515d2146103ca57806340c10f19146103d457806342966c68146103f05780634ee2cd7e1461040c57610248565b806318160ddd1161021057806318160ddd1461030657806323b872dd146103245780632ab4d05214610354578063313ce56714610372578063395093511461039057610248565b806306fdde031461024d57806308ae4b0c1461026b578063095ea7b31461029e5780630b1ca49a146102ce5780630e67ac2d146102ea575b600080fd5b610255610774565b6040516102629190614505565b60405180910390f35b610285600480360381019061028091906136b2565b610816565b604051610295949392919061495d565b60405180910390f35b6102b860048036038101906102b391906137a2565b610846565b6040516102c591906144ea565b60405180910390f35b6102e860048036038101906102e391906136b2565b610864565b005b61030460048036038101906102ff91906137de565b6109eb565b005b61030e610bb9565b60405161031b9190614942565b60405180910390f35b61033e60048036038101906103399190613717565b610bc3565b60405161034b91906144ea565b60405180910390f35b61035c610c9c565b6040516103699190614942565b60405180910390f35b61037a610ca2565b60405161038791906149a2565b60405180910390f35b6103aa60048036038101906103a591906137a2565b610cb9565b6040516103b791906144ea565b60405180910390f35b6103c8610d6c565b005b6103d2610e06565b005b6103ee60048036038101906103e991906137a2565b611009565b005b61040a6004803603810190610405919061382d565b6110dc565b005b610426600480360381019061042191906137a2565b611263565b6040516104339190614942565b60405180910390f35b610456600480360381019061045191906136b2565b6112d3565b005b6104606114ca565b60405161046d91906144ea565b60405180910390f35b61047e6114e1565b60405161048b9190614927565b60405180910390f35b61049c611560565b6040516104a99190614439565b60405180910390f35b6104cc60048036038101906104c791906136b2565b611586565b6040516104d99190614942565b60405180910390f35b6104ea6115ce565b005b610506600480360381019061050191906137a2565b61170b565b005b61051061176d565b005b61051a611807565b6040516105279190614439565b60405180910390f35b610538611831565b6040516105459190614942565b60405180910390f35b6105566118fc565b6040516105639190614505565b60405180910390f35b61057461199e565b6040516105819190614942565b60405180910390f35b6105a4600480360381019061059f919061382d565b611a3d565b6040516105b19190614942565b60405180910390f35b6105c2611a6e565b6040516105cf9190614942565b60405180910390f35b6105e0611b20565b6040516105ed9190614439565b60405180910390f35b610610600480360381019061060b91906137a2565b611b4a565b60405161061d91906144ea565b60405180910390f35b610640600480360381019061063b919061382d565b611c17565b005b61065c600480360381019061065791906137a2565b611d2d565b60405161066991906144ea565b60405180910390f35b61068c600480360381019061068791906136b2565b611d4b565b60405161069991906144ea565b60405180910390f35b6106bc60048036038101906106b79190613766565b611d6b565b005b6106d860048036038101906106d391906137a2565b611eeb565b005b6106f460048036038101906106ef91906136db565b6120a0565b6040516107019190614942565b60405180910390f35b610724600480360381019061071f91906136b2565b612127565b6040516107319190614942565b60405180910390f35b6107426122df565b60405161074f9190614942565b60405180910390f35b610772600480360381019061076d91906136b2565b6124b1565b005b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b600e6020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b600061085a61085361265d565b8484612665565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90614687565b60405180910390fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154141561097f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097690614747565b60405180910390fd5b60008160030154116109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90614747565b60405180910390fd5b60006109d183612127565b905060018260010181905550808260030181905550505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290614687565b60405180910390fd5b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508060020154816003015414610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90614787565b60405180910390fd5b60008311610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290614767565b60405180910390fd5b60008211610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614647565b60405180910390fd5b4381600001819055508181600101819055506000816002018190555082816003018190555050505050565b6000600254905090565b6000610bd0848484612830565b610c9184610bdc61265d565b610c8c85604051806060016040528060288152602001614b3660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c4261265d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b612665565b600190509392505050565b600f5481565b6000600560009054906101000a900460ff16905090565b6000610d62610cc661265d565b84610d5d8560016000610cd761265d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b1a90919063ffffffff16565b612665565b6001905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614687565b60405180910390fd5b610e04612b6f565b565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290614727565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015411610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790614727565b60405180910390fd5b6000610f1b33612127565b905060008111610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906145c7565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610fba828260020154612b1a90919063ffffffff16565b8160020181905550610fcc3383612c11565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051610ffd92919061446f565b60405180910390a15050565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c906148c7565b60405180910390fd5b61109f8282612c11565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688582826040516110d09291906144c1565b60405180910390a15050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390614687565b60405180910390fd5b6000611199600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611586565b116111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906148a7565b60405180910390fd5b611205600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612da5565b7fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516112589291906144c1565b60405180910390a150565b60008060006112b084600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612f53565b91509150816112c7576112c285611586565b6112c9565b805b9250505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90614687565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906145a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90614707565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900460ff16905090565b6114e9613636565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115d661265d565b73ffffffffffffffffffffffffffffffffffffffff166115f4611807565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061174a82604051806060016040528060248152602001614b5e6024913961173b8661173661265d565b6120a0565b612ac59092919063ffffffff16565b905061175e8361175861265d565b83612665565b6117688383612da5565b505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490614687565b60405180910390fd5b611805613044565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006118f73073ffffffffffffffffffffffffffffffffffffffff166370a08231600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016118919190614439565b60206040518083038186803b1580156118a957600080fd5b505afa1580156118bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e19190613856565b6118e9610bb9565b6130e790919063ffffffff16565b905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119945780601f1061196957610100808354040283529160200191611994565b820191906000526020600020905b81548152906001019060200180831161197757829003601f168201915b5050505050905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790614687565b60405180910390fd5b611a38613137565b905090565b6000806000611a4d846007612f53565b9150915081611a6357611a5e610bb9565b611a65565b805b92505050919050565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401611acb9190614439565b60206040518083038186803b158015611ae357600080fd5b505afa158015611af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1b9190613856565b905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611c0d611b5761265d565b84611c0885604051806060016040528060258152602001614b826025913960016000611b8161265d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b612665565b6001905092915050565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906148c7565b60405180910390fd5b611ccf600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612c11565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611d229291906144c1565b60405180910390a150565b6000611d41611d3a61265d565b8484612830565b6001905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b611d7361265d565b73ffffffffffffffffffffffffffffffffffffffff16611d91611807565b73ffffffffffffffffffffffffffffffffffffffff1614611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614847565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1f96bc657d385fd83da973a43f2ad969e6d96b6779b779571a7306db7ca1cd008282604051611edf929190614498565b60405180910390a15050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614687565b60405180910390fd5b6000611fa8600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611586565b11611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614587565b60405180910390fd5b612015600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168383612830565b8173ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120949190614942565b60405180910390a35050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000612131613636565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905080606001518160400151106121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906145e7565b60405180910390fd5b61220a81602001518260000151612b1a90919063ffffffff16565b43106122335761222b816040015182606001516130e790919063ffffffff16565b9150506122da565b80600001514311156122d45760006122588260000151436130e790919063ffffffff16565b90506122cb82604001516122bd6402540be4006122af856122a188602001516122936402540be4008b6060015161318f90919063ffffffff16565b6131ff90919063ffffffff16565b61318f90919063ffffffff16565b6131ff90919063ffffffff16565b6130e790919063ffffffff16565b925050506122da565b60009150505b919050565b600080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614727565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154116123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190614727565b60405180910390fd5b6000612483600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154612b1a90919063ffffffff16565b9050438111156124a8576124a043826130e790919063ffffffff16565b9150506124ae565b60009150505b90565b6124b961265d565b73ffffffffffffffffffffffffffffffffffffffff166124d7611807565b73ffffffffffffffffffffffffffffffffffffffff161461252d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612524906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561259d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259490614607565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cc90614867565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c90614627565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128239190614942565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614827565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290790614547565b60405180910390fd5b61291b838383613255565b61298681604051806060016040528060268152602001614b10602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a19816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b1a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612ab89190614942565b60405180910390a3505050565b6000838311158290612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b049190614505565b60405180910390fd5b5082840390509392505050565b600080828401905083811015612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90614667565b60405180910390fd5b8091505092915050565b612b776114ca565b612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90614567565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612bfa61265d565b604051612c079190614454565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c78906148e7565b60405180910390fd5b612c8d60008383613255565b612ca281600254612b1a90919063ffffffff16565b600281905550612cf9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b1a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612d999190614942565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90614807565b60405180910390fd5b612e2182600083613255565b612e8c81604051806060016040528060228152602001614aee602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ac59092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ee3816002546130e790919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f479190614942565b60405180910390a35050565b60008060008411612f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9090614887565b60405180910390fd5b612fa360096132e7565b841115612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdc90614527565b60405180910390fd5b6000612ffd85856000016132f590919063ffffffff16565b9050836000018054905081141561301b57600080925092505061303d565b600184600101828154811061302c57fe5b906000526020600020015492509250505b9250929050565b61304c6114ca565b1561308c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613083906146e7565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586130d061265d565b6040516130dd9190614454565b60405180910390a1565b60008282111561312c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613123906146a7565b60405180910390fd5b818303905092915050565b600061314360096133a6565b600061314f60096132e7565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516131809190614942565b60405180910390a18091505090565b6000808314156131a257600090506131f9565b60008284029050828482816131b357fe5b04146131f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131eb906147a7565b60405180910390fd5b809150505b92915050565b6000808211613243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323a906146c7565b60405180910390fd5b81838161324c57fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132d757600f54613295610bb9565b11156132d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd906147e7565b60405180910390fd5b5b6132e28383836133bc565b505050565b600081600001549050919050565b6000808380549050141561330c57600090506133a0565b600080848054905090505b8082101561336057600061332b8383613414565b90508486828154811061333a57fe5b906000526020600020015411156133535780915061335a565b6001810192505b50613317565b60008211801561338857508385600184038154811061337b57fe5b9060005260206000200154145b1561339a5760018203925050506133a0565b81925050505b92915050565b6001816000016000828254019250508190555050565b6133c7838383613456565b6133cf6114ca565b1561340f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340690614907565b60405180910390fd5b505050565b6000600280838161342157fe5b066002858161342c57fe5b06018161343557fe5b046002838161344057fe5b046002858161344b57fe5b040101905092915050565b613461838383613510565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ac5761349f82613515565b6134a7613568565b61350b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f7576134ea83613515565b6134f2613568565b61350a565b61350083613515565b61350982613515565b5b5b505050565b505050565b613565600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061356083611586565b61357c565b50565b61357a6007613575610bb9565b61357c565b565b600061358860096132e7565b905080613597846000016135f9565b10156135f45782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156136105760009050613631565b8160018380549050038154811061362357fe5b906000526020600020015490505b919050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b60008135905061366d81614aa8565b92915050565b60008135905061368281614abf565b92915050565b60008135905061369781614ad6565b92915050565b6000815190506136ac81614ad6565b92915050565b6000602082840312156136c457600080fd5b60006136d28482850161365e565b91505092915050565b600080604083850312156136ee57600080fd5b60006136fc8582860161365e565b925050602061370d8582860161365e565b9150509250929050565b60008060006060848603121561372c57600080fd5b600061373a8682870161365e565b935050602061374b8682870161365e565b925050604061375c86828701613688565b9150509250925092565b6000806040838503121561377957600080fd5b60006137878582860161365e565b925050602061379885828601613673565b9150509250929050565b600080604083850312156137b557600080fd5b60006137c38582860161365e565b92505060206137d485828601613688565b9150509250929050565b6000806000606084860312156137f357600080fd5b60006138018682870161365e565b935050602061381286828701613688565b925050604061382386828701613688565b9150509250925092565b60006020828403121561383f57600080fd5b600061384d84828501613688565b91505092915050565b60006020828403121561386857600080fd5b60006138768482850161369d565b91505092915050565b61388881614a2e565b82525050565b613897816149d9565b82525050565b6138a6816149eb565b82525050565b60006138b7826149bd565b6138c181856149c8565b93506138d1818560208601614a64565b6138da81614a97565b840191505092915050565b60006138f2601d836149c8565b91507f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006000830152602082019050919050565b60006139326023836149c8565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139986014836149c8565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006139d86033836149c8565b91507f74726561737572795472616e73666572546f6b656e3a204e6f7420656e6f756760008301527f682066756e647320696e207472656173757279000000000000000000000000006020830152604082019050919050565b6000613a3e6038836149c8565b91507f547261736e66657254726561737572794f776e6572736869703a207472616e7360008301527f66657272696e67206f776e65727368697020746f2030783000000000000000006020830152604082019050919050565b6000613aa4601d836149c8565b91507f6d656d626572436c61696d3a206e6f7468696e6720746f20636c61696d0000006000830152602082019050919050565b6000613ae46028836149c8565b91507f676574436c61696d61626c65416d6f756e743a206e6f20636c61696d61626c6560008301527f2062616c616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b4a6026836149c8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bb06022836149c8565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c16602a836149c8565b91507f6164644d656d6265723a20696e76616c6964205f76657374696e67426c6f636b60008301527f732070726f7669646564000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c7c601b836149c8565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613cbc603e836149c8565b91507f6f6e6c7954726561737572794f776e65723a206f6e6c7920747265617375727960008301527f206f776e65722063616e2063616c6c2074686973206f7065726174696f6e00006020830152604082019050919050565b6000613d22601e836149c8565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613d62601a836149c8565b91507f536166654d6174683a206469766973696f6e206279207a65726f0000000000006000830152602082019050919050565b6000613da26010836149c8565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000613de26039836149c8565b91507f547261736e66657254726561737572794f776e6572736869703a207472616e7360008301527f66657272696e67206f776e65727368697020746f2073656c66000000000000006020830152604082019050919050565b6000613e486023836149c8565b91507f6f6e6c794d656d65626572733a206d656d62657220646f6573206e6f7420657860008301527f69737400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eae6023836149c8565b91507f72656d6f76654d656d6265723a206d656d62657220646f6573206e6f7420657860008301527f69737400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f146028836149c8565b91507f6164644d656d6265723a20696e76616c6964205f6177617264416d6f756e742060008301527f70726f76696465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f7a6020836149c8565b91507f6164644d656d6265723a206d656d62657220616c7265616479206578697374736000830152602082019050919050565b6000613fba6021836149c8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140206020836149c8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140606016836149c8565b91507f746f6f206d75636820746f6b656e73206d696e746564000000000000000000006000830152602082019050919050565b60006140a06021836149c8565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141066025836149c8565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061416c6016836149c8565b91507f696e76616c6964206d696e7465722061646472657373000000000000000000006000830152602082019050919050565b60006141ac6024836149c8565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142126016836149c8565b91507f4552433230536e617073686f743a2069642069732030000000000000000000006000830152602082019050919050565b60006142526022836149c8565b91507f6275726e3a204e6f7420656e6f7567682066756e647320696e2074726561737560008301527f72790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142b8602f836149c8565b91507f6f6e6c794d696e7465723a206f6e6c79206d696e7465722063616e2063616c6c60008301527f2074686973206f7065726174696f6e00000000000000000000000000000000006020830152604082019050919050565b600061431e601f836149c8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600061435e602a836149c8565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6080820160008201516143cd600085018261440c565b5060208201516143e0602085018261440c565b5060408201516143f3604085018261440c565b506060820151614406606085018261440c565b50505050565b61441581614a17565b82525050565b61442481614a17565b82525050565b61443381614a21565b82525050565b600060208201905061444e600083018461388e565b92915050565b6000602082019050614469600083018461387f565b92915050565b6000604082019050614484600083018561387f565b614491602083018461441b565b9392505050565b60006040820190506144ad600083018561388e565b6144ba602083018461389d565b9392505050565b60006040820190506144d6600083018561388e565b6144e3602083018461441b565b9392505050565b60006020820190506144ff600083018461389d565b92915050565b6000602082019050818103600083015261451f81846138ac565b905092915050565b60006020820190508181036000830152614540816138e5565b9050919050565b6000602082019050818103600083015261456081613925565b9050919050565b600060208201905081810360008301526145808161398b565b9050919050565b600060208201905081810360008301526145a0816139cb565b9050919050565b600060208201905081810360008301526145c081613a31565b9050919050565b600060208201905081810360008301526145e081613a97565b9050919050565b6000602082019050818103600083015261460081613ad7565b9050919050565b6000602082019050818103600083015261462081613b3d565b9050919050565b6000602082019050818103600083015261464081613ba3565b9050919050565b6000602082019050818103600083015261466081613c09565b9050919050565b6000602082019050818103600083015261468081613c6f565b9050919050565b600060208201905081810360008301526146a081613caf565b9050919050565b600060208201905081810360008301526146c081613d15565b9050919050565b600060208201905081810360008301526146e081613d55565b9050919050565b6000602082019050818103600083015261470081613d95565b9050919050565b6000602082019050818103600083015261472081613dd5565b9050919050565b6000602082019050818103600083015261474081613e3b565b9050919050565b6000602082019050818103600083015261476081613ea1565b9050919050565b6000602082019050818103600083015261478081613f07565b9050919050565b600060208201905081810360008301526147a081613f6d565b9050919050565b600060208201905081810360008301526147c081613fad565b9050919050565b600060208201905081810360008301526147e081614013565b9050919050565b6000602082019050818103600083015261480081614053565b9050919050565b6000602082019050818103600083015261482081614093565b9050919050565b60006020820190508181036000830152614840816140f9565b9050919050565b600060208201905081810360008301526148608161415f565b9050919050565b600060208201905081810360008301526148808161419f565b9050919050565b600060208201905081810360008301526148a081614205565b9050919050565b600060208201905081810360008301526148c081614245565b9050919050565b600060208201905081810360008301526148e0816142ab565b9050919050565b6000602082019050818103600083015261490081614311565b9050919050565b6000602082019050818103600083015261492081614351565b9050919050565b600060808201905061493c60008301846143b7565b92915050565b6000602082019050614957600083018461441b565b92915050565b6000608082019050614972600083018761441b565b61497f602083018661441b565b61498c604083018561441b565b614999606083018461441b565b95945050505050565b60006020820190506149b7600083018461442a565b92915050565b600081519050919050565b600082825260208201905092915050565b60006149e4826149f7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614a3982614a40565b9050919050565b6000614a4b82614a52565b9050919050565b6000614a5d826149f7565b9050919050565b60005b83811015614a82578082015181840152602081019050614a67565b83811115614a91576000848401525b50505050565b6000601f19601f8301169050919050565b614ab1816149d9565b8114614abc57600080fd5b50565b614ac8816149eb565b8114614ad357600080fd5b50565b614adf81614a17565b8114614aea57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122062c941fd23bef522683d275199c3d1cfdc8075e0a2dc0325badc7bd20e5bfe1464736f6c634300060c0033

[ 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.