AVAX Price: $35.66 (+0.19%)
Gas: 1.9 nAVAX
 

Overview

Max Total Supply

4,930,000,000 XETA

Holders

14,041

Market

Price

$0.008 @ 0.000226 AVAX

Onchain Market Cap

$39,647,066.41

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 XETA

Value
$0.00
0x039Ac6fBCEbF02B54259bC690e13540693D9eb8D
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

XANA is AI driven web 3.0 infrastructure custom-built for the Metaverse. Broadly Adopted by major institutions, local governments, and global brands

Market

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

Contract Source Code Verified (Exact Match)

Contract Name:
XETA

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at snowscan.xyz on 2022-07-17
*/

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

pragma solidity ^0.5.0;

/**
 * @dev Extension of `ERC20` that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

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

// 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/Token.sol

pragma solidity ^0.5.0;

contract XETA is ERC20, ERC20Detailed, ERC20Burnable, ERC20Pausable, Ownable {

    string private _name = "XANA";
    string private constant _symbol = "XETA";
    uint   private constant _numTokens = 5000000000;
    uint256 public limit;
    address private allMintedAddress;

    /*
    Events
    */
    event ChangeTransferLimit(uint256 limitNum);


    /*
    Modifiers
    */

    //following modifier to limit control for specific token supply 
    modifier limitCheck(uint256 value) {
        require(msg.sender != allMintedAddress || limit >= value, "Xeta: limit reached for vesting" );
        _;
    }

    //following modifier to check minimum limit by owner 
    modifier minLimit(uint256 _limit) {
        require(_limit >= 10000, "Xeta: Less than minimum limit" );
        _;
    }

    constructor (address to) public ERC20Detailed(_name, _symbol, 18) {
        require(to!=address(0),"Null Address");
        _mint(to, _numTokens * (10 ** uint256(decimals()))); 
        limit = 10000 * (10 ** uint256(decimals())); //seting up default limit 
        allMintedAddress = to;
    }

    /*
    Functions
    */

    //transfer function with pauseable functionality
    function transfer(address to, uint256 value) public limitCheck(value) whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }
    //transferFrom function with pauseable functionality
    function transferFrom(address from, address to, uint256 value) public limitCheck(value) whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function changeTransferLimit(uint256 _limit) onlyOwner external {
        limit = _limit * (10 ** uint256(decimals()));
        emit ChangeTransferLimit(_limit);
    }
    
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_limit","type":"uint256"}],"name":"changeTransferLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"limit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"to","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"limitNum","type":"uint256"}],"name":"ChangeTransferLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60c0604052600460808190527f58414e410000000000000000000000000000000000000000000000000000000060a090815262000040916008919062000640565b503480156200004e57600080fd5b5060405160208062002051833981018060405260208110156200007057600080fd5b50516008805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015620000fc5780601f10620000d057610100808354040283529160200191620000fc565b820191906000526020600020905b815481529060010190602001808311620000de57829003601f168201915b50505050506040805190810160405280600481526020017f5845544100000000000000000000000000000000000000000000000000000000815250601282600390805190602001906200015192919062000640565b5081516200016790600490602085019062000640565b506005805460ff191660ff929092169190911790555062000193905033640100000000620002e0810204565b60078054600160a860020a0319166101003381029190911791829055604051600160a060020a039190920416906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600160a060020a03811615156200026057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4e756c6c20416464726573730000000000000000000000000000000000000000604482015290519081900360640190fd5b6200029a816200027864010000000062000332810204565b60ff16600a0a64012a05f200026200033c640100000000026401000000009004565b620002ad64010000000062000332810204565b60ff16600a90810a612710026009558054600160a060020a031916600160a060020a0392909216919091179055620006e2565b620002fb600682640100000000620016c26200045d82021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60055460ff165b90565b600160a060020a0382161515620003b457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254620003d190826401000000006200155d6200050482021704565b600255600160a060020a0382166000908152602081905260409020546200040790826401000000006200155d6200050482021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b62000472828264010000000062000580810204565b15620004df57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200057957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600160a060020a03821615156200062057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200068357805160ff1916838001178555620006b3565b82800160010185558215620006b3579182015b82811115620006b357825182559160200191906001019062000696565b50620006c1929150620006c5565b5090565b6200033991905b80821115620006c15760008155600101620006cc565b61195f80620006f26000396000f3fe6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d757806318160ddd146102245780631a7c0d461461024b57806323b872dd14610277578063313ce567146102ba57806339509351146102e55780633f4ba83a1461031e57806342966c681461033357806346fbf68e1461035d5780635c975abb146103905780636ef8d66d146103a557806370a08231146103ba578063715018a6146103ed57806379cc67901461040257806382dc1ec41461043b5780638456cb591461046e5780638da5cb5b146104835780638f32d59b146104b457806395d89b41146104c9578063a457c2d7146104de578063a4d66daf14610517578063a9059cbb1461052c578063dd62ed3e14610565578063f2fde38b146105a0575b600080fd5b34801561015957600080fd5b506101626105d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019c578181015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e357600080fd5b50610210600480360360408110156101fa57600080fd5b50600160a060020a038135169060200135610669565b604080519115158252519081900360200190f35b34801561023057600080fd5b506102396106c6565b60408051918252519081900360200190f35b34801561025757600080fd5b506102756004803603602081101561026e57600080fd5b50356106cc565b005b34801561028357600080fd5b506102106004803603606081101561029a57600080fd5b50600160a060020a03813581169160208101359091169060400135610773565b3480156102c657600080fd5b506102cf610847565b6040805160ff9092168252519081900360200190f35b3480156102f157600080fd5b506102106004803603604081101561030857600080fd5b50600160a060020a038135169060200135610850565b34801561032a57600080fd5b506102756108a6565b34801561033f57600080fd5b506102756004803603602081101561035657600080fd5b50356109c6565b34801561036957600080fd5b506102106004803603602081101561038057600080fd5b5035600160a060020a03166109d3565b34801561039c57600080fd5b506102106109ec565b3480156103b157600080fd5b506102756109f5565b3480156103c657600080fd5b50610239600480360360208110156103dd57600080fd5b5035600160a060020a0316610a00565b3480156103f957600080fd5b50610275610a1b565b34801561040e57600080fd5b506102756004803603604081101561042557600080fd5b50600160a060020a038135169060200135610ad6565b34801561044757600080fd5b506102756004803603602081101561045e57600080fd5b5035600160a060020a0316610ae4565b34801561047a57600080fd5b50610275610b72565b34801561048f57600080fd5b50610498610c82565b60408051600160a060020a039092168252519081900360200190f35b3480156104c057600080fd5b50610210610c96565b3480156104d557600080fd5b50610162610cac565b3480156104ea57600080fd5b506102106004803603604081101561050157600080fd5b50600160a060020a038135169060200135610d0d565b34801561052357600080fd5b50610239610d63565b34801561053857600080fd5b506102106004803603604081101561054f57600080fd5b50600160a060020a038135169060200135610d69565b34801561057157600080fd5b506102396004803603604081101561058857600080fd5b50600160a060020a0381358116916020013516610e3b565b3480156105ac57600080fd5b50610275600480360360208110156105c357600080fd5b5035600160a060020a0316610e66565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b60075460009060ff16156106b5576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383610ecd565b9392505050565b60025490565b6106d4610c96565b151561072a576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610732610847565b60ff16600a0a81026009556040805182815290517fccf3ab3331a0c9bc6cfd66181bf76c047d3d45352dda1a60c90acce5820fe96c9181900360200190a150565b600a546000908290600160a060020a03163314158061079457508060095410155b15156107ea576040805160e560020a62461bcd02815260206004820152601f60248201527f586574613a206c696d6974207265616368656420666f722076657374696e6700604482015290519081900360640190fd5b60075460ff1615610833576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b61083e858585610ee3565b95945050505050565b60055460ff1690565b60075460009060ff161561089c576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383610f3a565b6108af336109d3565b151561092b576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff161515610987576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6109d03382610f7b565b50565b60006109e660068363ffffffff61109516565b92915050565b60075460ff1690565b6109fe3361113d565b565b600160a060020a031660009081526020819052604090205490565b610a23610c96565b1515610a79576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6007546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36007805474ffffffffffffffffffffffffffffffffffffffff0019169055565b610ae08282611185565b5050565b610aed336109d3565b1515610b69576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6109d0816111ca565b610b7b336109d3565b1515610bf7576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff1615610c40576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6007546101009004600160a060020a031690565b6007546101009004600160a060020a0316331490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b60075460009060ff1615610d59576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383611212565b60095481565b600a546000908290600160a060020a031633141580610d8a57508060095410155b1515610de0576040805160e560020a62461bcd02815260206004820152601f60248201527f586574613a206c696d6974207265616368656420666f722076657374696e6700604482015290519081900360640190fd5b60075460ff1615610e29576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b610e33848461124e565b949350505050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610e6e610c96565b1515610ec4576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109d0816112a4565b6000610eda33848461139e565b50600192915050565b60075460009060ff1615610f2f576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b610e3384848461150b565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610eda918590610f76908663ffffffff61155d16565b61139e565b600160a060020a0382161515611001576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600254611014908263ffffffff6115ba16565b600255600160a060020a038216600090815260208190526040902054611040908263ffffffff6115ba16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216151561111d576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b61114e60068263ffffffff61161a16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61118f8282610f7b565b600160a060020a038216600090815260016020908152604080832033808552925290912054610ae0918491610f76908563ffffffff6115ba16565b6111db60068263ffffffff6116c216565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610eda918590610f76908663ffffffff6115ba16565b60075460009060ff161561129a576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383611746565b600160a060020a038116151561132a576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600754604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360078054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600160a060020a0383161515611423576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156114a9576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061151884848461174f565b600160a060020a038416600090815260016020908152604080832033808552925290912054611553918691610f76908663ffffffff6115ba16565b5060019392505050565b6000828201838110156106bf576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082821115611614576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6116248282611095565b15156116a0576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6116cc8282611095565b15611721576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000610eda3384845b600160a060020a03831615156117d5576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038216151561185b576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054611884908263ffffffff6115ba16565b600160a060020a0380851660009081526020819052604080822093909355908416815220546118b9908263ffffffff61155d16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a7230582016f97618dc36d66a10f83705a00950be9166647de9c2c68bc9ec2721a306b4400029000000000000000000000000293f855862e9e9024e45e819a16c30a64d5561f5

Deployed Bytecode

0x6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d757806318160ddd146102245780631a7c0d461461024b57806323b872dd14610277578063313ce567146102ba57806339509351146102e55780633f4ba83a1461031e57806342966c681461033357806346fbf68e1461035d5780635c975abb146103905780636ef8d66d146103a557806370a08231146103ba578063715018a6146103ed57806379cc67901461040257806382dc1ec41461043b5780638456cb591461046e5780638da5cb5b146104835780638f32d59b146104b457806395d89b41146104c9578063a457c2d7146104de578063a4d66daf14610517578063a9059cbb1461052c578063dd62ed3e14610565578063f2fde38b146105a0575b600080fd5b34801561015957600080fd5b506101626105d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019c578181015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101e357600080fd5b50610210600480360360408110156101fa57600080fd5b50600160a060020a038135169060200135610669565b604080519115158252519081900360200190f35b34801561023057600080fd5b506102396106c6565b60408051918252519081900360200190f35b34801561025757600080fd5b506102756004803603602081101561026e57600080fd5b50356106cc565b005b34801561028357600080fd5b506102106004803603606081101561029a57600080fd5b50600160a060020a03813581169160208101359091169060400135610773565b3480156102c657600080fd5b506102cf610847565b6040805160ff9092168252519081900360200190f35b3480156102f157600080fd5b506102106004803603604081101561030857600080fd5b50600160a060020a038135169060200135610850565b34801561032a57600080fd5b506102756108a6565b34801561033f57600080fd5b506102756004803603602081101561035657600080fd5b50356109c6565b34801561036957600080fd5b506102106004803603602081101561038057600080fd5b5035600160a060020a03166109d3565b34801561039c57600080fd5b506102106109ec565b3480156103b157600080fd5b506102756109f5565b3480156103c657600080fd5b50610239600480360360208110156103dd57600080fd5b5035600160a060020a0316610a00565b3480156103f957600080fd5b50610275610a1b565b34801561040e57600080fd5b506102756004803603604081101561042557600080fd5b50600160a060020a038135169060200135610ad6565b34801561044757600080fd5b506102756004803603602081101561045e57600080fd5b5035600160a060020a0316610ae4565b34801561047a57600080fd5b50610275610b72565b34801561048f57600080fd5b50610498610c82565b60408051600160a060020a039092168252519081900360200190f35b3480156104c057600080fd5b50610210610c96565b3480156104d557600080fd5b50610162610cac565b3480156104ea57600080fd5b506102106004803603604081101561050157600080fd5b50600160a060020a038135169060200135610d0d565b34801561052357600080fd5b50610239610d63565b34801561053857600080fd5b506102106004803603604081101561054f57600080fd5b50600160a060020a038135169060200135610d69565b34801561057157600080fd5b506102396004803603604081101561058857600080fd5b50600160a060020a0381358116916020013516610e3b565b3480156105ac57600080fd5b50610275600480360360208110156105c357600080fd5b5035600160a060020a0316610e66565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b60075460009060ff16156106b5576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383610ecd565b9392505050565b60025490565b6106d4610c96565b151561072a576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610732610847565b60ff16600a0a81026009556040805182815290517fccf3ab3331a0c9bc6cfd66181bf76c047d3d45352dda1a60c90acce5820fe96c9181900360200190a150565b600a546000908290600160a060020a03163314158061079457508060095410155b15156107ea576040805160e560020a62461bcd02815260206004820152601f60248201527f586574613a206c696d6974207265616368656420666f722076657374696e6700604482015290519081900360640190fd5b60075460ff1615610833576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b61083e858585610ee3565b95945050505050565b60055460ff1690565b60075460009060ff161561089c576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383610f3a565b6108af336109d3565b151561092b576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff161515610987576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6109d03382610f7b565b50565b60006109e660068363ffffffff61109516565b92915050565b60075460ff1690565b6109fe3361113d565b565b600160a060020a031660009081526020819052604090205490565b610a23610c96565b1515610a79576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6007546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36007805474ffffffffffffffffffffffffffffffffffffffff0019169055565b610ae08282611185565b5050565b610aed336109d3565b1515610b69576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6109d0816111ca565b610b7b336109d3565b1515610bf7576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff1615610c40576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6007546101009004600160a060020a031690565b6007546101009004600160a060020a0316331490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065f5780601f106106345761010080835404028352916020019161065f565b60075460009060ff1615610d59576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383611212565b60095481565b600a546000908290600160a060020a031633141580610d8a57508060095410155b1515610de0576040805160e560020a62461bcd02815260206004820152601f60248201527f586574613a206c696d6974207265616368656420666f722076657374696e6700604482015290519081900360640190fd5b60075460ff1615610e29576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b610e33848461124e565b949350505050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610e6e610c96565b1515610ec4576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109d0816112a4565b6000610eda33848461139e565b50600192915050565b60075460009060ff1615610f2f576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b610e3384848461150b565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610eda918590610f76908663ffffffff61155d16565b61139e565b600160a060020a0382161515611001576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600254611014908263ffffffff6115ba16565b600255600160a060020a038216600090815260208190526040902054611040908263ffffffff6115ba16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216151561111d576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b61114e60068263ffffffff61161a16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61118f8282610f7b565b600160a060020a038216600090815260016020908152604080832033808552925290912054610ae0918491610f76908563ffffffff6115ba16565b6111db60068263ffffffff6116c216565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610eda918590610f76908663ffffffff6115ba16565b60075460009060ff161561129a576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611914833981519152604482015290519081900360640190fd5b6106bf8383611746565b600160a060020a038116151561132a576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600754604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360078054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600160a060020a0383161515611423576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156114a9576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061151884848461174f565b600160a060020a038416600090815260016020908152604080832033808552925290912054611553918691610f76908663ffffffff6115ba16565b5060019392505050565b6000828201838110156106bf576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082821115611614576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6116248282611095565b15156116a0576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6116cc8282611095565b15611721576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000610eda3384845b600160a060020a03831615156117d5576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038216151561185b576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054611884908263ffffffff6115ba16565b600160a060020a0380851660009081526020819052604080822093909355908416815220546118b9908263ffffffff61155d16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a7230582016f97618dc36d66a10f83705a00950be9166647de9c2c68bc9ec2721a306b4400029

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

000000000000000000000000293f855862e9e9024e45e819a16c30a64d5561f5

-----Decoded View---------------
Arg [0] : to (address): 0x293f855862E9E9024e45e819A16C30A64d5561F5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000293f855862e9e9024e45e819a16c30a64d5561f5


Deployed Bytecode Sourcemap

24746:1806:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15277:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15277:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;15277:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21002:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21002:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21002:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8072:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8072:91:0;;;;;;;;;;;;;;;;;;;;26373:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26373:170:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26373:170:0;;;;;26187:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26187:178:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26187:178:0;;;;;;;;;;;;;;;;;;16135:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16135:83:0;;;;;;;;;;;;;;;;;;;;;;;21150:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21150:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21150:167:0;;;;;;;;;20332:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20332:118:0;;;;21970:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21970:81:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21970:81:0;;;17820:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17820:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17820:109:0;-1:-1:-1;;;;;17820:109:0;;;19541:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19541:78:0;;;;18037:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18037:77:0;;;;8226:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8226:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8226:110:0;-1:-1:-1;;;;;8226:110:0;;;23941:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23941:140:0;;;;22113:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22113:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22113:103:0;;;;;;;;;17937:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17937:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17937:92:0;-1:-1:-1;;;;;17937:92:0;;;20121:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20121:116:0;;;;23130:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23130:79:0;;;;;;;;-1:-1:-1;;;;;23130:79:0;;;;;;;;;;;;;;23496:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23496:92:0;;;;15479:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15479:87:0;;;;21325:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21325:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21325:177:0;;;;;;;;;24969:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24969:20:0;;;;25973:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25973:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25973:150:0;;;;;;;;;8768:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8768:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8768:134:0;;;;;;;;;;;24236:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24236:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24236:109:0;-1:-1:-1;;;;;24236:109:0;;;15277:83;15347:5;15340:12;;;;;;;;-1:-1:-1;;15340:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15314:13;;15340:12;;15347:5;;15340:12;;15347:5;15340:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15277:83;:::o;21002:140::-;19778:7;;21081:4;;19778:7;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;21105:29;21119:7;21128:5;21105:13;:29::i;:::-;21098:36;21002:140;-1:-1:-1;;;21002:140:0:o;8072:91::-;8143:12;;8072:91;:::o;26373:170::-;23342:9;:7;:9::i;:::-;23334:54;;;;;;;-1:-1:-1;;;;;23334:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26480:10;:8;:10::i;:::-;26472:19;;26466:2;:25;26456:36;;26448:5;:44;26508:27;;;;;;;;;;;;;;;;;26373:170;:::o;26187:178::-;25290:16;;26298:4;;26268:5;;-1:-1:-1;;;;;25290:16:0;25276:10;:30;;;:48;;;25319:5;25310;;:14;;25276:48;25268:93;;;;;;;-1:-1:-1;;;;;25268:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19778:7;;;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;26322:35;26341:4;26347:2;26351:5;26322:18;:35::i;:::-;26315:42;26187:178;-1:-1:-1;;;;;26187:178:0:o;16135:83::-;16201:9;;;;16135:83;:::o;21150:167::-;19778:7;;21241:4;;19778:7;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;21265:44;21289:7;21298:10;21265:23;:44::i;20332:118::-;17719:20;17728:10;17719:8;:20::i;:::-;17711:81;;;;;;;-1:-1:-1;;;;;17711:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19977:7;;;;19969:40;;;;;;;-1:-1:-1;;;;;19969:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20391:7;:15;;-1:-1:-1;;20391:15:0;;;20422:20;;;20431:10;20422:20;;;;;;;;;;;;;20332:118::o;21970:81::-;22018:25;22024:10;22036:6;22018:5;:25::i;:::-;21970:81;:::o;17820:109::-;17876:4;17900:21;:8;17913:7;17900:21;:12;:21;:::i;:::-;17893:28;17820:109;-1:-1:-1;;17820:109:0:o;19541:78::-;19604:7;;;;19541:78;:::o;18037:77::-;18081:25;18095:10;18081:13;:25::i;:::-;18037:77::o;8226:110::-;-1:-1:-1;;;;;8310:18:0;8283:7;8310:18;;;;;;;;;;;;8226:110::o;23941:140::-;23342:9;:7;:9::i;:::-;23334:54;;;;;;;-1:-1:-1;;;;;23334:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24024:6;;24003:40;;24040:1;;24024:6;;;-1:-1:-1;;;;;24024:6:0;;24003:40;;24040:1;;24003:40;24054:6;:19;;-1:-1:-1;;24054:19:0;;;23941:140::o;22113:103::-;22182:26;22192:7;22201:6;22182:9;:26::i;:::-;22113:103;;:::o;17937:92::-;17719:20;17728:10;17719:8;:20::i;:::-;17711:81;;;;;;;-1:-1:-1;;;;;17711:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18002:19;18013:7;18002:10;:19::i;20121:116::-;17719:20;17728:10;17719:8;:20::i;:::-;17711:81;;;;;;;-1:-1:-1;;;;;17711:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19778:7;;;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;20181:7;:14;;-1:-1:-1;;20181:14:0;20191:4;20181:14;;;20211:18;;;20218:10;20211:18;;;;;;;;;;;;;20121:116::o;23130:79::-;23195:6;;;;;-1:-1:-1;;;;;23195:6:0;;23130:79::o;23496:92::-;23574:6;;;;;-1:-1:-1;;;;;23574:6:0;23560:10;:20;;23496:92::o;15479:87::-;15551:7;15544:14;;;;;;;;-1:-1:-1;;15544:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15518:13;;15544:14;;15551:7;;15544:14;;15551:7;15544:14;;;;;;;;;;;;;;;;;;;;;;;;21325:177;19778:7;;21421:4;;19778:7;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;21445:49;21469:7;21478:15;21445:23;:49::i;24969:20::-;;;;:::o;25973:150::-;25290:16;;26066:4;;26036:5;;-1:-1:-1;;;;;25290:16:0;25276:10;:30;;;:48;;;25319:5;25310;;:14;;25276:48;25268:93;;;;;;;-1:-1:-1;;;;;25268:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19778:7;;;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;26090:25;26105:2;26109:5;26090:14;:25::i;:::-;26083:32;25973:150;-1:-1:-1;;;;25973:150:0:o;8768:134::-;-1:-1:-1;;;;;8867:18:0;;;8840:7;8867:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8768:134::o;24236:109::-;23342:9;:7;:9::i;:::-;23334:54;;;;;;;-1:-1:-1;;;;;23334:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24309:28;24328:8;24309:18;:28::i;9049:148::-;9114:4;9131:36;9140:10;9152:7;9161:5;9131:8;:36::i;:::-;-1:-1:-1;9185:4:0;9049:148;;;;:::o;20834:160::-;19778:7;;20927:4;;19778:7;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;20951:35;20970:4;20976:2;20980:5;20951:18;:35::i;10333:206::-;10439:10;10413:4;10460:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10460:32:0;;;;;;;;;;10413:4;;10430:79;;10451:7;;10460:48;;10497:10;10460:48;:36;:48;:::i;:::-;10430:8;:79::i;13098:306::-;-1:-1:-1;;;;;13173:21:0;;;;13165:67;;;;;-1:-1:-1;;;;;13165:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13260:12;;:23;;13277:5;13260:23;:16;:23;:::i;:::-;13245:12;:38;-1:-1:-1;;;;;13315:18:0;;:9;:18;;;;;;;;;;;:29;;13338:5;13315:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13294:18:0;;:9;:18;;;;;;;;;;;:50;;;;13360:36;;;;;;;13294:9;;13360:36;;;;;;;;;;;13098:306;;:::o;17096:203::-;17168:4;-1:-1:-1;;;;;17193:21:0;;;;17185:68;;;;;-1:-1:-1;;;;;17185:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17271:20:0;:11;:20;;;;;;;;;;;;;;;17096:203::o;18252:130::-;18312:24;:8;18328:7;18312:24;:15;:24;:::i;:::-;18352:22;;-1:-1:-1;;;;;18352:22:0;;;;;;;;18252:130;:::o;14364:188::-;14436:22;14442:7;14451:6;14436:5;:22::i;:::-;-1:-1:-1;;;;;14499:20:0;;;;;;:11;:20;;;;;;;;14487:10;14499:32;;;;;;;;;14469:75;;14478:7;;14499:44;;14536:6;14499:44;:36;:44;:::i;18122:122::-;18179:21;:8;18192:7;18179:21;:12;:21;:::i;:::-;18216:20;;-1:-1:-1;;;;;18216:20:0;;;;;;;;18122:122;:::o;11042:216::-;11153:10;11127:4;11174:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11174:32:0;;;;;;;;;;11127:4;;11144:84;;11165:7;;11174:53;;11211:15;11174:53;:36;:53;:::i;20694:132::-;19778:7;;20769:4;;19778:7;;19777:8;19769:37;;;;;-1:-1:-1;;;;;19769:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19769:37:0;;;;;;;;;;;;;;;20793:25;20808:2;20812:5;20793:14;:25::i;24451:229::-;-1:-1:-1;;;;;24525:22:0;;;;24517:73;;;;;-1:-1:-1;;;;;24517:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24627:6;;24606:38;;-1:-1:-1;;;;;24606:38:0;;;;24627:6;;;;;24606:38;;;;;24655:6;:17;;-1:-1:-1;;;;;24655:17:0;;;;;-1:-1:-1;;24655:17:0;;;;;;;;;24451:229::o;13844:335::-;-1:-1:-1;;;;;13937:19:0;;;;13929:68;;;;;-1:-1:-1;;;;;13929:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14016:21:0;;;;14008:68;;;;;-1:-1:-1;;;;;14008:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14089:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14140:31;;;;;;;;;;;;;;;;;13844:335;;;:::o;9668:256::-;9757:4;9774:36;9784:6;9792:9;9803:6;9774:9;:36::i;:::-;-1:-1:-1;;;;;9850:19:0;;;;;;:11;:19;;;;;;;;9838:10;9850:31;;;;;;;;;9821:73;;9830:6;;9850:43;;9886:6;9850:43;:35;:43;:::i;9821:73::-;-1:-1:-1;9912:4:0;9668:256;;;;;:::o;3733:181::-;3791:7;3823:5;;;3847:6;;;;3839:46;;;;;-1:-1:-1;;;;;3839:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4189:184;4247:7;4275:6;;;;4267:49;;;;;-1:-1:-1;;;;;4267:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4339:5:0;;;4189:184::o;16818:183::-;16898:18;16902:4;16908:7;16898:3;:18::i;:::-;16890:64;;;;;;;-1:-1:-1;;;;;16890:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16965:20:0;16988:5;16965:20;;;;;;;;;;;:28;;-1:-1:-1;;16965:28:0;;;16818:183::o;16560:178::-;16638:18;16642:4;16648:7;16638:3;:18::i;:::-;16637:19;16629:63;;;;;-1:-1:-1;;;;;16629:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16703:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16703:27:0;16726:4;16703:27;;;16560:178::o;8549:156::-;8618:4;8635:40;8645:10;8657:9;8668:6;11748:429;-1:-1:-1;;;;;11846:20:0;;;;11838:70;;;;;-1:-1:-1;;;;;11838:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11927:23:0;;;;11919:71;;;;;-1:-1:-1;;;;;11919:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12023:17:0;;:9;:17;;;;;;;;;;;:29;;12045:6;12023:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12003:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12086:20;;;;;;;:32;;12111:6;12086:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12063:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12134:35;;;;;;;12063:20;;12134:35;;;;;;;;;;;;;11748:429;;;:::o

Swarm Source

bzzr://16f97618dc36d66a10f83705a00950be9166647de9c2c68bc9ec2721a306b440
[ 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.