ETH Price: $3,419.50 (-5.39%)
Gas: 24 Gwei

Token

3X Long Litecoin Token (LTCBULL)
 

Overview

Max Total Supply

7,946,996,558.30800377 LTCBULL

Holders

134 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

3X Long Litecoin Token (LTCBULL) is an ERC20 token which seeks a return that corresponds to 3 times the daily return of Litecoin.

# Exchange Pair Price  24H Volume % Volume

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

Contract Name:
LeveragedToken

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-08-18
*/

// File: openzeppelin-solidity/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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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-solidity/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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

// File: openzeppelin-solidity/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.
     *
     * > 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-solidity/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 that 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-solidity/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`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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 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(msg.sender, 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 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - 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, msg.sender, _allowances[sender][msg.sender].sub(amount));
        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(msg.sender, spender, _allowances[msg.sender][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(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        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);
        _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 Destoys `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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

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

    /**
     * @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 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destoys `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, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

// File: openzeppelin-solidity/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-solidity/contracts/access/roles/PauserRole.sol

pragma solidity ^0.5.0;


contract PauserRole {
    using Roles for Roles.Role;

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

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender), "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(msg.sender);
    }

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

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

// File: openzeppelin-solidity/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 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(msg.sender);
    }

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

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

pragma solidity ^0.5.0;



/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
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, uint addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

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

// File: openzeppelin-solidity/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;


contract MinterRole {
    using Roles for Roles.Role;

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

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender), "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(msg.sender);
    }

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

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

// File: openzeppelin-solidity/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-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

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

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

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/whitelist/IWhitelist.sol

pragma solidity ^0.5.0;


// Interface to be implemented by the Whitelist contract.
contract IWhitelist {
    function isWhitelisted(address account) public view returns (bool);
}

// File: contracts/token/BurnerRole.sol

pragma solidity ^0.5.0;



contract BurnerRole {
    using Roles for Roles.Role;

    event BurnerAdded(address indexed account);
    event BurnerRemoved(address indexed account);

    Roles.Role private _burners;

    constructor () internal {
        _addBurner(msg.sender);
    }

    modifier onlyBurner() {
        require(isBurner(msg.sender));
        _;
    }

    function isBurner(address account) public view returns (bool) {
        return _burners.has(account);
    }

    function addBurner(address account) public onlyBurner {
        _addBurner(account);
    }

    function renounceBurner() public {
        _removeBurner(msg.sender);
    }

    function _addBurner(address account) internal {
        _burners.add(account);
        emit BurnerAdded(account);
    }

    function _removeBurner(address account) internal {
        _burners.remove(account);
        emit BurnerRemoved(account);
    }
}

// File: contracts/token/ERC20Burnable.sol

pragma solidity ^0.5.0;




// Only allow accounts with the burner role to burn tokens.
contract ERC20Burnable is ERC20, BurnerRole {
    function burn(uint256 value) public onlyBurner() {
        _burn(msg.sender, value);
    }

    function burnFrom(address from, uint256 value) public onlyBurner() {
        _burnFrom(from, value);
    }
}

// File: contracts/token/ERC20Whitelistable.sol

pragma solidity ^0.5.0;






// Disallow transfers of the token to or from blacklisted accounts.
contract ERC20Whitelistable is ERC20Mintable, ERC20Burnable, Ownable {
    event WhitelistChanged(IWhitelist indexed account);

    IWhitelist public whitelist;

    function setWhitelist(IWhitelist _whitelist) public onlyOwner {
        whitelist = _whitelist;
        emit WhitelistChanged(_whitelist);
    }

    modifier onlyWhitelisted(address account) {
        require(isWhitelisted(account));
        _;
    }

    modifier notWhitelisted(address account) {
        require(!isWhitelisted(account));
        _;
    }

    // Returns true if the account is allowed to send and receive tokens.
    function isWhitelisted(address account) public view returns (bool) {
        return whitelist.isWhitelisted(account);
    }

    function transfer(address to, uint256 value)
        public
        onlyWhitelisted(msg.sender)
        onlyWhitelisted(to)
        returns (bool)
    {
        return super.transfer(to, value);
    }

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

    function mint(address to, uint256 value) public onlyWhitelisted(to) returns (bool) {
        return super.mint(to, value);
    }

    // Destroy the tokens held by a blacklisted account.
    function burnBlacklisted(address from, uint256 value)
        public
        onlyBurner()
        notWhitelisted(from)
    {
        _burn(from, value);
    }
}

// File: contracts/utils/CanReclaimEther.sol

pragma solidity ^0.5.0;



// Ether should not be sent to this contract. If any ether is accidentally sent to this
// contract, allow the contract owner to recover it.
// Copied from https://github.com/OpenZeppelin/openzeppelin-solidity/blob/2441fd7d17bffa1944f6f539b2cddd6d19997a31/contracts/ownership/HasNoEther.sol
contract CanReclaimEther is Ownable {
    function reclaimEther() external onlyOwner {
        msg.sender.transfer(address(this).balance);
    }
}

// File: openzeppelin-solidity/contracts/utils/Address.sol

pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

pragma solidity ^0.5.0;




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

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

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

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

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

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: contracts/utils/CanReclaimToken.sol

pragma solidity ^0.5.0;




// Tokens should not be sent to this contract.  If any tokens are accidentally sent to
// this contract, allow the contract owner to recover them.
// Copied from https://github.com/OpenZeppelin/openzeppelin-solidity/blob/6c4c8989b399510a66d8b98ad75a0979482436d2/contracts/ownership/CanReclaimToken.sol
contract CanReclaimToken is Ownable {
    using SafeERC20 for IERC20;

    function reclaimToken(IERC20 token) external onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.safeTransfer(owner(), balance);
    }
}

// File: contracts/token/LeveragedToken.sol

pragma solidity ^0.5.0;










contract LeveragedToken is
    ERC20Detailed,
    ERC20Pausable,
    ERC20Mintable,
    ERC20Burnable,
    ERC20Whitelistable,
    CanReclaimEther,
    CanReclaimToken
{
    string public underlying;
    int8 public leverage;

    constructor(string memory name, string memory symbol, string memory _underlying, int8 _leverage)
        ERC20Detailed(name, symbol, 18)
        public
    {
        underlying = _underlying;
        leverage = _leverage;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"leverage","outputs":[{"internalType":"int8","name":"","type":"int8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnBlacklisted","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","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":false,"inputs":[{"internalType":"contract IWhitelist","name":"_whitelist","type":"address"}],"name":"setWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"whitelist","outputs":[{"internalType":"contract IWhitelist","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","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":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_underlying","type":"string"},{"internalType":"int8","name":"_leverage","type":"int8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IWhitelist","name":"account","type":"address"}],"name":"WhitelistChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BurnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BurnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b506040516200262a3803806200262a833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001bc57600080fd5b908301906020820185811115620001d257600080fd5b8251640100000000811182820188101715620001ed57600080fd5b82525081516020918201929091019080838360005b838110156200021c57818101518382015260200162000202565b50505050905090810190601f1680156200024a5780820380516001836020036101000a031916815260200191505b506040526020908101518651909350869250859160129162000273916000919086019062000583565b5081516200028990600190602085019062000583565b506002805460ff191660ff9290921691909117905550620002ac90503362000363565b6007805460ff19169055620002ca336001600160e01b03620003b516565b620002de336001600160e01b036200040716565b600a80546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a381516200033f90600c90602085019062000583565b50600d805460009290920b60ff1660ff199092169190911790555062000628915050565b6200037e8160066200045960201b62001c011790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620003d08160086200045960201b62001c011790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620004228160096200045960201b62001c011790919060201c565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6200046e82826001600160e01b036200050016565b15620004db57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b03821662000563576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620026086022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005c657805160ff1916838001178555620005f6565b82800160010185558215620005f6579182015b82811115620005f6578251825591602001919060010190620005d9565b506200060492915062000608565b5090565b6200062591905b808211156200060457600081556001016200060f565b90565b611fd080620006386000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c8063715018a611610130578063983b2d56116100b8578063aa271e1a1161007c578063aa271e1a14610656578063dd62ed3e1461067c578063e9ec9e8b146106aa578063f2fde38b146106b2578063f44637ba146106d857610232565b8063983b2d56146105c857806398650275146105ee5780639f727c27146105f6578063a457c2d7146105fe578063a9059cbb1461062a57610232565b8063854cff2f116100ff578063854cff2f146105665780638da5cb5b1461058c5780638f32d59b146105b057806393e59dc1146105b857806395d89b41146105c057610232565b8063715018a61461050457806379cc67901461050c57806382dc1ec4146105385780638456cb591461055e57610232565b80633f4ba83a116101be5780635c975abb116101825780635c975abb1461049a5780636165e774146104a25780636ef8d66d146104ce5780636f307dc3146104d657806370a08231146104de57610232565b80633f4ba83a146103fd57806340c10f191461040557806342966c68146104315780634334614a1461044e57806346fbf68e1461047457610232565b806323b872dd1161020557806323b872dd146103365780632c86d98e1461036c578063313ce5671461038d57806339509351146103ab5780633af32abf146103d757610232565b806306fdde0314610237578063095ea7b3146102b457806317ffc320146102f457806318160ddd1461031c575b600080fd5b61023f6106fe565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610279578181015183820152602001610261565b50505050905090810190601f1680156102a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e0600480360360408110156102ca57600080fd5b506001600160a01b038135169060200135610794565b604080519115158252519081900360200190f35b61031a6004803603602081101561030a57600080fd5b50356001600160a01b03166107f3565b005b6103246108d8565b60408051918252519081900360200190f35b6102e06004803603606081101561034c57600080fd5b506001600160a01b038135811691602081013590911690604001356108de565b61037461091b565b60408051600092830b90920b8252519081900360200190f35b610395610924565b6040805160ff9092168252519081900360200190f35b6102e0600480360360408110156103c157600080fd5b506001600160a01b03813516906020013561092d565b6102e0600480360360208110156103ed57600080fd5b50356001600160a01b0316610985565b61031a610a08565b6102e06004803603604081101561041b57600080fd5b506001600160a01b038135169060200135610ad9565b61031a6004803603602081101561044757600080fd5b5035610b00565b6102e06004803603602081101561046457600080fd5b50356001600160a01b0316610b1f565b6102e06004803603602081101561048a57600080fd5b50356001600160a01b0316610b38565b6102e0610b4b565b61031a600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610b54565b61031a610b89565b61023f610b94565b610324600480360360208110156104f457600080fd5b50356001600160a01b0316610c22565b61031a610c3d565b61031a6004803603604081101561052257600080fd5b506001600160a01b038135169060200135610cce565b61031a6004803603602081101561054e57600080fd5b50356001600160a01b0316610cea565b61031a610d37565b61031a6004803603602081101561057c57600080fd5b50356001600160a01b0316610e08565b610594610e99565b604080516001600160a01b039092168252519081900360200190f35b6102e0610ea8565b610594610eb9565b61023f610ec8565b61031a600480360360208110156105de57600080fd5b50356001600160a01b0316610f28565b61031a610f75565b61031a610f7e565b6102e06004803603604081101561061457600080fd5b506001600160a01b038135169060200135610ff2565b6102e06004803603604081101561064057600080fd5b506001600160a01b03813516906020013561104a565b6102e06004803603602081101561066c57600080fd5b50356001600160a01b0316611085565b6103246004803603604081101561069257600080fd5b506001600160a01b0381358116916020013516611098565b61031a6110c3565b61031a600480360360208110156106c857600080fd5b50356001600160a01b03166110cc565b61031a600480360360208110156106ee57600080fd5b50356001600160a01b031661111c565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b60075460009060ff16156107e2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec8383611137565b9392505050565b6107fb610ea8565b61083a576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561088457600080fd5b505afa158015610898573d6000803e3d6000fd5b505050506040513d60208110156108ae57600080fd5b505190506108d46108bd610e99565b6001600160a01b038416908363ffffffff61114d16565b5050565b60055490565b6000836108ea81610985565b6108f357600080fd5b836108fd81610985565b61090657600080fd5b61091186868661119f565b9695505050505050565b600d5460000b81565b60025460ff1690565b60075460009060ff161561097b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec83836111f8565b600b5460408051633af32abf60e01b81526001600160a01b03848116600483015291516000939290921691633af32abf91602480820192602092909190829003018186803b1580156109d657600080fd5b505afa1580156109ea573d6000803e3d6000fd5b505050506040513d6020811015610a0057600080fd5b505192915050565b610a1133610b38565b610a4c5760405162461bcd60e51b8152600401808060200182810382526030815260200180611dfd6030913960400191505060405180910390fd5b60075460ff16610a9a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600082610ae581610985565b610aee57600080fd5b610af88484611239565b949350505050565b610b0933610b1f565b610b1257600080fd5b610b1c3382611289565b50565b6000610b3260098363ffffffff61136416565b92915050565b6000610b3260068363ffffffff61136416565b60075460ff1690565b610b5d33610b1f565b610b6657600080fd5b81610b7081610985565b15610b7a57600080fd5b610b848383611289565b505050565b610b92336113cb565b565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b505050505081565b6001600160a01b031660009081526003602052604090205490565b610c45610ea8565b610c84576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610cd733610b1f565b610ce057600080fd5b6108d48282611413565b610cf333610b38565b610d2e5760405162461bcd60e51b8152600401808060200182810382526030815260200180611dfd6030913960400191505060405180910390fd5b610b1c81611458565b610d4033610b38565b610d7b5760405162461bcd60e51b8152600401808060200182810382526030815260200180611dfd6030913960400191505060405180910390fd5b60075460ff1615610dc6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b610e10610ea8565b610e4f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0383169081179091556040517fdd8c807c33d35ad7642d985aca3455e9281f5298b1c22a4aadb5a86d52df7ed190600090a250565b600a546001600160a01b031690565b600a546001600160a01b0316331490565b600b546001600160a01b031681565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561078a5780601f1061075f5761010080835404028352916020019161078a565b610f3133611085565b610f6c5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e756030913960400191505060405180910390fd5b610b1c816114a0565b610b92336114e8565b610f86610ea8565b610fc5576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b6040513390303180156108fc02916000818181858888f19350505050158015610b1c573d6000803e3d6000fd5b60075460009060ff1615611040576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec8383611530565b60003361105681610985565b61105f57600080fd5b8361106981610985565b61107257600080fd5b61107c858561156c565b95945050505050565b6000610b3260088363ffffffff61136416565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610b92336115c4565b6110d4610ea8565b611113576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b610b1c8161160c565b61112533610b1f565b61112e57600080fd5b610b1c816116ad565b60006111443384846116f5565b50600192915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b849084906117e1565b60075460009060ff16156111ed576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610af884848461199f565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091611144918590611234908663ffffffff6119f116565b6116f5565b600061124433611085565b61127f5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e756030913960400191505060405180910390fd5b6111448383611a4b565b6001600160a01b0382166112ce5760405162461bcd60e51b8152600401808060200182810382526021815260200180611f086021913960400191505060405180910390fd5b6005546112e1908263ffffffff611b3d16565b6005556001600160a01b03821660009081526003602052604090205461130d908263ffffffff611b3d16565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b0382166113ab5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ee66022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6113dc60068263ffffffff611b9a16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61141d8282611289565b6001600160a01b0382166000908152600460209081526040808320338085529252909120546108d4918491611234908563ffffffff611b3d16565b61146960068263ffffffff611c0116565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6114b160088263ffffffff611c0116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6114f960088263ffffffff611b9a16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091611144918590611234908663ffffffff611b3d16565b60075460009060ff16156115ba576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec8383611c82565b6115d560098263ffffffff611b9a16565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b6001600160a01b0381166116515760405162461bcd60e51b8152600401808060200182810382526026815260200180611e2d6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6116be60098263ffffffff611c0116565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b03831661173a5760405162461bcd60e51b8152600401808060200182810382526024815260200180611f4e6024913960400191505060405180910390fd5b6001600160a01b03821661177f5760405162461bcd60e51b8152600401808060200182810382526022815260200180611e536022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6117f3826001600160a01b0316611c8f565b611844576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106118825780518252601f199092019160209182019101611863565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146118e4576040519150601f19603f3d011682016040523d82523d6000602084013e6118e9565b606091505b509150915081611940576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156119995780806020019051602081101561195c57600080fd5b50516119995760405162461bcd60e51b815260040180806020018281038252602a815260200180611f72602a913960400191505060405180910390fd5b50505050565b60006119ac848484611c95565b6001600160a01b0384166000908152600460209081526040808320338085529252909120546119e7918691611234908663ffffffff611b3d16565b5060019392505050565b6000828201838110156107ec576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611aa6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554611ab9908263ffffffff6119f116565b6005556001600160a01b038216600090815260036020526040902054611ae5908263ffffffff6119f116565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115611b94576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b611ba48282611364565b611bdf5760405162461bcd60e51b8152600401808060200182810382526021815260200180611ea56021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b611c0b8282611364565b15611c5d576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000611144338484611c95565b3b151590565b6001600160a01b038316611cda5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f296025913960400191505060405180910390fd5b6001600160a01b038216611d1f5760405162461bcd60e51b8152600401808060200182810382526023815260200180611dda6023913960400191505060405180910390fd5b6001600160a01b038316600090815260036020526040902054611d48908263ffffffff611b3d16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611d7d908263ffffffff6119f116565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820b31000f5fd323f0d68dabea8449c9a3e89fcb8fcbd9a41dfc90b055a9a2441c464736f6c634300050b0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000001731582053686f7274204c697465636f696e20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000084c5443484544474500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c54430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c8063715018a611610130578063983b2d56116100b8578063aa271e1a1161007c578063aa271e1a14610656578063dd62ed3e1461067c578063e9ec9e8b146106aa578063f2fde38b146106b2578063f44637ba146106d857610232565b8063983b2d56146105c857806398650275146105ee5780639f727c27146105f6578063a457c2d7146105fe578063a9059cbb1461062a57610232565b8063854cff2f116100ff578063854cff2f146105665780638da5cb5b1461058c5780638f32d59b146105b057806393e59dc1146105b857806395d89b41146105c057610232565b8063715018a61461050457806379cc67901461050c57806382dc1ec4146105385780638456cb591461055e57610232565b80633f4ba83a116101be5780635c975abb116101825780635c975abb1461049a5780636165e774146104a25780636ef8d66d146104ce5780636f307dc3146104d657806370a08231146104de57610232565b80633f4ba83a146103fd57806340c10f191461040557806342966c68146104315780634334614a1461044e57806346fbf68e1461047457610232565b806323b872dd1161020557806323b872dd146103365780632c86d98e1461036c578063313ce5671461038d57806339509351146103ab5780633af32abf146103d757610232565b806306fdde0314610237578063095ea7b3146102b457806317ffc320146102f457806318160ddd1461031c575b600080fd5b61023f6106fe565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610279578181015183820152602001610261565b50505050905090810190601f1680156102a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e0600480360360408110156102ca57600080fd5b506001600160a01b038135169060200135610794565b604080519115158252519081900360200190f35b61031a6004803603602081101561030a57600080fd5b50356001600160a01b03166107f3565b005b6103246108d8565b60408051918252519081900360200190f35b6102e06004803603606081101561034c57600080fd5b506001600160a01b038135811691602081013590911690604001356108de565b61037461091b565b60408051600092830b90920b8252519081900360200190f35b610395610924565b6040805160ff9092168252519081900360200190f35b6102e0600480360360408110156103c157600080fd5b506001600160a01b03813516906020013561092d565b6102e0600480360360208110156103ed57600080fd5b50356001600160a01b0316610985565b61031a610a08565b6102e06004803603604081101561041b57600080fd5b506001600160a01b038135169060200135610ad9565b61031a6004803603602081101561044757600080fd5b5035610b00565b6102e06004803603602081101561046457600080fd5b50356001600160a01b0316610b1f565b6102e06004803603602081101561048a57600080fd5b50356001600160a01b0316610b38565b6102e0610b4b565b61031a600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610b54565b61031a610b89565b61023f610b94565b610324600480360360208110156104f457600080fd5b50356001600160a01b0316610c22565b61031a610c3d565b61031a6004803603604081101561052257600080fd5b506001600160a01b038135169060200135610cce565b61031a6004803603602081101561054e57600080fd5b50356001600160a01b0316610cea565b61031a610d37565b61031a6004803603602081101561057c57600080fd5b50356001600160a01b0316610e08565b610594610e99565b604080516001600160a01b039092168252519081900360200190f35b6102e0610ea8565b610594610eb9565b61023f610ec8565b61031a600480360360208110156105de57600080fd5b50356001600160a01b0316610f28565b61031a610f75565b61031a610f7e565b6102e06004803603604081101561061457600080fd5b506001600160a01b038135169060200135610ff2565b6102e06004803603604081101561064057600080fd5b506001600160a01b03813516906020013561104a565b6102e06004803603602081101561066c57600080fd5b50356001600160a01b0316611085565b6103246004803603604081101561069257600080fd5b506001600160a01b0381358116916020013516611098565b61031a6110c3565b61031a600480360360208110156106c857600080fd5b50356001600160a01b03166110cc565b61031a600480360360208110156106ee57600080fd5b50356001600160a01b031661111c565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561078a5780601f1061075f5761010080835404028352916020019161078a565b820191906000526020600020905b81548152906001019060200180831161076d57829003601f168201915b5050505050905090565b60075460009060ff16156107e2576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec8383611137565b9392505050565b6107fb610ea8565b61083a576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561088457600080fd5b505afa158015610898573d6000803e3d6000fd5b505050506040513d60208110156108ae57600080fd5b505190506108d46108bd610e99565b6001600160a01b038416908363ffffffff61114d16565b5050565b60055490565b6000836108ea81610985565b6108f357600080fd5b836108fd81610985565b61090657600080fd5b61091186868661119f565b9695505050505050565b600d5460000b81565b60025460ff1690565b60075460009060ff161561097b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec83836111f8565b600b5460408051633af32abf60e01b81526001600160a01b03848116600483015291516000939290921691633af32abf91602480820192602092909190829003018186803b1580156109d657600080fd5b505afa1580156109ea573d6000803e3d6000fd5b505050506040513d6020811015610a0057600080fd5b505192915050565b610a1133610b38565b610a4c5760405162461bcd60e51b8152600401808060200182810382526030815260200180611dfd6030913960400191505060405180910390fd5b60075460ff16610a9a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600082610ae581610985565b610aee57600080fd5b610af88484611239565b949350505050565b610b0933610b1f565b610b1257600080fd5b610b1c3382611289565b50565b6000610b3260098363ffffffff61136416565b92915050565b6000610b3260068363ffffffff61136416565b60075460ff1690565b610b5d33610b1f565b610b6657600080fd5b81610b7081610985565b15610b7a57600080fd5b610b848383611289565b505050565b610b92336113cb565b565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c1a5780601f10610bef57610100808354040283529160200191610c1a565b820191906000526020600020905b815481529060010190602001808311610bfd57829003601f168201915b505050505081565b6001600160a01b031660009081526003602052604090205490565b610c45610ea8565b610c84576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610cd733610b1f565b610ce057600080fd5b6108d48282611413565b610cf333610b38565b610d2e5760405162461bcd60e51b8152600401808060200182810382526030815260200180611dfd6030913960400191505060405180910390fd5b610b1c81611458565b610d4033610b38565b610d7b5760405162461bcd60e51b8152600401808060200182810382526030815260200180611dfd6030913960400191505060405180910390fd5b60075460ff1615610dc6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b610e10610ea8565b610e4f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0383169081179091556040517fdd8c807c33d35ad7642d985aca3455e9281f5298b1c22a4aadb5a86d52df7ed190600090a250565b600a546001600160a01b031690565b600a546001600160a01b0316331490565b600b546001600160a01b031681565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561078a5780601f1061075f5761010080835404028352916020019161078a565b610f3133611085565b610f6c5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e756030913960400191505060405180910390fd5b610b1c816114a0565b610b92336114e8565b610f86610ea8565b610fc5576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b6040513390303180156108fc02916000818181858888f19350505050158015610b1c573d6000803e3d6000fd5b60075460009060ff1615611040576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec8383611530565b60003361105681610985565b61105f57600080fd5b8361106981610985565b61107257600080fd5b61107c858561156c565b95945050505050565b6000610b3260088363ffffffff61136416565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610b92336115c4565b6110d4610ea8565b611113576040805162461bcd60e51b81526020600482018190526024820152600080516020611ec6833981519152604482015290519081900360640190fd5b610b1c8161160c565b61112533610b1f565b61112e57600080fd5b610b1c816116ad565b60006111443384846116f5565b50600192915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b849084906117e1565b60075460009060ff16156111ed576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610af884848461199f565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091611144918590611234908663ffffffff6119f116565b6116f5565b600061124433611085565b61127f5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e756030913960400191505060405180910390fd5b6111448383611a4b565b6001600160a01b0382166112ce5760405162461bcd60e51b8152600401808060200182810382526021815260200180611f086021913960400191505060405180910390fd5b6005546112e1908263ffffffff611b3d16565b6005556001600160a01b03821660009081526003602052604090205461130d908263ffffffff611b3d16565b6001600160a01b0383166000818152600360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b0382166113ab5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ee66022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6113dc60068263ffffffff611b9a16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61141d8282611289565b6001600160a01b0382166000908152600460209081526040808320338085529252909120546108d4918491611234908563ffffffff611b3d16565b61146960068263ffffffff611c0116565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6114b160088263ffffffff611c0116565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6114f960088263ffffffff611b9a16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091611144918590611234908663ffffffff611b3d16565b60075460009060ff16156115ba576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107ec8383611c82565b6115d560098263ffffffff611b9a16565b6040516001600160a01b038216907f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e90600090a250565b6001600160a01b0381166116515760405162461bcd60e51b8152600401808060200182810382526026815260200180611e2d6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6116be60098263ffffffff611c0116565b6040516001600160a01b038216907f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456090600090a250565b6001600160a01b03831661173a5760405162461bcd60e51b8152600401808060200182810382526024815260200180611f4e6024913960400191505060405180910390fd5b6001600160a01b03821661177f5760405162461bcd60e51b8152600401808060200182810382526022815260200180611e536022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6117f3826001600160a01b0316611c8f565b611844576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106118825780518252601f199092019160209182019101611863565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146118e4576040519150601f19603f3d011682016040523d82523d6000602084013e6118e9565b606091505b509150915081611940576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156119995780806020019051602081101561195c57600080fd5b50516119995760405162461bcd60e51b815260040180806020018281038252602a815260200180611f72602a913960400191505060405180910390fd5b50505050565b60006119ac848484611c95565b6001600160a01b0384166000908152600460209081526040808320338085529252909120546119e7918691611234908663ffffffff611b3d16565b5060019392505050565b6000828201838110156107ec576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611aa6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554611ab9908263ffffffff6119f116565b6005556001600160a01b038216600090815260036020526040902054611ae5908263ffffffff6119f116565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115611b94576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b611ba48282611364565b611bdf5760405162461bcd60e51b8152600401808060200182810382526021815260200180611ea56021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b611c0b8282611364565b15611c5d576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000611144338484611c95565b3b151590565b6001600160a01b038316611cda5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f296025913960400191505060405180910390fd5b6001600160a01b038216611d1f5760405162461bcd60e51b8152600401808060200182810382526023815260200180611dda6023913960400191505060405180910390fd5b6001600160a01b038316600090815260036020526040902054611d48908263ffffffff611b3d16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054611d7d908263ffffffff6119f116565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820b31000f5fd323f0d68dabea8449c9a3e89fcb8fcbd9a41dfc90b055a9a2441c464736f6c634300050b0032

Deployed Bytecode Sourcemap

35280:479:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35280:479:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7298:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7298:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21079:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21079:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;35012:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35012:169:0;-1:-1:-1;;;;;35012:169:0;;:::i;:::-;;9809:91;;;:::i;:::-;;;;;;;;;;;;;;;;28592:229;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28592:229:0;;;;;;;;;;;;;;;;;:::i;35494:20::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;8156:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21227:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21227:167:0;;;;;;;;:::i;28244:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28244:125:0;-1:-1:-1;;;;;28244:125:0;;:::i;20407:118::-;;;:::i;28829:130::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28829:130:0;;;;;;;;:::i;27247:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27247:92:0;;:::i;26487:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26487:109:0;-1:-1:-1;;;;;26487:109:0;;:::i;17893:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17893:109:0;-1:-1:-1;;;;;17893:109:0;;:::i;19616:78::-;;;:::i;29025:164::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29025:164:0;;;;;;;;:::i;18110:77::-;;;:::i;35463:24::-;;;:::i;9963:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9963:110:0;-1:-1:-1;;;;;9963:110:0;;:::i;25068:140::-;;;:::i;27347:108::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27347:108:0;;;;;;;;:::i;18010:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18010:92:0;-1:-1:-1;;;;;18010:92:0;;:::i;20196:116::-;;;:::i;27790:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27790:147:0;-1:-1:-1;;;;;27790:147:0;;:::i;24257:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;24257:79:0;;;;;;;;;;;;;;24623:92;;;:::i;27754:27::-;;;:::i;7500:87::-;;;:::i;22219:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22219:92:0;-1:-1:-1;;;;;22219:92:0;;:::i;22319:77::-;;;:::i;29612:104::-;;;:::i;21402:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21402:177:0;;;;;;;;:::i;28377:207::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28377:207:0;;;;;;;;:::i;22102:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22102:109:0;-1:-1:-1;;;;;22102:109:0;;:::i;10505:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10505:134:0;;;;;;;;;;:::i;26704:77::-;;;:::i;25363:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25363:109:0;-1:-1:-1;;;;;25363:109:0;;:::i;26604:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26604:92:0;-1:-1:-1;;;;;26604:92:0;;:::i;7298:83::-;7368:5;7361:12;;;;;;;;-1:-1:-1;;7361:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7335:13;;7361:12;;7368:5;;7361:12;;7368:5;7361:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7298:83;:::o;21079:140::-;19853:7;;21158:4;;19853:7;;19852:8;19844:37;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;;;;21182:29;21196:7;21205:5;21182:13;:29::i;:::-;21175:36;21079:140;-1:-1:-1;;;21079:140:0:o;35012:169::-;24469:9;:7;:9::i;:::-;24461:54;;;;;-1:-1:-1;;;24461:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24461:54:0;;;;;;;;;;;;;;;35096:30;;;-1:-1:-1;;;35096:30:0;;35120:4;35096:30;;;;;;35078:15;;-1:-1:-1;;;;;35096:15:0;;;;;:30;;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;35096:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35096:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35096:30:0;;-1:-1:-1;35137:36:0;35156:7;:5;:7::i;:::-;-1:-1:-1;;;;;35137:18:0;;;35165:7;35137:36;:18;:36;:::i;:::-;24526:1;35012:169;:::o;9809:91::-;9880:12;;9809:91;:::o;28592:229::-;28749:4;28696;28006:22;28020:7;28006:13;:22::i;:::-;27998:31;;;;;;28727:2;28006:22;28020:7;28006:13;:22::i;:::-;27998:31;;;;;;28778:35;28797:4;28803:2;28807:5;28778:18;:35::i;:::-;28771:42;28592:229;-1:-1:-1;;;;;;28592:229:0:o;35494:20::-;;;;;;:::o;8156:83::-;8222:9;;;;8156:83;:::o;21227:167::-;19853:7;;21318:4;;19853:7;;19852:8;19844:37;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;;;;21342:44;21366:7;21375:10;21342:23;:44::i;28244:125::-;28329:9;;:32;;;-1:-1:-1;;;28329:32:0;;-1:-1:-1;;;;;28329:32:0;;;;;;;;;28305:4;;28329:9;;;;;:23;;:32;;;;;;;;;;;;;;;:9;:32;;;5:2:-1;;;;30:1;27;20:12;5:2;28329:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28329:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28329:32:0;;28244:125;-1:-1:-1;;28244:125:0:o;20407:118::-;17792:20;17801:10;17792:8;:20::i;:::-;17784:81;;;;-1:-1:-1;;;17784:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20052:7;;;;20044:40;;;;;-1:-1:-1;;;20044:40:0;;;;;;;;;;;;-1:-1:-1;;;20044:40:0;;;;;;;;;;;;;;;20466:7;:15;;-1:-1:-1;;20466:15:0;;;20497:20;;;20506:10;20497:20;;;;;;;;;;;;;20407:118::o;28829:130::-;28906:4;28893:2;28006:22;28020:7;28006:13;:22::i;:::-;27998:31;;;;;;28930:21;28941:2;28945:5;28930:10;:21::i;:::-;28923:28;28829:130;-1:-1:-1;;;;28829:130:0:o;27247:92::-;26438:20;26447:10;26438:8;:20::i;:::-;26430:29;;;;;;27307:24;27313:10;27325:5;27307;:24::i;:::-;27247:92;:::o;26487:109::-;26543:4;26567:21;:8;26580:7;26567:21;:12;:21;:::i;:::-;26560:28;26487:109;-1:-1:-1;;26487:109:0:o;17893:::-;17949:4;17973:21;:8;17986:7;17973:21;:12;:21;:::i;19616:78::-;19679:7;;;;19616:78;:::o;29025:164::-;26438:20;26447:10;26438:8;:20::i;:::-;26430:29;;;;;;29141:4;28118:22;28132:7;28118:13;:22::i;:::-;28117:23;28109:32;;;;;;29163:18;29169:4;29175:5;29163;:18::i;:::-;26470:1;29025:164;;:::o;18110:77::-;18154:25;18168:10;18154:13;:25::i;:::-;18110:77::o;35463:24::-;;;;;;;;;;;;;;;-1:-1:-1;;35463:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9963:110::-;-1:-1:-1;;;;;10047:18:0;10020:7;10047:18;;;:9;:18;;;;;;;9963:110::o;25068:140::-;24469:9;:7;:9::i;:::-;24461:54;;;;;-1:-1:-1;;;24461:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24461:54:0;;;;;;;;;;;;;;;25151:6;;25130:40;;25167:1;;-1:-1:-1;;;;;25151:6:0;;25130:40;;25167:1;;25130:40;25181:6;:19;;-1:-1:-1;;;;;;25181:19:0;;;25068:140::o;27347:108::-;26438:20;26447:10;26438:8;:20::i;:::-;26430:29;;;;;;27425:22;27435:4;27441:5;27425:9;:22::i;18010:92::-;17792:20;17801:10;17792:8;:20::i;:::-;17784:81;;;;-1:-1:-1;;;17784:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18075:19;18086:7;18075:10;:19::i;20196:116::-;17792:20;17801:10;17792:8;:20::i;:::-;17784:81;;;;-1:-1:-1;;;17784:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19853:7;;;;19852:8;19844:37;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;;;;20256:7;:14;;-1:-1:-1;;20256:14:0;20266:4;20256:14;;;20286:18;;;20293:10;20286:18;;;;;;;;;;;;;20196:116::o;27790:147::-;24469:9;:7;:9::i;:::-;24461:54;;;;;-1:-1:-1;;;24461:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24461:54:0;;;;;;;;;;;;;;;27863:9;:22;;-1:-1:-1;;;;;;27863:22:0;-1:-1:-1;;;;;27863:22:0;;;;;;;;27901:28;;;;-1:-1:-1;;27901:28:0;27790:147;:::o;24257:79::-;24322:6;;-1:-1:-1;;;;;24322:6:0;24257:79;:::o;24623:92::-;24701:6;;-1:-1:-1;;;;;24701:6:0;24687:10;:20;;24623:92::o;27754:27::-;;;-1:-1:-1;;;;;27754:27:0;;:::o;7500:87::-;7572:7;7565:14;;;;;;;;-1:-1:-1;;7565:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7539:13;;7565:14;;7572:7;;7565:14;;7572:7;7565:14;;;;;;;;;;;;;;;;;;;;;;;;22219:92;22001:20;22010:10;22001:8;:20::i;:::-;21993:81;;;;-1:-1:-1;;;21993:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22284:19;22295:7;22284:10;:19::i;22319:77::-;22363:25;22377:10;22363:13;:25::i;29612:104::-;24469:9;:7;:9::i;:::-;24461:54;;;;;-1:-1:-1;;;24461:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24461:54:0;;;;;;;;;;;;;;;29666:42;;:10;;29694:4;29686:21;29666:42;;;;;;;;;29686:21;29666:10;:42;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;21402:177:0;19853:7;;21498:4;;19853:7;;19852:8;19844:37;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;;;;21522:49;21546:7;21555:15;21522:23;:49::i;28377:207::-;28522:4;28463:10;28006:22;28020:7;28006:13;:22::i;:::-;27998:31;;;;;;28500:2;28006:22;28020:7;28006:13;:22::i;:::-;27998:31;;;;;;28551:25;28566:2;28570:5;28551:14;:25::i;:::-;28544:32;28377:207;-1:-1:-1;;;;;28377:207:0:o;22102:109::-;22158:4;22182:21;:8;22195:7;22182:21;:12;:21;:::i;10505:134::-;-1:-1:-1;;;;;10604:18:0;;;10577:7;10604:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10505:134::o;26704:77::-;26748:25;26762:10;26748:13;:25::i;25363:109::-;24469:9;:7;:9::i;:::-;24461:54;;;;;-1:-1:-1;;;24461:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24461:54:0;;;;;;;;;;;;;;;25436:28;25455:8;25436:18;:28::i;26604:92::-;26438:20;26447:10;26438:8;:20::i;:::-;26430:29;;;;;;26669:19;26680:7;26669:10;:19::i;10786:148::-;10851:4;10868:36;10877:10;10889:7;10898:5;10868:8;:36::i;:::-;-1:-1:-1;10922:4:0;10786:148;;;;:::o;31433:176::-;31542:58;;;-1:-1:-1;;;;;31542:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;31542:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;31516:85:0;;31535:5;;31516:18;:85::i;20911:160::-;19853:7;;21004:4;;19853:7;;19852:8;19844:37;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;;;;21028:35;21047:4;21053:2;21057:5;21028:18;:35::i;12070:206::-;12176:10;12150:4;12197:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12197:32:0;;;;;;;;;;12150:4;;12167:79;;12188:7;;12197:48;;12234:10;12197:48;:36;:48;:::i;:::-;12167:8;:79::i;23200:143::-;23274:4;22001:20;22010:10;22001:8;:20::i;:::-;21993:81;;;;-1:-1:-1;;;21993:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23291:22;23297:7;23306:6;23291:5;:22::i;14835:306::-;-1:-1:-1;;;;;14910:21:0;;14902:67;;;;-1:-1:-1;;;14902:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14997:12;;:23;;15014:5;14997:23;:16;:23;:::i;:::-;14982:12;:38;-1:-1:-1;;;;;15052:18:0;;;;;;:9;:18;;;;;;:29;;15075:5;15052:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;15031:18:0;;;;;;:9;:18;;;;;;;;:50;;;;15097:36;;;;;;;15031:18;;15097:36;;;;;;;;;;;14835:306;;:::o;17167:203::-;17239:4;-1:-1:-1;;;;;17264:21:0;;17256:68;;;;-1:-1:-1;;;17256:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17342:20:0;:11;:20;;;;;;;;;;;;;;;17167:203::o;18325:130::-;18385:24;:8;18401:7;18385:24;:15;:24;:::i;:::-;18425:22;;-1:-1:-1;;;;;18425:22:0;;;;;;;;18325:130;:::o;16101:188::-;16173:22;16179:7;16188:6;16173:5;:22::i;:::-;-1:-1:-1;;;;;16236:20:0;;;;;;:11;:20;;;;;;;;16224:10;16236:32;;;;;;;;;16206:75;;16215:7;;16236:44;;16273:6;16236:44;:36;:44;:::i;18195:122::-;18252:21;:8;18265:7;18252:21;:12;:21;:::i;:::-;18289:20;;-1:-1:-1;;;;;18289:20:0;;;;;;;;18195:122;:::o;22404:::-;22461:21;:8;22474:7;22461:21;:12;:21;:::i;:::-;22498:20;;-1:-1:-1;;;;;22498:20:0;;;;;;;;22404:122;:::o;22534:130::-;22594:24;:8;22610:7;22594:24;:15;:24;:::i;:::-;22634:22;;-1:-1:-1;;;;;22634:22:0;;;;;;;;22534:130;:::o;12779:216::-;12890:10;12864:4;12911:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12911:32:0;;;;;;;;;;12864:4;;12881:84;;12902:7;;12911:53;;12948:15;12911:53;:36;:53;:::i;20771:132::-;19853:7;;20846:4;;19853:7;;19852:8;19844:37;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;-1:-1:-1;;;19844:37:0;;;;;;;;;;;;;;;20870:25;20885:2;20889:5;20870:14;:25::i;26919:130::-;26979:24;:8;26995:7;26979:24;:15;:24;:::i;:::-;27019:22;;-1:-1:-1;;;;;27019:22:0;;;;;;;;26919:130;:::o;25578:229::-;-1:-1:-1;;;;;25652:22:0;;25644:73;;;;-1:-1:-1;;;25644:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25754:6;;25733:38;;-1:-1:-1;;;;;25733:38:0;;;;25754:6;;25733:38;;25754:6;;25733:38;25782:6;:17;;-1:-1:-1;;;;;;25782:17:0;-1:-1:-1;;;;;25782:17:0;;;;;;;;;;25578:229::o;26789:122::-;26846:21;:8;26859:7;26846:21;:12;:21;:::i;:::-;26883:20;;-1:-1:-1;;;;;26883:20:0;;;;;;;;26789:122;:::o;15581:335::-;-1:-1:-1;;;;;15674:19:0;;15666:68;;;;-1:-1:-1;;;15666:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15753:21:0;;15745:68;;;;-1:-1:-1;;;15745:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15826:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;15877:31;;;;;;;;;;;;;;;;;15581:335;;;:::o;33427:1114::-;34031:27;34039:5;-1:-1:-1;;;;;34031:25:0;;:27::i;:::-;34023:71;;;;;-1:-1:-1;;;34023:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34168:12;34182:23;34217:5;-1:-1:-1;;;;;34209:19:0;34229:4;34209:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;34209:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;34167:67:0;;;;34253:7;34245:52;;;;;-1:-1:-1;;;34245:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34314:17;;:21;34310:224;;34456:10;34445:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34445:30:0;34437:85;;;;-1:-1:-1;;;34437:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33427:1114;;;;:::o;11405:256::-;11494:4;11511:36;11521:6;11529:9;11540:6;11511:9;:36::i;:::-;-1:-1:-1;;;;;11587:19:0;;;;;;:11;:19;;;;;;;;11575:10;11587:31;;;;;;;;;11558:73;;11567:6;;11587:43;;11623:6;11587:43;:35;:43;:::i;11558:73::-;-1:-1:-1;11649:4:0;11405:256;;;;;:::o;921:181::-;979:7;1011:5;;;1035:6;;;;1027:46;;;;;-1:-1:-1;;;1027:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;14195:308;-1:-1:-1;;;;;14271:21:0;;14263:65;;;;;-1:-1:-1;;;14263:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14356:12;;:24;;14373:6;14356:24;:16;:24;:::i;:::-;14341:12;:39;-1:-1:-1;;;;;14412:18:0;;;;;;:9;:18;;;;;;:30;;14435:6;14412:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;14391:18:0;;;;;;:9;:18;;;;;;;;:51;;;;14458:37;;;;;;;14391:18;;;;14458:37;;;;;;;;;;14195:308;;:::o;1377:184::-;1435:7;1468:1;1463;:6;;1455:49;;;;;-1:-1:-1;;;1455:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1527:5:0;;;1377:184::o;16889:183::-;16969:18;16973:4;16979:7;16969:3;:18::i;:::-;16961:64;;;;-1:-1:-1;;;16961:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17036:20:0;17059:5;17036:20;;;;;;;;;;;:28;;-1:-1:-1;;17036:28:0;;;16889:183::o;16631:178::-;16709:18;16713:4;16719:7;16709:3;:18::i;:::-;16708:19;16700:63;;;;;-1:-1:-1;;;16700:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16774:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16774:27:0;16797:4;16774:27;;;16631:178::o;10286:156::-;10355:4;10372:40;10382:10;10394:9;10405:6;10372:9;:40::i;30343:422::-;30710:20;30749:8;;;30343:422::o;13485:429::-;-1:-1:-1;;;;;13583:20:0;;13575:70;;;;-1:-1:-1;;;13575:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13664:23:0;;13656:71;;;;-1:-1:-1;;;13656:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13760:17:0;;;;;;:9;:17;;;;;;:29;;13782:6;13760:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;13740:17:0;;;;;;;:9;:17;;;;;;:49;;;;13823:20;;;;;;;:32;;13848:6;13823:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;13800:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;13871:35;;;;;;;13800:20;;13871:35;;;;;;;;;;;;;13485:429;;;:::o

Swarm Source

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