ETH Price: $3,160.23 (-2.98%)
Gas: 5 Gwei

Token

Sensorium (SENSO)
 

Overview

Max Total Supply

5,915,280,000 SENSO

Holders

3,955 (0.00%)

Total Transfers

-

Market

Price

$0.08 @ 0.000024 ETH (+1.29%)

Onchain Market Cap

$453,364,805.04

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 0 Decimals)

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

OVERVIEW

Sensorium aims to bridge the quintessence of new technologies with community of users to form the social environment of the future.

Market

Volume (24H):$182,920.00
Market Capitalization:$0.00
Circulating Supply:0.00 SENSO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

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

Contract Name:
SENSOToken

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-03-30
*/

// 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/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/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/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/token/ERC20/ERC20Capped.sol

pragma solidity ^0.5.0;


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

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

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

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

// File: 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: contracts/SENSOToken.sol

pragma solidity 0.5.11;



contract SENSOToken is ERC20Capped, ERC20Pausable {

    string public symbol = "SENSO";
    string public name = "Sensorium";

    /**
     * @dev Emission constants, constraints:
     * tokenCapAmount = closedSaleAmount +
     *                  tokensaleAmount +
     *                  reserveAmount
     */

    uint256 public constant tokenCapAmount =   7692000000;
    uint256 public constant closedSaleAmount = 2000000000;
    uint256 public constant tokensaleAmount =  3000000000;

    // holds amount of total frozen tokens for cap checks
    uint256 public totalFrozenTokens;

    /**
     * @dev Admins wallets, used to override pause limitations
     */

    address public closedSaleWallet;
    address public tokensaleWallet;

    constructor ( address _closedSaleWallet, address _tokenSaleWallet)
        public ERC20Capped(tokenCapAmount) ERC20Pausable()
    {
        closedSaleWallet = _closedSaleWallet;
        tokensaleWallet = _tokenSaleWallet;

        mint(_closedSaleWallet,  closedSaleAmount);

        pause();
    }


    /**
     * @dev closedSaleWallet and tokensaleWallet can ignore pause
     */

    modifier whenNotPaused() {
        require(msg.sender == closedSaleWallet ||
            msg.sender == tokensaleWallet ||
            !paused(), "Pausable: paused");
        _;
    }

    function mint(address account, uint256 amount, uint256 frozenAmount) public onlyMinter returns (bool) {
        _mint(account, amount, frozenAmount);
        return true;
    }

    /**
     * @dev See `ERC20Mintable.mint`.
     *
     * Requirements:
     *
     * - `value` must not cause the total supply to go over the cap.
     * @param account wallet that will receive tokens
     * @param value amount of tokens to be minted
     * @param frozenValue number of tokens to be counted for freezing
     */
    function _mint(address account, uint256 value, uint256 frozenValue) internal {
        // case: minting `value` tokens taking into account that some amount will be frozen
        // if `frozenValue == 0`, this is unfreezing operation
        // we do not have to do this check again
        if (frozenValue != 0) {
            require(totalSupply().add(totalFrozenTokens).add(value).add(frozenValue) <= cap(), "ERC20Capped: cap exceeded");
            totalFrozenTokens = totalFrozenTokens.add(frozenValue);
        }
        super._mint(account, value);
    }

    /**
     * Reduces the value of frozen tokens counter
     *
     * @param unfrozenValue amount of tokens to be unfrozen
     */
    function unfreezeTokens(uint256 unfrozenValue) public onlyMinter returns (bool) {
        totalFrozenTokens = totalFrozenTokens.sub(unfrozenValue);
        return true;
    }

}

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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"frozenAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokensaleWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"totalFrozenTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenCapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"closedSaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":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":[{"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":[],"name":"tokensaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closedSaleWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"unfrozenValue","type":"uint256"}],"name":"unfreezeTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_closedSaleWallet","type":"address"},{"internalType":"address","name":"_tokenSaleWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"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":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"}]

60c0604052600560808190527f53454e534f00000000000000000000000000000000000000000000000000000060a090815262000040916007919062000825565b506040805180820190915260098082527f53656e736f7269756d00000000000000000000000000000000000000000000006020909201918252620000879160089162000825565b503480156200009557600080fd5b506040516200202d3803806200202d83398181016040526040811015620000bb57600080fd5b5080516020909101516401ca7a9b00620000de336001600160e01b03620001d416565b600081116200014e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b60045562000165336001600160e01b036200022616565b6006805460ff19169055600a80546001600160a01b038085166001600160a01b031992831617909255600b805492841692909116919091179055620001b88263773594006001600160e01b036200027816565b50620001cc6001600160e01b036200030316565b5050620008c7565b620001ef8160036200045c60201b620014ed1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620002418160056200045c60201b620014ed1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60006200028e336001600160e01b036200050316565b620002e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018062001fdb6030913960400191505060405180910390fd5b620002fa83836001600160e01b036200052616565b50600192915050565b62000317336001600160e01b03620005de16565b6200036e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018062001fab6030913960400191505060405180910390fd5b600a546001600160a01b0316331480620003925750600b546001600160a01b031633145b80620003ae5750620003ac6001600160e01b03620005fb16565b155b6200041a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6006805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6200047182826001600160e01b036200060516565b15620004de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000620005208260036200060560201b62000ee11790919060201c565b92915050565b6004546200055582620005416001600160e01b036200068816565b6200068e60201b620011fa1790919060201c565b1115620005c357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b620005da82826200070a60201b620013961760201c565b5050565b6000620005208260056200060560201b62000ee11790919060201c565b60065460ff165b90565b60006001600160a01b03821662000668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806200200b6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b60025490565b6000828201838110156200070357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166200078057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200079c816002546200068e60201b620011fa1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007cf918390620011fa6200068e821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200086857805160ff191683800117855562000898565b8280016001018555821562000898579182015b82811115620008985782518255916020019190600101906200087b565b50620008a6929150620008aa565b5090565b6200060291905b80821115620008a65760008155600101620008b1565b6116d480620008d76000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636ef8d66d1161010457806398650275116100a2578063b86c1f3411610071578063b86c1f34146104f7578063bf1c8016146104ff578063dd62ed3e14610507578063e7827e8514610535576101cf565b80639865027514610471578063a457c2d714610479578063a9059cbb146104a5578063aa271e1a146104d1576101cf565b806382dc1ec4116100de57806382dc1ec4146104155780638456cb591461043b57806395d89b4114610443578063983b2d561461044b576101cf565b80636ef8d66d146103df57806370a08231146103e7578063785605781461040d576101cf565b8063395093511161017157806346fbf68e1161014b57806346fbf68e146103a15780634969a01e146103c75780635be4d800146103cf5780635c975abb146103d7576101cf565b8063395093511461033f5780633f4ba83a1461036b57806340c10f1914610375576101cf565b806318160ddd116101ad57806318160ddd146102c357806323b872dd146102dd57806331bf066714610313578063355274ea14610337576101cf565b806306fdde03146101d4578063095ea7b314610251578063156e29f614610291575b600080fd5b6101dc610552565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356105e0565b604080519115158252519081900360200190f35b61027d600480360360608110156102a757600080fd5b506001600160a01b03813516906020810135906040013561066b565b6102cb6106c6565b60408051918252519081900360200190f35b61027d600480360360608110156102f357600080fd5b506001600160a01b038135811691602081013590911690604001356106cc565b61031b610759565b604080516001600160a01b039092168252519081900360200190f35b6102cb610768565b61027d6004803603604081101561035557600080fd5b506001600160a01b03813516906020013561076e565b6103736107f2565b005b61027d6004803603604081101561038b57600080fd5b506001600160a01b0381351690602001356108c3565b61027d600480360360208110156103b757600080fd5b50356001600160a01b031661091c565b6102cb610935565b6102cb61093b565b61027d610944565b61037361094d565b6102cb600480360360208110156103fd57600080fd5b50356001600160a01b0316610958565b6102cb610973565b6103736004803603602081101561042b57600080fd5b50356001600160a01b031661097b565b6103736109cb565b6101dc610ac8565b6103736004803603602081101561046157600080fd5b50356001600160a01b0316610b23565b610373610b70565b61027d6004803603604081101561048f57600080fd5b506001600160a01b038135169060200135610b79565b61027d600480360360408110156104bb57600080fd5b506001600160a01b038135169060200135610bfd565b61027d600480360360208110156104e757600080fd5b50356001600160a01b0316610c81565b6102cb610c94565b61031b610c9c565b6102cb6004803603604081101561051d57600080fd5b506001600160a01b0381358116916020013516610cab565b61027d6004803603602081101561054b57600080fd5b5035610cd6565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b505050505081565b600a546000906001600160a01b03163314806106065750600b546001600160a01b031633145b806106165750610614610944565b155b61065a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106648383610d3a565b9392505050565b600061067633610c81565b6106b15760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b6106bc848484610d47565b5060019392505050565b60025490565b600a546000906001600160a01b03163314806106f25750600b546001600160a01b031633145b806107025750610700610944565b155b610746576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610751848484610dec565b949350505050565b600b546001600160a01b031681565b60045490565b600a546000906001600160a01b03163314806107945750600b546001600160a01b031633145b806107a457506107a2610944565b155b6107e8576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106648383610e39565b6107fb3361091c565b6108365760405162461bcd60e51b81526004018080602001828103825260308152602001806115926030913960400191505060405180910390fd5b60065460ff16610884576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006108ce33610c81565b6109095760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b6109138383610e75565b50600192915050565b600061092f60058363ffffffff610ee116565b92915050565b60095481565b6401ca7a9b0081565b60065460ff1690565b61095633610f48565b565b6001600160a01b031660009081526020819052604090205490565b637735940081565b6109843361091c565b6109bf5760405162461bcd60e51b81526004018080602001828103825260308152602001806115926030913960400191505060405180910390fd5b6109c881610f90565b50565b6109d43361091c565b610a0f5760405162461bcd60e51b81526004018080602001828103825260308152602001806115926030913960400191505060405180910390fd5b600a546001600160a01b0316331480610a325750600b546001600160a01b031633145b80610a425750610a40610944565b155b610a86576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b610b2c33610c81565b610b675760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b6109c881610fd8565b61095633611020565b600a546000906001600160a01b0316331480610b9f5750600b546001600160a01b031633145b80610baf5750610bad610944565b155b610bf3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106648383611068565b600a546000906001600160a01b0316331480610c235750600b546001600160a01b031633145b80610c335750610c31610944565b155b610c77576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61066483836110a4565b600061092f60038363ffffffff610ee116565b63b2d05e0081565b600a546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610ce133610c81565b610d1c5760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b600954610d2f908363ffffffff6110b116565b600955506001919050565b600061091333848461110e565b8015610ddd57610d55610768565b610d7782610d6b85610d6b600954610d6b6106c6565b9063ffffffff6111fa16565b1115610dc6576040805162461bcd60e51b8152602060048201526019602482015278115490cc8c10d85c1c19590e8818d85c08195e18d959591959603a1b604482015290519081900360640190fd5b600954610dd9908263ffffffff6111fa16565b6009555b610de78383610e75565b505050565b6000610df9848484611254565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546106bc918691610e34908663ffffffff6110b116565b61110e565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610913918590610e34908663ffffffff6111fa16565b600454610e8482610d6b6106c6565b1115610ed3576040805162461bcd60e51b8152602060048201526019602482015278115490cc8c10d85c1c19590e8818d85c08195e18d959591959603a1b604482015290519081900360640190fd5b610edd8282611396565b5050565b60006001600160a01b038216610f285760405162461bcd60e51b81526004018080602001828103825260228152602001806116356022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610f5960058263ffffffff61148616565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610fa160058263ffffffff6114ed16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610fe960038263ffffffff6114ed16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61103160038263ffffffff61148616565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610913918590610e34908663ffffffff6110b116565b6000610913338484611254565b600082821115611108576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b0383166111535760405162461bcd60e51b815260040180806020018281038252602481526020018061167c6024913960400191505060405180910390fd5b6001600160a01b0382166111985760405162461bcd60e51b81526004018080602001828103825260228152602001806115c26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610664576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166112995760405162461bcd60e51b81526004018080602001828103825260258152602001806116576025913960400191505060405180910390fd5b6001600160a01b0382166112de5760405162461bcd60e51b815260040180806020018281038252602381526020018061156f6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611307908263ffffffff6110b116565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461133c908263ffffffff6111fa16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166113f1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611404908263ffffffff6111fa16565b6002556001600160a01b038216600090815260208190526040902054611430908263ffffffff6111fa16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6114908282610ee1565b6114cb5760405162461bcd60e51b81526004018080602001828103825260218152602001806116146021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6114f78282610ee1565b15611549576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820f7166001d92e4497488d4450ece7eb6e028075038b9cffea8ddf19161bc2dfef64736f6c634300050b0032506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000545f1bb26f47980ecb56831a683a9f9919dbc96b000000000000000000000000e8b9424dec1231f687165dec4d0dc289c15319a9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636ef8d66d1161010457806398650275116100a2578063b86c1f3411610071578063b86c1f34146104f7578063bf1c8016146104ff578063dd62ed3e14610507578063e7827e8514610535576101cf565b80639865027514610471578063a457c2d714610479578063a9059cbb146104a5578063aa271e1a146104d1576101cf565b806382dc1ec4116100de57806382dc1ec4146104155780638456cb591461043b57806395d89b4114610443578063983b2d561461044b576101cf565b80636ef8d66d146103df57806370a08231146103e7578063785605781461040d576101cf565b8063395093511161017157806346fbf68e1161014b57806346fbf68e146103a15780634969a01e146103c75780635be4d800146103cf5780635c975abb146103d7576101cf565b8063395093511461033f5780633f4ba83a1461036b57806340c10f1914610375576101cf565b806318160ddd116101ad57806318160ddd146102c357806323b872dd146102dd57806331bf066714610313578063355274ea14610337576101cf565b806306fdde03146101d4578063095ea7b314610251578063156e29f614610291575b600080fd5b6101dc610552565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356105e0565b604080519115158252519081900360200190f35b61027d600480360360608110156102a757600080fd5b506001600160a01b03813516906020810135906040013561066b565b6102cb6106c6565b60408051918252519081900360200190f35b61027d600480360360608110156102f357600080fd5b506001600160a01b038135811691602081013590911690604001356106cc565b61031b610759565b604080516001600160a01b039092168252519081900360200190f35b6102cb610768565b61027d6004803603604081101561035557600080fd5b506001600160a01b03813516906020013561076e565b6103736107f2565b005b61027d6004803603604081101561038b57600080fd5b506001600160a01b0381351690602001356108c3565b61027d600480360360208110156103b757600080fd5b50356001600160a01b031661091c565b6102cb610935565b6102cb61093b565b61027d610944565b61037361094d565b6102cb600480360360208110156103fd57600080fd5b50356001600160a01b0316610958565b6102cb610973565b6103736004803603602081101561042b57600080fd5b50356001600160a01b031661097b565b6103736109cb565b6101dc610ac8565b6103736004803603602081101561046157600080fd5b50356001600160a01b0316610b23565b610373610b70565b61027d6004803603604081101561048f57600080fd5b506001600160a01b038135169060200135610b79565b61027d600480360360408110156104bb57600080fd5b506001600160a01b038135169060200135610bfd565b61027d600480360360208110156104e757600080fd5b50356001600160a01b0316610c81565b6102cb610c94565b61031b610c9c565b6102cb6004803603604081101561051d57600080fd5b506001600160a01b0381358116916020013516610cab565b61027d6004803603602081101561054b57600080fd5b5035610cd6565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b505050505081565b600a546000906001600160a01b03163314806106065750600b546001600160a01b031633145b806106165750610614610944565b155b61065a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106648383610d3a565b9392505050565b600061067633610c81565b6106b15760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b6106bc848484610d47565b5060019392505050565b60025490565b600a546000906001600160a01b03163314806106f25750600b546001600160a01b031633145b806107025750610700610944565b155b610746576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610751848484610dec565b949350505050565b600b546001600160a01b031681565b60045490565b600a546000906001600160a01b03163314806107945750600b546001600160a01b031633145b806107a457506107a2610944565b155b6107e8576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106648383610e39565b6107fb3361091c565b6108365760405162461bcd60e51b81526004018080602001828103825260308152602001806115926030913960400191505060405180910390fd5b60065460ff16610884576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006108ce33610c81565b6109095760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b6109138383610e75565b50600192915050565b600061092f60058363ffffffff610ee116565b92915050565b60095481565b6401ca7a9b0081565b60065460ff1690565b61095633610f48565b565b6001600160a01b031660009081526020819052604090205490565b637735940081565b6109843361091c565b6109bf5760405162461bcd60e51b81526004018080602001828103825260308152602001806115926030913960400191505060405180910390fd5b6109c881610f90565b50565b6109d43361091c565b610a0f5760405162461bcd60e51b81526004018080602001828103825260308152602001806115926030913960400191505060405180910390fd5b600a546001600160a01b0316331480610a325750600b546001600160a01b031633145b80610a425750610a40610944565b155b610a86576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d85780601f106105ad576101008083540402835291602001916105d8565b610b2c33610c81565b610b675760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b6109c881610fd8565b61095633611020565b600a546000906001600160a01b0316331480610b9f5750600b546001600160a01b031633145b80610baf5750610bad610944565b155b610bf3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106648383611068565b600a546000906001600160a01b0316331480610c235750600b546001600160a01b031633145b80610c335750610c31610944565b155b610c77576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61066483836110a4565b600061092f60038363ffffffff610ee116565b63b2d05e0081565b600a546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610ce133610c81565b610d1c5760405162461bcd60e51b81526004018080602001828103825260308152602001806115e46030913960400191505060405180910390fd5b600954610d2f908363ffffffff6110b116565b600955506001919050565b600061091333848461110e565b8015610ddd57610d55610768565b610d7782610d6b85610d6b600954610d6b6106c6565b9063ffffffff6111fa16565b1115610dc6576040805162461bcd60e51b8152602060048201526019602482015278115490cc8c10d85c1c19590e8818d85c08195e18d959591959603a1b604482015290519081900360640190fd5b600954610dd9908263ffffffff6111fa16565b6009555b610de78383610e75565b505050565b6000610df9848484611254565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546106bc918691610e34908663ffffffff6110b116565b61110e565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610913918590610e34908663ffffffff6111fa16565b600454610e8482610d6b6106c6565b1115610ed3576040805162461bcd60e51b8152602060048201526019602482015278115490cc8c10d85c1c19590e8818d85c08195e18d959591959603a1b604482015290519081900360640190fd5b610edd8282611396565b5050565b60006001600160a01b038216610f285760405162461bcd60e51b81526004018080602001828103825260228152602001806116356022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610f5960058263ffffffff61148616565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610fa160058263ffffffff6114ed16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610fe960038263ffffffff6114ed16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61103160038263ffffffff61148616565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610913918590610e34908663ffffffff6110b116565b6000610913338484611254565b600082821115611108576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b0383166111535760405162461bcd60e51b815260040180806020018281038252602481526020018061167c6024913960400191505060405180910390fd5b6001600160a01b0382166111985760405162461bcd60e51b81526004018080602001828103825260228152602001806115c26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610664576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166112995760405162461bcd60e51b81526004018080602001828103825260258152602001806116576025913960400191505060405180910390fd5b6001600160a01b0382166112de5760405162461bcd60e51b815260040180806020018281038252602381526020018061156f6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611307908263ffffffff6110b116565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461133c908263ffffffff6111fa16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166113f1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611404908263ffffffff6111fa16565b6002556001600160a01b038216600090815260208190526040902054611430908263ffffffff6111fa16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6114908282610ee1565b6114cb5760405162461bcd60e51b81526004018080602001828103825260218152602001806116146021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6114f78282610ee1565b15611549576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820f7166001d92e4497488d4450ece7eb6e028075038b9cffea8ddf19161bc2dfef64736f6c634300050b0032

Deployed Bytecode Sourcemap

22788:2797:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22788:2797:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22884:32;;;:::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;22884:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22213:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22213:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24159:179;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24159:179:0;;;;;;;;;;;;;:::i;8141:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;22045:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22045:160:0;;;;;;;;;;;;;;;;;:::i;23521:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23521:30:0;;;;;;;;;;;;;;18073:75;;;:::i;22361:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22361:167:0;;;;;;;;:::i;21541:118::-;;;:::i;:::-;;17323:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17323:143:0;;;;;;;;:::i;19027:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19027:109:0;-1:-1:-1;;;;;19027:109:0;;:::i;23358:32::-;;;:::i;23117:53::-;;;:::i;20750:78::-;;;:::i;19244:77::-;;;:::i;8295:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8295:110:0;-1:-1:-1;;;;;8295:110:0;;:::i;23177:53::-;;;:::i;19144:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19144:92:0;-1:-1:-1;;;;;19144:92:0;;:::i;21330:116::-;;;:::i;22847:30::-;;;:::i;16342:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16342:92:0;-1:-1:-1;;;;;16342:92:0;;:::i;16442:77::-;;;:::i;22536:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22536:177:0;;;;;;;;:::i;21905:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21905:132:0;;;;;;;;:::i;16225:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16225:109:0;-1:-1:-1;;;;;16225:109:0;;:::i;23237:53::-;;;:::i;23483:31::-;;;:::i;8837:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8837:134:0;;;;;;;;;;:::i;25403:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25403:177:0;;:::i;22884:32::-;;;;;;;;;;;;;;;-1:-1:-1;;22884:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22213:140::-;24022:16;;22292:4;;-1:-1:-1;;;;;24022:16:0;24008:10;:30;;:76;;-1:-1:-1;24069:15:0;;-1:-1:-1;;;;;24069:15:0;24055:10;:29;24008:76;:102;;;;24102:8;:6;:8::i;:::-;24101:9;24008:102;24000:131;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;;;;22316:29;22330:7;22339:5;22316:13;:29::i;:::-;22309:36;22213:140;-1:-1:-1;;;22213:140:0:o;24159:179::-;24255:4;16124:20;16133:10;16124:8;:20::i;:::-;16116:81;;;;-1:-1:-1;;;16116:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24272:36;24278:7;24287:6;24295:12;24272:5;:36::i;:::-;-1:-1:-1;24326:4:0;24159:179;;;;;:::o;8141:91::-;8212:12;;8141:91;:::o;22045:160::-;24022:16;;22138:4;;-1:-1:-1;;;;;24022:16:0;24008:10;:30;;:76;;-1:-1:-1;24069:15:0;;-1:-1:-1;;;;;24069:15:0;24055:10;:29;24008:76;:102;;;;24102:8;:6;:8::i;:::-;24101:9;24008:102;24000:131;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;;;;22162:35;22181:4;22187:2;22191:5;22162:18;:35::i;:::-;22155:42;22045:160;-1:-1:-1;;;;22045:160:0:o;23521:30::-;;;-1:-1:-1;;;;;23521:30:0;;:::o;18073:75::-;18136:4;;18073:75;:::o;22361:167::-;24022:16;;22452:4;;-1:-1:-1;;;;;24022:16:0;24008:10;:30;;:76;;-1:-1:-1;24069:15:0;;-1:-1:-1;;;;;24069:15:0;24055:10;:29;24008:76;:102;;;;24102:8;:6;:8::i;:::-;24101:9;24008:102;24000:131;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;;;;22476:44;22500:7;22509:10;22476:23;:44::i;21541:118::-;18926:20;18935:10;18926:8;:20::i;:::-;18918:81;;;;-1:-1:-1;;;18918:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21186:7;;;;21178:40;;;;;-1:-1:-1;;;21178:40:0;;;;;;;;;;;;-1:-1:-1;;;21178:40:0;;;;;;;;;;;;;;;21600:7;:15;;-1:-1:-1;;21600:15:0;;;21631:20;;;21640:10;21631:20;;;;;;;;;;;;;21541:118::o;17323:143::-;17397:4;16124:20;16133:10;16124:8;:20::i;:::-;16116:81;;;;-1:-1:-1;;;16116:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17414:22;17420:7;17429:6;17414:5;:22::i;:::-;-1:-1:-1;17454:4:0;17323:143;;;;:::o;19027:109::-;19083:4;19107:21;:8;19120:7;19107:21;:12;:21;:::i;:::-;19100:28;19027:109;-1:-1:-1;;19027:109:0:o;23358:32::-;;;;:::o;23117:53::-;23160:10;23117:53;:::o;20750:78::-;20813:7;;;;20750:78;:::o;19244:77::-;19288:25;19302:10;19288:13;:25::i;:::-;19244:77::o;8295:110::-;-1:-1:-1;;;;;8379:18:0;8352:7;8379:18;;;;;;;;;;;;8295:110::o;23177:53::-;23220:10;23177:53;:::o;19144:92::-;18926:20;18935:10;18926:8;:20::i;:::-;18918:81;;;;-1:-1:-1;;;18918:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19209:19;19220:7;19209:10;:19::i;:::-;19144:92;:::o;21330:116::-;18926:20;18935:10;18926:8;:20::i;:::-;18918:81;;;;-1:-1:-1;;;18918:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24022:16;;-1:-1:-1;;;;;24022:16:0;24008:10;:30;;:76;;-1:-1:-1;24069:15:0;;-1:-1:-1;;;;;24069:15:0;24055:10;:29;24008:76;:102;;;;24102:8;:6;:8::i;:::-;24101:9;24008:102;24000:131;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;;;;21390:7;:14;;-1:-1:-1;;21390:14:0;21400:4;21390:14;;;21420:18;;;21427:10;21420:18;;;;;;;;;;;;;21330:116::o;22847:30::-;;;;;;;;;;;;;;;-1:-1:-1;;22847:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16342:92;16124:20;16133:10;16124:8;:20::i;:::-;16116:81;;;;-1:-1:-1;;;16116:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16407:19;16418:7;16407:10;:19::i;16442:77::-;16486:25;16500:10;16486:13;:25::i;22536:177::-;24022:16;;22632:4;;-1:-1:-1;;;;;24022:16:0;24008:10;:30;;:76;;-1:-1:-1;24069:15:0;;-1:-1:-1;;;;;24069:15:0;24055:10;:29;24008:76;:102;;;;24102:8;:6;:8::i;:::-;24101:9;24008:102;24000:131;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;;;;22656:49;22680:7;22689:15;22656:23;:49::i;21905:132::-;24022:16;;21980:4;;-1:-1:-1;;;;;24022:16:0;24008:10;:30;;:76;;-1:-1:-1;24069:15:0;;-1:-1:-1;;;;;24069:15:0;24055:10;:29;24008:76;:102;;;;24102:8;:6;:8::i;:::-;24101:9;24008:102;24000:131;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;-1:-1:-1;;;24000:131:0;;;;;;;;;;;;;;;22004:25;22019:2;22023:5;22004:14;:25::i;16225:109::-;16281:4;16305:21;:8;16318:7;16305:21;:12;:21;:::i;23237:53::-;23280:10;23237:53;:::o;23483:31::-;;;-1:-1:-1;;;;;23483:31:0;;:::o;8837:134::-;-1:-1:-1;;;;;8936:18:0;;;8909:7;8936:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8837:134::o;25403:177::-;25477:4;16124:20;16133:10;16124:8;:20::i;:::-;16116:81;;;;-1:-1:-1;;;16116:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25514:17;;:36;;25536:13;25514:36;:21;:36;:::i;:::-;25494:17;:56;-1:-1:-1;25568:4:0;25403:177;;;:::o;9118:148::-;9183:4;9200:36;9209:10;9221:7;9230:5;9200:8;:36::i;24688:569::-;24987:16;;24983:229;;25096:5;:3;:5::i;:::-;25028:64;25080:11;25028:47;25069:5;25028:36;25046:17;;25028:13;:11;:13::i;:::-;:17;:36;:17;:36;:::i;:64::-;:73;;25020:111;;;;;-1:-1:-1;;;25020:111:0;;;;;;;;;;;;-1:-1:-1;;;25020:111:0;;;;;;;;;;;;;;;25166:17;;:34;;25188:11;25166:34;:21;:34;:::i;:::-;25146:17;:54;24983:229;25222:27;25234:7;25243:5;25222:11;:27::i;:::-;24688:569;;;:::o;9737:256::-;9826:4;9843:36;9853:6;9861:9;9872:6;9843:9;:36::i;:::-;-1:-1:-1;;;;;9919:19:0;;;;;;:11;:19;;;;;;;;9907:10;9919:31;;;;;;;;;9890:73;;9899:6;;9919:43;;9955:6;9919:43;:35;:43;:::i;:::-;9890:8;:73::i;10402:206::-;10508:10;10482:4;10529:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10529:32:0;;;;;;;;;;10482:4;;10499:79;;10520:7;;10529:48;;10566:10;10529:48;:36;:48;:::i;18321:183::-;18424:4;;18396:24;18414:5;18396:13;:11;:13::i;:24::-;:32;;18388:70;;;;;-1:-1:-1;;;18388:70:0;;;;;;;;;;;;-1:-1:-1;;;18388:70:0;;;;;;;;;;;;;;;18469:27;18481:7;18490:5;18469:11;:27::i;:::-;18321:183;;:::o;15499:203::-;15571:4;-1:-1:-1;;;;;15596:21:0;;15588:68;;;;-1:-1:-1;;;15588:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15674:20:0;:11;:20;;;;;;;;;;;;;;;15499:203::o;19459:130::-;19519:24;:8;19535:7;19519:24;:15;:24;:::i;:::-;19559:22;;-1:-1:-1;;;;;19559:22:0;;;;;;;;19459:130;:::o;19329:122::-;19386:21;:8;19399:7;19386:21;:12;:21;:::i;:::-;19423:20;;-1:-1:-1;;;;;19423:20:0;;;;;;;;19329:122;:::o;16527:::-;16584:21;:8;16597:7;16584:21;:12;:21;:::i;:::-;16621:20;;-1:-1:-1;;;;;16621:20:0;;;;;;;;16527:122;:::o;16657:130::-;16717:24;:8;16733:7;16717:24;:15;:24;:::i;:::-;16757:22;;-1:-1:-1;;;;;16757:22:0;;;;;;;;16657:130;:::o;11111:216::-;11222:10;11196:4;11243:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11243:32:0;;;;;;;;;;11196:4;;11213:84;;11234:7;;11243:53;;11280:15;11243:53;:36;:53;:::i;8618:156::-;8687:4;8704:40;8714:10;8726:9;8737:6;8704:9;:40::i;4256:184::-;4314:7;4347:1;4342;:6;;4334:49;;;;;-1:-1:-1;;;4334:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4406:5:0;;;4256:184::o;13913:335::-;-1:-1:-1;;;;;14006:19:0;;13998:68;;;;-1:-1:-1;;;13998:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14085:21:0;;14077:68;;;;-1:-1:-1;;;14077:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14158:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14209:31;;;;;;;;;;;;;;;;;13913:335;;;:::o;3800:181::-;3858:7;3890:5;;;3914:6;;;;3906:46;;;;;-1:-1:-1;;;3906:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;11817:429;-1:-1:-1;;;;;11915:20:0;;11907:70;;;;-1:-1:-1;;;11907:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11996:23:0;;11988:71;;;;-1:-1:-1;;;11988:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12092:17:0;;:9;:17;;;;;;;;;;;:29;;12114:6;12092:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12072:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12155:20;;;;;;;:32;;12180:6;12155:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12132:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12203:35;;;;;;;12132:20;;12203:35;;;;;;;;;;;;;11817:429;;;:::o;12527:308::-;-1:-1:-1;;;;;12603:21:0;;12595:65;;;;;-1:-1:-1;;;12595:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12688:12;;:24;;12705:6;12688:24;:16;:24;:::i;:::-;12673:12;:39;-1:-1:-1;;;;;12744:18:0;;:9;:18;;;;;;;;;;;:30;;12767:6;12744:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12723:18:0;;:9;:18;;;;;;;;;;;:51;;;;12790:37;;;;;;;12723:18;;:9;;12790:37;;;;;;;;;;12527:308;;:::o;15221:183::-;15301:18;15305:4;15311:7;15301:3;:18::i;:::-;15293:64;;;;-1:-1:-1;;;15293:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15368:20:0;15391:5;15368:20;;;;;;;;;;;:28;;-1:-1:-1;;15368:28:0;;;15221:183::o;14963:178::-;15041:18;15045:4;15051:7;15041:3;:18::i;:::-;15040:19;15032:63;;;;;-1:-1:-1;;;15032:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15106:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;15106:27:0;15129:4;15106:27;;;14963:178::o

Swarm Source

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