ETH Price: $3,355.49 (+0.22%)
Gas: 7 Gwei

Token

Delta Exchange Token (DETO)
 

Overview

Max Total Supply

500,000,000 DETO

Holders

271 ( 0.369%)

Market

Price

$0.04 @ 0.000011 ETH

Onchain Market Cap

$17,862,320.00

Circulating Supply Market Cap

$3,373,256.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,449.139117808774227327 DETO

Value
$158.94 ( ~0.0473671964324174 Eth) [0.0009%]
0x63ba2a2cd8fa3764a587b8910fe8851de2da81a1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Delta Exchange Token - DETO is an ERC-20 utility and rewards token that powers Delta Exchange and is integrated across the value chain of the exchange.

# Exchange Pair Price  24H Volume % Volume
1
Delta Exchange
DETO-USDT$0.0357
0.0000110 Eth
$100.08
2,801.120 DETO
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-31
*/

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.5.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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.0;




/**
 * @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 {ERC20Mintable}.
 *
 * 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;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _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 is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.5.0;



/**
 * @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).
 */
contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

// File: @openzeppelin/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Mintable.sol

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: @openzeppelin/contracts/access/roles/PauserRole.sol

pragma solidity ^0.5.0;



contract PauserRole is Context {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(_msgSender());
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

// File: @openzeppelin/contracts/lifecycle/Pausable.sol

pragma solidity ^0.5.0;



/**
 * @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.
 */
contract Pausable is Context, PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol

pragma solidity ^0.5.0;



/**
 * @title Pausable token
 * @dev ERC20 with pausable transfers and allowances.
 *
 * Useful if you want to stop trades until the end of a crowdsale, or have
 * an emergency switch for freezing all token transfers in the event of a large
 * bug.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Capped.sol

pragma solidity ^0.5.0;


/**
 * @dev Extension of {ERC20Mintable} that adds a cap to the supply of tokens.
 */
contract ERC20Capped is ERC20Mintable {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap) public {
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20Mintable-mint}.
     *
     * Requirements:
     *
     * - `value` must not cause the total supply to go over the cap.
     */
    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded");
        super._mint(account, value);
    }
}

// File: contracts/Token.sol

pragma solidity 0.5.0;








contract Token is ERC20, ERC20Detailed, ERC20Burnable, ERC20Mintable, ERC20Pausable, ERC20Capped {
  uint256 public _startTime;
  uint256 public _mintCliff;

  uint256 public _tokensMintedInQuarter;
  uint256 public _maxMintPerQuarter;
  uint256 public _lastMintTime;

  uint256 public _tokensMintedTotal;
  uint256 public _tokensMintCap;

  constructor(
    uint256 initialSupply,
    uint256 startTime,
    uint256 mintCliff,
    uint256 maxMintPerQuarter,
    uint256 tokensMintCap
  ) 
    public
    ERC20Detailed(
      "Delta Exchange Token",
      "DETO",
      18
    )
    ERC20Capped(750*(10**6)*(10**18))
  {
    _startTime = startTime;
    _mintCliff = mintCliff;
    _maxMintPerQuarter = maxMintPerQuarter;
    _tokensMintCap = tokensMintCap;
    _tokensMintedTotal = initialSupply;
    _mint(msg.sender, initialSupply);
  }

  function mint(address account, uint256 amount) public onlyMinter returns (bool) {
    require(block.timestamp >= _startTime.add(_mintCliff), "No minting allowed before mint cliff");
    require(_tokensMintedTotal.add(amount) <= _tokensMintCap, "Mint cap reached");

    uint256 quarterStartTime = getQuarterStartTime();
    uint256 maxMintable = getMaxMintable(quarterStartTime);
    require(amount <= maxMintable, "Limit exceeded for minting this quarter");

    if( _lastMintTime < quarterStartTime ){
        _tokensMintedInQuarter = amount;
    } else{
        _tokensMintedInQuarter = _tokensMintedInQuarter.add(amount);
    }
    _lastMintTime = block.timestamp;

    _tokensMintedTotal = _tokensMintedTotal.add(amount);
    _mint(account, amount);

    return true;
  }

  function getQuarterStartTime() public view returns (uint256){
    uint256 cliffEndTime = _startTime.add(_mintCliff);
    if( block.timestamp < cliffEndTime ){
      return cliffEndTime;
    } else{
      uint256 quarter = 0.25*(365 days);
      return cliffEndTime + ((block.timestamp - cliffEndTime)/(quarter))*(quarter);
    }
  }

  function getMaxMintable(uint256 quarterStartTime) public view returns (uint256){
    if( _lastMintTime < quarterStartTime ){
        return _maxMintPerQuarter;
    } else{
        return _maxMintPerQuarter - _tokensMintedInQuarter;
    }
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"quarterStartTime","type":"uint256"}],"name":"getMaxMintable","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_maxMintPerQuarter","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_mintCliff","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_tokensMintedInQuarter","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_tokensMintedTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_tokensMintCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_lastMintTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getQuarterStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"startTime","type":"uint256"},{"name":"mintCliff","type":"uint256"},{"name":"maxMintPerQuarter","type":"uint256"},{"name":"tokensMintCap","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b5060405160a0806200381f833981018060405260a08110156200003357600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506b026c62ad77dc602dae0000006040805190810160405280601481526020017f44656c74612045786368616e676520546f6b656e0000000000000000000000008152506040805190810160405280600481526020017f4445544f0000000000000000000000000000000000000000000000000000000081525060128260039080519060200190620000ff929190620008bb565b50816004908051906020019062000118929190620008bb565b5080600560006101000a81548160ff021916908360ff160217905550505050620001696200015462000280640100000000026401000000009004565b62000288640100000000026401000000009004565b6000600760006101000a81548160ff021916908315150217905550620001b6620001a162000280640100000000026401000000009004565b620002f2640100000000026401000000009004565b6000811115156200022f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b806009819055505083600a8190555082600b8190555081600d819055508060108190555084600f819055506200027533866200035c640100000000026401000000009004565b50505050506200096a565b600033905090565b620002ac816006620004356401000000000262002d9c179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b62000316816008620004356401000000000262002d9c179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6009546200039a826200037d62000524640100000000026401000000009004565b6200052e6401000000000262001b93179091906401000000009004565b1115151562000411576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b620004318282620005b96401000000000262002a93176401000000009004565b5050565b62000450828262000797640100000000026401000000009004565b151515620004c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000808284019050838110151515620005af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156200065f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000684816002546200052e6401000000000262001b93179091906401000000009004565b600281905550620006eb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200052e6401000000000262001b93179091906401000000009004565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151562000864576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620008fe57805160ff19168380011785556200092f565b828001600101855582156200092f579182015b828111156200092e57825182559160200191906001019062000911565b5b5090506200093e919062000942565b5090565b6200096791905b808211156200096357600081600090555060010162000949565b5090565b90565b612ea5806200097a6000396000f3fe6080604052600436106101a1576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146101a65780630725f4cb14610236578063095ea7b31461028557806318160ddd146102f857806323b872dd146103235780632fccd277146103b6578063313ce567146103e15780633173f35214610412578063355274ea1461043d57806339509351146104685780633f4ba83a146104db57806340c10f19146104f257806342966c681461056557806346fbf68e146105a05780635c975abb146106095780636ef8d66d1461063857806370a082311461064f5780637336c55b146106b457806379cc6790146106df57806382dc1ec41461073a5780638456cb591461078b5780638ba8ec98146107a257806395d89b41146107cd578063983b2d561461085d57806398650275146108ae578063a457c2d7146108c5578063a9059cbb14610938578063aa271e1a146109ab578063ab10d1cd14610a14578063c53a625714610a3f578063dd62ed3e14610a6a578063f41abe6914610aef578063fa1acb5c14610b1a575b600080fd5b3480156101b257600080fd5b506101bb610b45565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101fb5780820151818401526020810190506101e0565b50505050905090810190601f1680156102285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024257600080fd5b5061026f6004803603602081101561025957600080fd5b8101908080359060200190929190505050610be7565b6040518082815260200191505060405180910390f35b34801561029157600080fd5b506102de600480360360408110156102a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c0c565b604051808215151515815260200191505060405180910390f35b34801561030457600080fd5b5061030d610ca5565b6040518082815260200191505060405180910390f35b34801561032f57600080fd5b5061039c6004803603606081101561034657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610caf565b604051808215151515815260200191505060405180910390f35b3480156103c257600080fd5b506103cb610d4a565b6040518082815260200191505060405180910390f35b3480156103ed57600080fd5b506103f6610d50565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041e57600080fd5b50610427610d67565b6040518082815260200191505060405180910390f35b34801561044957600080fd5b50610452610d6d565b6040518082815260200191505060405180910390f35b34801561047457600080fd5b506104c16004803603604081101561048b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d77565b604051808215151515815260200191505060405180910390f35b3480156104e757600080fd5b506104f0610e10565b005b3480156104fe57600080fd5b5061054b6004803603604081101561051557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc5565b604051808215151515815260200191505060405180910390f35b34801561057157600080fd5b5061059e6004803603602081101561058857600080fd5b81019080803590602001909291905050506112d4565b005b3480156105ac57600080fd5b506105ef600480360360208110156105c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e8565b604051808215151515815260200191505060405180910390f35b34801561061557600080fd5b5061061e611305565b604051808215151515815260200191505060405180910390f35b34801561064457600080fd5b5061064d61131c565b005b34801561065b57600080fd5b5061069e6004803603602081101561067257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061132e565b6040518082815260200191505060405180910390f35b3480156106c057600080fd5b506106c9611376565b6040518082815260200191505060405180910390f35b3480156106eb57600080fd5b506107386004803603604081101561070257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061137c565b005b34801561074657600080fd5b506107896004803603602081101561075d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061138a565b005b34801561079757600080fd5b506107a0611440565b005b3480156107ae57600080fd5b506107b76115f6565b6040518082815260200191505060405180910390f35b3480156107d957600080fd5b506107e26115fc565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610822578082015181840152602081019050610807565b50505050905090810190601f16801561084f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561086957600080fd5b506108ac6004803603602081101561088057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061169e565b005b3480156108ba57600080fd5b506108c3611754565b005b3480156108d157600080fd5b5061091e600480360360408110156108e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611766565b604051808215151515815260200191505060405180910390f35b34801561094457600080fd5b506109916004803603604081101561095b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117ff565b604051808215151515815260200191505060405180910390f35b3480156109b757600080fd5b506109fa600480360360208110156109ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611898565b604051808215151515815260200191505060405180910390f35b348015610a2057600080fd5b50610a296118b5565b6040518082815260200191505060405180910390f35b348015610a4b57600080fd5b50610a546118bb565b6040518082815260200191505060405180910390f35b348015610a7657600080fd5b50610ad960048036036040811015610a8d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c1565b6040518082815260200191505060405180910390f35b348015610afb57600080fd5b50610b04611948565b6040518082815260200191505060405180910390f35b348015610b2657600080fd5b50610b2f611997565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b600081600e541015610bfd57600d549050610c07565b600c54600d540390505b919050565b6000600760009054906101000a900460ff16151515610c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c9d838361199d565b905092915050565b6000600254905090565b6000600760009054906101000a900460ff16151515610d36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610d418484846119bb565b90509392505050565b600d5481565b6000600560009054906101000a900460ff16905090565b600b5481565b6000600954905090565b6000600760009054906101000a900460ff16151515610dfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e088383611ad8565b905092915050565b610e20610e1b611b8b565b6112e8565b1515610eba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600760009054906101000a900460ff161515610f3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f82611b8b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610fd7610fd2611b8b565b611898565b1515611071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b611088600b54600a54611b9390919063ffffffff16565b4210151515611125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f4e6f206d696e74696e6720616c6c6f776564206265666f7265206d696e74206381526020017f6c6966660000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60105461113d83600f54611b9390919063ffffffff16565b111515156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d696e742063617020726561636865640000000000000000000000000000000081525060200191505060405180910390fd5b60006111bd611948565b905060006111ca82610be7565b905080841115151561126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001807f4c696d697420657863656564656420666f72206d696e74696e6720746869732081526020017f717561727465720000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b81600e5410156112805783600c8190555061129c565b61129584600c54611b9390919063ffffffff16565b600c819055505b42600e819055506112b884600f54611b9390919063ffffffff16565b600f819055506112c88585611c1d565b60019250505092915050565b6112e56112df611b8b565b82611cbe565b50565b60006112fe826006611eff90919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b61132c611327611b8b565b612022565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b611386828261207c565b5050565b61139a611395611b8b565b6112e8565b1515611434576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b61143d8161218f565b50565b61145061144b611b8b565b6112e8565b15156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600760009054906101000a900460ff1615151561156f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115b3611b8b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600f5481565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b5050505050905090565b6116ae6116a9611b8b565b611898565b1515611748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b611751816121e9565b50565b61176461175f611b8b565b612243565b565b6000600760009054906101000a900460ff161515156117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6117f7838361229d565b905092915050565b6000600760009054906101000a900460ff16151515611886576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61189083836123ae565b905092915050565b60006118ae826008611eff90919063ffffffff16565b9050919050565b60105481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080611962600b54600a54611b9390919063ffffffff16565b9050804210156119755780915050611994565b600062784ce09050808183420381151561198b57fe5b04028201925050505b90565b600a5481565b60006119b16119aa611b8b565b84846123cc565b6001905092915050565b60006119c884848461264d565b611acd846119d4611b8b565b611ac885606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611a7e611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6123cc565b600190509392505050565b6000611b81611ae5611b8b565b84611b7c8560016000611af6611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9390919063ffffffff16565b6123cc565b6001905092915050565b600033905090565b6000808284019050838110151515611c13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600954611c3a82611c2c610ca5565b611b9390919063ffffffff16565b11151515611cb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b611cba8282612a93565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611e3881606060405190810160405280602281526020017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81526020017f63650000000000000000000000000000000000000000000000000000000000008152506000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e8f81600254612c5090919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611fcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612036816006612c9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6120868282611cbe565b61218b82612092611b8b565b61218684606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e636500000000000000000000000000000000000000000000000000000000815250600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061213c611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6123cc565b5050565b6121a3816006612d9c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6121fd816008612d9c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b612257816008612c9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006123a46122aa611b8b565b8461239f85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f00000000000000000000000000000000000000000000000000000081525060016000612318611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6123cc565b6001905092915050565b60006123c26123bb611b8b565b848461264d565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515612497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515612718576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61289281606060405190810160405280602681526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206281526020017f616c616e636500000000000000000000000000000000000000000000000000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612925816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582901515612a80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a45578082015181840152602081019050612a2a565b50505050905090810190601f168015612a725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612b38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612b4d81600254611b9390919063ffffffff16565b600281905550612ba4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612c9283836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129d1565b905092915050565b612ca48282611eff565b1515612d3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612da68282611eff565b151515612e1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a723058204e58bb76d05e77bd24442e3851c3279175b352d17358812fc7feed8d86a02ea800290000000000000000000000000000000000000000019d971e4fe8401e7400000000000000000000000000000000000000000000000000000000000000606464400000000000000000000000000000000000000000000000000000000002d1cd4000000000000000000000000000000000000000000014adf4b7320334b90000000000000000000000000000000000000000000000026c62ad77dc602dae000000

Deployed Bytecode

0x6080604052600436106101a1576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146101a65780630725f4cb14610236578063095ea7b31461028557806318160ddd146102f857806323b872dd146103235780632fccd277146103b6578063313ce567146103e15780633173f35214610412578063355274ea1461043d57806339509351146104685780633f4ba83a146104db57806340c10f19146104f257806342966c681461056557806346fbf68e146105a05780635c975abb146106095780636ef8d66d1461063857806370a082311461064f5780637336c55b146106b457806379cc6790146106df57806382dc1ec41461073a5780638456cb591461078b5780638ba8ec98146107a257806395d89b41146107cd578063983b2d561461085d57806398650275146108ae578063a457c2d7146108c5578063a9059cbb14610938578063aa271e1a146109ab578063ab10d1cd14610a14578063c53a625714610a3f578063dd62ed3e14610a6a578063f41abe6914610aef578063fa1acb5c14610b1a575b600080fd5b3480156101b257600080fd5b506101bb610b45565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101fb5780820151818401526020810190506101e0565b50505050905090810190601f1680156102285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024257600080fd5b5061026f6004803603602081101561025957600080fd5b8101908080359060200190929190505050610be7565b6040518082815260200191505060405180910390f35b34801561029157600080fd5b506102de600480360360408110156102a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c0c565b604051808215151515815260200191505060405180910390f35b34801561030457600080fd5b5061030d610ca5565b6040518082815260200191505060405180910390f35b34801561032f57600080fd5b5061039c6004803603606081101561034657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610caf565b604051808215151515815260200191505060405180910390f35b3480156103c257600080fd5b506103cb610d4a565b6040518082815260200191505060405180910390f35b3480156103ed57600080fd5b506103f6610d50565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041e57600080fd5b50610427610d67565b6040518082815260200191505060405180910390f35b34801561044957600080fd5b50610452610d6d565b6040518082815260200191505060405180910390f35b34801561047457600080fd5b506104c16004803603604081101561048b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d77565b604051808215151515815260200191505060405180910390f35b3480156104e757600080fd5b506104f0610e10565b005b3480156104fe57600080fd5b5061054b6004803603604081101561051557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc5565b604051808215151515815260200191505060405180910390f35b34801561057157600080fd5b5061059e6004803603602081101561058857600080fd5b81019080803590602001909291905050506112d4565b005b3480156105ac57600080fd5b506105ef600480360360208110156105c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e8565b604051808215151515815260200191505060405180910390f35b34801561061557600080fd5b5061061e611305565b604051808215151515815260200191505060405180910390f35b34801561064457600080fd5b5061064d61131c565b005b34801561065b57600080fd5b5061069e6004803603602081101561067257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061132e565b6040518082815260200191505060405180910390f35b3480156106c057600080fd5b506106c9611376565b6040518082815260200191505060405180910390f35b3480156106eb57600080fd5b506107386004803603604081101561070257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061137c565b005b34801561074657600080fd5b506107896004803603602081101561075d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061138a565b005b34801561079757600080fd5b506107a0611440565b005b3480156107ae57600080fd5b506107b76115f6565b6040518082815260200191505060405180910390f35b3480156107d957600080fd5b506107e26115fc565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610822578082015181840152602081019050610807565b50505050905090810190601f16801561084f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561086957600080fd5b506108ac6004803603602081101561088057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061169e565b005b3480156108ba57600080fd5b506108c3611754565b005b3480156108d157600080fd5b5061091e600480360360408110156108e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611766565b604051808215151515815260200191505060405180910390f35b34801561094457600080fd5b506109916004803603604081101561095b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117ff565b604051808215151515815260200191505060405180910390f35b3480156109b757600080fd5b506109fa600480360360208110156109ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611898565b604051808215151515815260200191505060405180910390f35b348015610a2057600080fd5b50610a296118b5565b6040518082815260200191505060405180910390f35b348015610a4b57600080fd5b50610a546118bb565b6040518082815260200191505060405180910390f35b348015610a7657600080fd5b50610ad960048036036040811015610a8d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c1565b6040518082815260200191505060405180910390f35b348015610afb57600080fd5b50610b04611948565b6040518082815260200191505060405180910390f35b348015610b2657600080fd5b50610b2f611997565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b5050505050905090565b600081600e541015610bfd57600d549050610c07565b600c54600d540390505b919050565b6000600760009054906101000a900460ff16151515610c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c9d838361199d565b905092915050565b6000600254905090565b6000600760009054906101000a900460ff16151515610d36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610d418484846119bb565b90509392505050565b600d5481565b6000600560009054906101000a900460ff16905090565b600b5481565b6000600954905090565b6000600760009054906101000a900460ff16151515610dfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e088383611ad8565b905092915050565b610e20610e1b611b8b565b6112e8565b1515610eba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600760009054906101000a900460ff161515610f3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f82611b8b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610fd7610fd2611b8b565b611898565b1515611071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b611088600b54600a54611b9390919063ffffffff16565b4210151515611125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f4e6f206d696e74696e6720616c6c6f776564206265666f7265206d696e74206381526020017f6c6966660000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60105461113d83600f54611b9390919063ffffffff16565b111515156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d696e742063617020726561636865640000000000000000000000000000000081525060200191505060405180910390fd5b60006111bd611948565b905060006111ca82610be7565b905080841115151561126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001807f4c696d697420657863656564656420666f72206d696e74696e6720746869732081526020017f717561727465720000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b81600e5410156112805783600c8190555061129c565b61129584600c54611b9390919063ffffffff16565b600c819055505b42600e819055506112b884600f54611b9390919063ffffffff16565b600f819055506112c88585611c1d565b60019250505092915050565b6112e56112df611b8b565b82611cbe565b50565b60006112fe826006611eff90919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b61132c611327611b8b565b612022565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b611386828261207c565b5050565b61139a611395611b8b565b6112e8565b1515611434576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b61143d8161218f565b50565b61145061144b611b8b565b6112e8565b15156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600760009054906101000a900460ff1615151561156f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115b3611b8b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600f5481565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b5050505050905090565b6116ae6116a9611b8b565b611898565b1515611748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b611751816121e9565b50565b61176461175f611b8b565b612243565b565b6000600760009054906101000a900460ff161515156117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6117f7838361229d565b905092915050565b6000600760009054906101000a900460ff16151515611886576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61189083836123ae565b905092915050565b60006118ae826008611eff90919063ffffffff16565b9050919050565b60105481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080611962600b54600a54611b9390919063ffffffff16565b9050804210156119755780915050611994565b600062784ce09050808183420381151561198b57fe5b04028201925050505b90565b600a5481565b60006119b16119aa611b8b565b84846123cc565b6001905092915050565b60006119c884848461264d565b611acd846119d4611b8b565b611ac885606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611a7e611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6123cc565b600190509392505050565b6000611b81611ae5611b8b565b84611b7c8560016000611af6611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9390919063ffffffff16565b6123cc565b6001905092915050565b600033905090565b6000808284019050838110151515611c13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600954611c3a82611c2c610ca5565b611b9390919063ffffffff16565b11151515611cb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b611cba8282612a93565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611e3881606060405190810160405280602281526020017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81526020017f63650000000000000000000000000000000000000000000000000000000000008152506000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e8f81600254612c5090919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611fcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612036816006612c9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6120868282611cbe565b61218b82612092611b8b565b61218684606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e636500000000000000000000000000000000000000000000000000000000815250600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061213c611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6123cc565b5050565b6121a3816006612d9c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6121fd816008612d9c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b612257816008612c9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006123a46122aa611b8b565b8461239f85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f00000000000000000000000000000000000000000000000000000081525060016000612318611b8b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6123cc565b6001905092915050565b60006123c26123bb611b8b565b848461264d565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515612497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515612718576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61289281606060405190810160405280602681526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206281526020017f616c616e636500000000000000000000000000000000000000000000000000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129d19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612925816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582901515612a80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a45578082015181840152602081019050612a2a565b50505050905090810190601f168015612a725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612b38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612b4d81600254611b9390919063ffffffff16565b600281905550612ba4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612c9283836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129d1565b905092915050565b612ca48282611eff565b1515612d3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612da68282611eff565b151515612e1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a723058204e58bb76d05e77bd24442e3851c3279175b352d17358812fc7feed8d86a02ea80029

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

0000000000000000000000000000000000000000019d971e4fe8401e7400000000000000000000000000000000000000000000000000000000000000606464400000000000000000000000000000000000000000000000000000000002d1cd4000000000000000000000000000000000000000000014adf4b7320334b90000000000000000000000000000000000000000000000026c62ad77dc602dae000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 500000000000000000000000000
Arg [1] : startTime (uint256): 1617192000
Arg [2] : mintCliff (uint256): 47304000
Arg [3] : maxMintPerQuarter (uint256): 25000000000000000000000000
Arg [4] : tokensMintCap (uint256): 750000000000000000000000000

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000060646440
Arg [2] : 0000000000000000000000000000000000000000000000000000000002d1cd40
Arg [3] : 00000000000000000000000000000000000000000014adf4b7320334b9000000
Arg [4] : 0000000000000000000000000000000000000000026c62ad77dc602dae000000


Deployed Bytecode Sourcemap

28599:2273:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18592:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18592:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18592:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30622:247;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30622:247:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30622:247:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26984:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26984:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26984:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11157:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11157:91:0;;;;;;;;;;;;;;;;;;;;;;;26816:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26816:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26816:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28805:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28805:33:0;;;;;;;;;;;;;;;;;;;;;;;19444:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19444:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28731:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28731:25:0;;;;;;;;;;;;;;;;;;;;;;;28089:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28089:75:0;;;;;;;;;;;;;;;;;;;;;;;27132:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27132:170:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27132:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26142:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26142:120:0;;;;;;29475:795;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29475:795:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29475:795:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20001:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20001:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20001:83:0;;;;;;;;;;;;;;;;;;;;23621:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23621:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23621:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25349:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25349:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;23838:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23838:79:0;;;;;;11311:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11311:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11311:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28763:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28763:37:0;;;;;;;;;;;;;;;;;;;;;;;20146:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20146:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20146:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23738:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23738:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23738:92:0;;;;;;;;;;;;;;;;;;;;;;25929:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25929:118:0;;;;;;28878:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28878:33:0;;;;;;;;;;;;;;;;;;;;;;;18794:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18794:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18794:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21971:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21971:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21971:92:0;;;;;;;;;;;;;;;;;;;;;;22071:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22071:79:0;;;;;;27310:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27310:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27310:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26676:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26676:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26676:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21854:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21854:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21854:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28916:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28916:29:0;;;;;;;;;;;;;;;;;;;;;;;28843:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28843:28:0;;;;;;;;;;;;;;;;;;;;;;;11855:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11855:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11855:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30276:340;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30276:340:0;;;;;;;;;;;;;;;;;;;;;;;28701:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28701:25:0;;;;;;;;;;;;;;;;;;;;;;;18592:83;18629:13;18662:5;18655:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18592:83;:::o;30622:247::-;30693:7;30728:16;30712:13;;:32;30708:156;;;30764:18;;30757:25;;;;30708:156;30834:22;;30813:18;;:43;30806:50;;30622:247;;;;:::o;26984:140::-;27063:4;25586:7;;;;;;;;;;;25585:8;25577:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27087:29;27101:7;27110:5;27087:13;:29::i;:::-;27080:36;;26984:140;;;;:::o;11157:91::-;11201:7;11228:12;;11221:19;;11157:91;:::o;26816:160::-;26909:4;25586:7;;;;;;;;;;;25585:8;25577:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26933:35;26952:4;26958:2;26962:5;26933:18;:35::i;:::-;26926:42;;26816:160;;;;;:::o;28805:33::-;;;;:::o;19444:83::-;19485:5;19510:9;;;;;;;;;;;19503:16;;19444:83;:::o;28731:25::-;;;;:::o;28089:75::-;28125:7;28152:4;;28145:11;;28089:75;:::o;27132:170::-;27226:4;25586:7;;;;;;;;;;;25585:8;25577:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27250:44;27274:7;27283:10;27250:23;:44::i;:::-;27243:51;;27132:170;;;;:::o;26142:120::-;23518:22;23527:12;:10;:12::i;:::-;23518:8;:22::i;:::-;23510:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25785:7;;;;;;;;;;;25777:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26211:5;26201:7;;:15;;;;;;;;;;;;;;;;;;26232:22;26241:12;:10;:12::i;:::-;26232:22;;;;;;;;;;;;;;;;;;;;;;26142:120::o;29475:795::-;29549:4;21751:22;21760:12;:10;:12::i;:::-;21751:8;:22::i;:::-;21743:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29589:26;29604:10;;29589;;:14;;:26;;;;:::i;:::-;29570:15;:45;;29562:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29705:14;;29671:30;29694:6;29671:18;;:22;;:30;;;;:::i;:::-;:48;;29663:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29749:24;29776:21;:19;:21::i;:::-;29749:48;;29804:19;29826:32;29841:16;29826:14;:32::i;:::-;29804:54;;29883:11;29873:6;:21;;29865:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29967:16;29951:13;;:32;29947:171;;;30021:6;29996:22;:31;;;;29947:171;;;30076:34;30103:6;30076:22;;:26;;:34;;;;:::i;:::-;30051:22;:59;;;;29947:171;30140:15;30124:13;:31;;;;30185:30;30208:6;30185:18;;:22;;:30;;;;:::i;:::-;30164:18;:51;;;;30222:22;30228:7;30237:6;30222:5;:22::i;:::-;30260:4;30253:11;;;;29475:795;;;;:::o;20001:83::-;20049:27;20055:12;:10;:12::i;:::-;20069:6;20049:5;:27::i;:::-;20001:83;:::o;23621:109::-;23677:4;23701:21;23714:7;23701:8;:12;;:21;;;;:::i;:::-;23694:28;;23621:109;;;:::o;25349:78::-;25388:4;25412:7;;;;;;;;;;;25405:14;;25349:78;:::o;23838:79::-;23882:27;23896:12;:10;:12::i;:::-;23882:13;:27::i;:::-;23838:79::o;11311:110::-;11368:7;11395:9;:18;11405:7;11395:18;;;;;;;;;;;;;;;;11388:25;;11311:110;;;:::o;28763:37::-;;;;:::o;20146:103::-;20215:26;20225:7;20234:6;20215:9;:26::i;:::-;20146:103;;:::o;23738:92::-;23518:22;23527:12;:10;:12::i;:::-;23518:8;:22::i;:::-;23510:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23803:19;23814:7;23803:10;:19::i;:::-;23738:92;:::o;25929:118::-;23518:22;23527:12;:10;:12::i;:::-;23518:8;:22::i;:::-;23510:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25586:7;;;;;;;;;;;25585:8;25577:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25999:4;25989:7;;:14;;;;;;;;;;;;;;;;;;26019:20;26026:12;:10;:12::i;:::-;26019:20;;;;;;;;;;;;;;;;;;;;;;25929:118::o;28878:33::-;;;;:::o;18794:87::-;18833:13;18866:7;18859:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18794:87;:::o;21971:92::-;21751:22;21760:12;:10;:12::i;:::-;21751:8;:22::i;:::-;21743:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22036:19;22047:7;22036:10;:19::i;:::-;21971:92;:::o;22071:79::-;22115:27;22129:12;:10;:12::i;:::-;22115:13;:27::i;:::-;22071:79::o;27310:180::-;27409:4;25586:7;;;;;;;;;;;25585:8;25577:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27433:49;27457:7;27466:15;27433:23;:49::i;:::-;27426:56;;27310:180;;;;:::o;26676:132::-;26751:4;25586:7;;;;;;;;;;;25585:8;25577:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26775:25;26790:2;26794:5;26775:14;:25::i;:::-;26768:32;;26676:132;;;;:::o;21854:109::-;21910:4;21934:21;21947:7;21934:8;:12;;:21;;;;:::i;:::-;21927:28;;21854:109;;;:::o;28916:29::-;;;;:::o;28843:28::-;;;;:::o;11855:134::-;11927:7;11954:11;:18;11966:5;11954:18;;;;;;;;;;;;;;;:27;11973:7;11954:27;;;;;;;;;;;;;;;;11947:34;;11855:134;;;;:::o;30276:340::-;30328:7;30343:20;30366:26;30381:10;;30366;;:14;;:26;;;;:::i;:::-;30343:49;;30421:12;30403:15;:30;30399:212;;;30451:12;30444:19;;;;;30399:212;30485:15;30503;30485:33;;30595:7;30584;30569:12;30551:15;:30;30550:42;;;;;;;;30549:54;30534:12;:69;30527:76;;;;30276:340;;:::o;28701:25::-;;;;:::o;12136:152::-;12202:4;12219:39;12228:12;:10;:12::i;:::-;12242:7;12251:6;12219:8;:39::i;:::-;12276:4;12269:11;;12136:152;;;;:::o;12760:304::-;12849:4;12866:36;12876:6;12884:9;12895:6;12866:9;:36::i;:::-;12913:121;12922:6;12930:12;:10;:12::i;:::-;12944:89;12982:6;12944:89;;;;;;;;;;;;;;;;;;;;;;;:11;:19;12956:6;12944:19;;;;;;;;;;;;;;;:33;12964:12;:10;:12::i;:::-;12944:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12913:8;:121::i;:::-;13052:4;13045:11;;12760:304;;;;;:::o;13473:210::-;13553:4;13570:83;13579:12;:10;:12::i;:::-;13593:7;13602:50;13641:10;13602:11;:25;13614:12;:10;:12::i;:::-;13602:25;;;;;;;;;;;;;;;:34;13628:7;13602:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13570:8;:83::i;:::-;13671:4;13664:11;;13473:210;;;;:::o;6368:98::-;6413:15;6448:10;6441:17;;6368:98;:::o;913:181::-;971:7;991:9;1007:1;1003;:5;991:17;;1032:1;1027;:6;;1019:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085:1;1078:8;;;913:181;;;;:::o;28337:183::-;28440:4;;28412:24;28430:5;28412:13;:11;:13::i;:::-;:17;;:24;;;;:::i;:::-;:32;;28404:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28485:27;28497:7;28506:5;28485:11;:27::i;:::-;28337:183;;:::o;16329:348::-;16424:1;16405:21;;:7;:21;;;;16397:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16498:68;16521:6;16498:68;;;;;;;;;;;;;;;;;;;;;;;:9;:18;16508:7;16498:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16477:9;:18;16487:7;16477:18;;;;;;;;;;;;;;;:89;;;;16592:24;16609:6;16592:12;;:16;;:24;;;;:::i;:::-;16577:12;:39;;;;16658:1;16632:37;;16641:7;16632:37;;;16662:6;16632:37;;;;;;;;;;;;;;;;;;16329:348;;:::o;21119:203::-;21191:4;21235:1;21216:21;;:7;:21;;;;21208:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21294:4;:11;;:20;21306:7;21294:20;;;;;;;;;;;;;;;;;;;;;;;;;21287:27;;21119:203;;;;:::o;24055:130::-;24115:24;24131:7;24115:8;:15;;:24;;;;:::i;:::-;24169:7;24155:22;;;;;;;;;;;;24055:130;:::o;17641:232::-;17713:22;17719:7;17728:6;17713:5;:22::i;:::-;17746:119;17755:7;17764:12;:10;:12::i;:::-;17778:86;17817:6;17778:86;;;;;;;;;;;;;;;;;;;;;;;:11;:20;17790:7;17778:20;;;;;;;;;;;;;;;:34;17799:12;:10;:12::i;:::-;17778:34;;;;;;;;;;;;;;;;:38;;:86;;;;;:::i;:::-;17746:8;:119::i;:::-;17641:232;;:::o;23925:122::-;23982:21;23995:7;23982:8;:12;;:21;;;;:::i;:::-;24031:7;24019:20;;;;;;;;;;;;23925:122;:::o;22158:::-;22215:21;22228:7;22215:8;:12;;:21;;;;:::i;:::-;22264:7;22252:20;;;;;;;;;;;;22158:122;:::o;22288:130::-;22348:24;22364:7;22348:8;:15;;:24;;;;:::i;:::-;22402:7;22388:22;;;;;;;;;;;;22288:130;:::o;14186:261::-;14271:4;14288:129;14297:12;:10;:12::i;:::-;14311:7;14320:96;14359:15;14320:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;14332:12;:10;:12::i;:::-;14320:25;;;;;;;;;;;;;;;:34;14346:7;14320:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;14288:8;:129::i;:::-;14435:4;14428:11;;14186:261;;;;:::o;11634:158::-;11703:4;11720:42;11730:12;:10;:12::i;:::-;11744:9;11755:6;11720:9;:42::i;:::-;11780:4;11773:11;;11634:158;;;;:::o;17117:338::-;17228:1;17211:19;;:5;:19;;;;17203:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17309:1;17290:21;;:7;:21;;;;17282:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17393:6;17363:11;:18;17375:5;17363:18;;;;;;;;;;;;;;;:27;17382:7;17363:27;;;;;;;;;;;;;;;:36;;;;17431:7;17415:32;;17424:5;17415:32;;;17440:6;17415:32;;;;;;;;;;;;;;;;;;17117:338;;;:::o;14937:471::-;15053:1;15035:20;;:6;:20;;;;15027:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15137:1;15116:23;;:9;:23;;;;15108:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15212;15234:6;15212:71;;;;;;;;;;;;;;;;;;;;;;;:9;:17;15222:6;15212:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;15192:9;:17;15202:6;15192:17;;;;;;;;;;;;;;;:91;;;;15317:32;15342:6;15317:9;:20;15327:9;15317:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15294:9;:20;15304:9;15294:20;;;;;;;;;;;;;;;:55;;;;15382:9;15365:35;;15374:6;15365:35;;;15393:6;15365:35;;;;;;;;;;;;;;;;;;14937:471;;;:::o;1842:192::-;1928:7;1961:1;1956;:6;;1964:12;1948:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1948:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988:9;2004:1;2000;:5;1988:17;;2025:1;2018:8;;;1842:192;;;;;:::o;15689:308::-;15784:1;15765:21;;:7;:21;;;;15757:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15850:24;15867:6;15850:12;;:16;;:24;;;;:::i;:::-;15835:12;:39;;;;15906:30;15929:6;15906:9;:18;15916:7;15906:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;15885:9;:18;15895:7;15885:18;;;;;;;;;;;;;;;:51;;;;15973:7;15952:37;;15969:1;15952:37;;;15982:6;15952:37;;;;;;;;;;;;;;;;;;15689:308;;:::o;1369:136::-;1427:7;1454:43;1458:1;1461;1454:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1447:50;;1369:136;;;;:::o;20841:183::-;20921:18;20925:4;20931:7;20921:3;:18::i;:::-;20913:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21011:5;20988:4;:11;;:20;21000:7;20988:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;20841:183;;:::o;20583:178::-;20661:18;20665:4;20671:7;20661:3;:18::i;:::-;20660:19;20652:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20749:4;20726;:11;;:20;20738:7;20726:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;20583:178;;:::o

Swarm Source

bzzr://4e58bb76d05e77bd24442e3851c3279175b352d17358812fc7feed8d86a02ea8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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