ETH Price: $2,980.43 (+2.07%)
Gas: 2 Gwei

Token

CocosToken (COCOS)
 

Overview

Max Total Supply

100,000,000,000 COCOS

Holders

14,024 (0.00%)

Market

Price

$0.48 @ 0.000163 ETH (+5.01%)

Onchain Market Cap

$48,485,000,000.00

Circulating Supply Market Cap

$34,464,023.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
673.57999999999997 COCOS

Value
$326.59 ( ~0.109578275724324 Eth) [0.0000%]
0xa2efba31b962ae130c4ea9446ef09a080e4129db
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The platform for the next generation of digital game economy.

Profitability / Loss

Since Initial Offer Price
:$0.02 2008.04%

Market

Volume (24H):$5,891,147.00
Market Capitalization:$34,464,023.00
Circulating Supply:71,051,748.00 COCOS
Market Data Source: Coinmarketcap

ICO Information

ICO Start Date : Mar 01, 2019 
ICO End Date : Aug 31, 2019
ICO Price  : $0.023
Raised : $36,700,000

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CocosToken

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 Etherscan.io on 2019-08-14
*/

// 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; ^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; ^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; ^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; ^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; ^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; ^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/ownership/Ownable.sol

// pragma solidity ^0.5.0; ^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/CocosToken.sol

// pragma solidity ^0.5.0; ^0.5.0;





/// @title CocosToken Contract
/// For more information about this token please visit https://cocosbcx.io
/// @author reedhong

contract CocosToken is ERC20, ERC20Detailed, Pausable, Ownable  {
    using SafeMath for uint;

    /// Constant token specific fields
    uint8 public constant DECIMALS = 18;
    uint256 public constant INITIAL_SUPPLY = 100000000000 * (10 ** uint256(DECIMALS));


    // black list
    mapping(address => uint) blackAccountMap;
    address[] public blackAccounts;

    // white list
    mapping(address => uint) whiteAccountMap;
    address[] public whiteAccounts;

    event TransferMuti(uint256 len, uint256 amount);

    event AddWhiteAccount(address indexed operator, address indexed whiteAccount);
    event AddBlackAccount(address indexed operator, address indexed blackAccount);

    event DelWhiteAccount(address indexed operator, address indexed whiteAccount);
    event DelBlackAccount(address indexed operator, address indexed blackAccount);

    modifier validAddress( address addr ) {
        require(addr != address(0x0), "address is not 0x0");
        require(addr != address(this), "address is not contract");
        _;
    }


    /**
     * CONSTRUCTOR
     *
     * @dev Initialize the Cocos Token
     */

    constructor () public ERC20Detailed("CocosToken", "COCOS", DECIMALS) {
        pause();
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function() external payable {
        revert();
    }

   function transfer(address _to, uint256 _value) public returns (bool)  {
        if (paused() == true) {
            // , only white list pass
            require(whiteAccountMap[msg.sender] != 0, "contract is in paused, only in white list can transfer");
        }
        else {
            // check black list
            require(blackAccountMap[msg.sender] == 0,"address in black list, can't transfer");
        }
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        if (paused() == true) {
            // frozen contract , only white list pass
            require(whiteAccountMap[msg.sender] != 0, "contract is in  paused, can't transfer");
            if (msg.sender != _from) {
                require(whiteAccountMap[_from] != 0, "contract is in  paused, can't transfer");
            }
        }
        else {
            // check black list
            require(blackAccountMap[msg.sender] == 0, "address in black list, can't transfer");
            if (msg.sender != _from) {
                require(blackAccountMap[_from] == 0,"address in black list, can't transfer");
            }
        }

        return super.transferFrom(_from, _to, _value);
    }

    // people will transfer cocos to contract, fix it
    function withdrawFromContract(address _to) public onlyOwner validAddress(_to) returns (bool)  {
        uint256 contractBalance = balanceOf(address(this));
        require(contractBalance > 0, "not enough balance");

        _transfer(address(this), _to, contractBalance);
        return true;
    }


    function addWhiteAccount(address _whiteAccount) public
        onlyOwner
        validAddress(_whiteAccount){
        require(whiteAccountMap[_whiteAccount]==0, "has in white list");

        uint256 index = whiteAccounts.length;
        require(index < 4294967296, "white list is too long");

        whiteAccounts.length += 1;
        whiteAccounts[index] = _whiteAccount;
        
        whiteAccountMap[_whiteAccount] = index + 1;
        emit AddWhiteAccount(msg.sender,_whiteAccount);
    }

    function delWhiteAccount(address _whiteAccount) public
        onlyOwner
        validAddress(_whiteAccount){
        require(whiteAccountMap[_whiteAccount]!=0,"not in white list");

        uint256 index = whiteAccountMap[_whiteAccount];
        if (index == whiteAccounts.length)
        {
            whiteAccounts.length -= 1;
        }else{
            address lastaddress = whiteAccounts[whiteAccounts.length-1];
            whiteAccounts[index-1] = lastaddress;
            whiteAccounts.length -= 1;
            whiteAccountMap[lastaddress] = index;
        }
        delete whiteAccountMap[_whiteAccount];
        emit DelWhiteAccount(msg.sender,_whiteAccount);
    }

    function addBlackAccount(address _blackAccount) public
        onlyOwner
        validAddress(_blackAccount){
        require(blackAccountMap[_blackAccount]==0,  "has in black list");

        uint256 index = blackAccounts.length;
        require(index < 4294967296, "black list is too long");

        blackAccounts.length += 1;
        blackAccounts[index] = _blackAccount;
        blackAccountMap[_blackAccount] = index + 1;

        emit AddBlackAccount(msg.sender, _blackAccount);
    }

    function delBlackAccount(address _blackAccount) public
        onlyOwner
        validAddress(_blackAccount){
        require(blackAccountMap[_blackAccount]!=0,"not in black list");

        uint256 index = blackAccountMap[_blackAccount];
        if (index == blackAccounts.length)
        {
            blackAccounts.length -= 1;
        }else{
            address lastaddress = blackAccounts[blackAccounts.length-1];
            blackAccounts[index-1] = lastaddress;
            blackAccounts.length -= 1;
            blackAccountMap[lastaddress] = index;
        }

        delete blackAccountMap[_blackAccount];
        emit DelBlackAccount(msg.sender, _blackAccount);
    }

}

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":"_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":true,"inputs":[{"name":"","type":"uint256"}],"name":"blackAccounts","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_blackAccount","type":"address"}],"name":"addBlackAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_blackAccount","type":"address"}],"name":"delBlackAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"whiteAccounts","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","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":"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":"_whiteAccount","type":"address"}],"name":"addWhiteAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_whiteAccount","type":"address"}],"name":"delWhiteAccount","outputs":[],"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"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"withdrawFromContract","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"len","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TransferMuti","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"whiteAccount","type":"address"}],"name":"AddWhiteAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"blackAccount","type":"address"}],"name":"AddBlackAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"whiteAccount","type":"address"}],"name":"DelWhiteAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":true,"name":"blackAccount","type":"address"}],"name":"DelBlackAccount","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"}]

60806040523480156200001157600080fd5b50604080518082018252600a81527f436f636f73546f6b656e0000000000000000000000000000000000000000000060208083019182528351808501909452600584527f434f434f5300000000000000000000000000000000000000000000000000000090840152815191929160129162000090916003919062000638565b508151620000a690600490602085019062000638565b506005805460ff191660ff9290921691909117905550620000d290503364010000000062000162810204565b60078054600160a860020a0319166101003381029190911791829055604051600160a060020a039190920416906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36200013a640100000000620001b4810204565b6200015c336c01431e0fae6d7217caa000000064010000000062000311810204565b620006dd565b6200017d600682640100000000620023316200043282021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620001c833640100000000620004d9810204565b15156200025c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff1615620002cf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b600160a060020a03821615156200038957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254620003a6908264010000000062001dc9620004fc82021704565b600255600160a060020a038216600090815260208190526040902054620003dc908264010000000062001dc9620004fc82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b62000447828264010000000062000578810204565b15620004b457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000620004f660068364010000000062001e266200057882021704565b92915050565b6000828201838110156200057157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600160a060020a03821615156200061857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200067b57805160ff1916838001178555620006ab565b82800160010185558215620006ab579182015b82811115620006ab5782518255916020019190600101906200068e565b50620006b9929150620006bd565b5090565b620006da91905b80821115620006b95760008155600101620006c4565b90565b61248880620006ed6000396000f3fe60806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610184578063095ea7b31461020e57806318160ddd1461025b57806323b872dd146102825780632e0f2625146102c55780632e3ab672146102f05780632ff2e9dc14610336578063313ce5671461034b57806331d42bf21461036057806339509351146103955780633976bd1d146103ce5780633ea42676146104015780633f4ba83a1461042b57806346fbf68e146104405780635c975abb146104735780636ef8d66d1461048857806370a082311461049d578063715018a6146104d057806382dc1ec4146104e55780638456cb59146105185780638da5cb5b1461052d5780638f32d59b1461054257806395d89b4114610557578063981417121461056c578063a457c2d71461059f578063a9059cbb146105d8578063db5009a514610611578063dd62ed3e14610644578063f2fde38b1461067f578063f3ff4961146106b2575b600080fd5b34801561019057600080fd5b506101996106e5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d35781810151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021a57600080fd5b506102476004803603604081101561023157600080fd5b50600160a060020a03813516906020013561077c565b604080519115158252519081900360200190f35b34801561026757600080fd5b50610270610792565b60408051918252519081900360200190f35b34801561028e57600080fd5b50610247600480360360608110156102a557600080fd5b50600160a060020a03813581169160208101359091169060400135610798565b3480156102d157600080fd5b506102da610a24565b6040805160ff9092168252519081900360200190f35b3480156102fc57600080fd5b5061031a6004803603602081101561031357600080fd5b5035610a29565b60408051600160a060020a039092168252519081900360200190f35b34801561034257600080fd5b50610270610a51565b34801561035757600080fd5b506102da610a62565b34801561036c57600080fd5b506103936004803603602081101561038357600080fd5b5035600160a060020a0316610a6b565b005b3480156103a157600080fd5b50610247600480360360408110156103b857600080fd5b50600160a060020a038135169060200135610cbb565b3480156103da57600080fd5b50610393600480360360208110156103f157600080fd5b5035600160a060020a0316610cfc565b34801561040d57600080fd5b5061031a6004803603602081101561042457600080fd5b5035610f80565b34801561043757600080fd5b50610393610f8e565b34801561044c57600080fd5b506102476004803603602081101561046357600080fd5b5035600160a060020a03166110ae565b34801561047f57600080fd5b506102476110c7565b34801561049457600080fd5b506103936110d0565b3480156104a957600080fd5b50610270600480360360208110156104c057600080fd5b5035600160a060020a03166110db565b3480156104dc57600080fd5b506103936110f6565b3480156104f157600080fd5b506103936004803603602081101561050857600080fd5b5035600160a060020a031661119f565b34801561052457600080fd5b50610393611230565b34801561053957600080fd5b5061031a611352565b34801561054e57600080fd5b50610247611366565b34801561056357600080fd5b5061019961137c565b34801561057857600080fd5b506103936004803603602081101561058f57600080fd5b5035600160a060020a03166113dd565b3480156105ab57600080fd5b50610247600480360360408110156105c257600080fd5b50600160a060020a03813516906020013561162d565b3480156105e457600080fd5b50610247600480360360408110156105fb57600080fd5b50600160a060020a038135169060200135611669565b34801561061d57600080fd5b506103936004803603602081101561063457600080fd5b5035600160a060020a03166117aa565b34801561065057600080fd5b506102706004803603604081101561066757600080fd5b50600160a060020a0381358116916020013516611a2e565b34801561068b57600080fd5b50610393600480360360208110156106a257600080fd5b5035600160a060020a0316611a59565b3480156106be57600080fd5b50610247600480360360208110156106d557600080fd5b5035600160a060020a0316611aae565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b505050505090505b90565b6000610789338484611c14565b50600192915050565b60025490565b60006107a26110c7565b1515600114156108e257336000908152600a60205260409020541515610838576040805160e560020a62461bcd02815260206004820152602660248201527f636f6e747261637420697320696e20207061757365642c2063616e277420747260448201527f616e736665720000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600160a060020a038516146108dd57600160a060020a0384166000908152600a602052604090205415156108dd576040805160e560020a62461bcd02815260206004820152602660248201527f636f6e747261637420697320696e20207061757365642c2063616e277420747260448201527f616e736665720000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610a11565b336000908152600860205260409020541561096d576040805160e560020a62461bcd02815260206004820152602560248201527f6164647265737320696e20626c61636b206c6973742c2063616e27742074726160448201527f6e73666572000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600160a060020a03851614610a1157600160a060020a03841660009081526008602052604090205415610a11576040805160e560020a62461bcd02815260206004820152602560248201527f6164647265737320696e20626c61636b206c6973742c2063616e27742074726160448201527f6e73666572000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610a1c848484611d81565b949350505050565b601281565b6009805482908110610a3757fe5b600091825260209091200154600160a060020a0316905081565b6c01431e0fae6d7217caa000000081565b60055460ff1690565b610a73611366565b1515610ab7576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515610b06576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415610b55576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526008602052604090205415610bc3576040805160e560020a62461bcd02815260206004820152601160248201527f68617320696e20626c61636b206c697374000000000000000000000000000000604482015290519081900360640190fd5b6009546401000000008110610c22576040805160e560020a62461bcd02815260206004820152601660248201527f626c61636b206c69737420697320746f6f206c6f6e6700000000000000000000604482015290519081900360640190fd5b6009805460010190610c3490826123b5565b5082600982815481101515610c4557fe5b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03948516179055918516808252600890925260408082206001850190555133917fc476158237ccbc15520902c2dde98207da751a8ed354f6ac5a0fc7bf6367539f91a3505050565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610789918590610cf7908663ffffffff611dc916565b611c14565b610d04611366565b1515610d48576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515610d97576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415610de6576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600860205260409020541515610e55576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f7420696e20626c61636b206c697374000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216600090815260086020526040902054600954811415610e9157600980546000190190610e8b90826123b5565b50610f39565b60098054600091906000198101908110610ea757fe5b60009182526020909120015460098054600160a060020a03909216925082916000198501908110610ed457fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055600980546000190190610f1d90826123b5565b50600160a060020a031660009081526008602052604090208190555b600160a060020a0383166000818152600860205260408082208290555133917ff5313ac47c999dc2ae75dfcccccfaf58315f81db55e56a9f484fcc9a02cc559891a3505050565b600b805482908110610a3757fe5b610f97336110ae565b1515611013576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff16151561106f576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006110c160068363ffffffff611e2616565b92915050565b60075460ff1690565b6110d933611ece565b565b600160a060020a031660009081526020819052604090205490565b6110fe611366565b1515611142576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b6007546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36007805474ffffffffffffffffffffffffffffffffffffffff0019169055565b6111a8336110ae565b1515611224576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61122d81611f16565b50565b611239336110ae565b15156112b5576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff1615611310576040805160e560020a62461bcd02815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6007546101009004600160a060020a031690565b6007546101009004600160a060020a0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b6113e5611366565b1515611429576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515611478576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a0381163014156114c7576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600a602052604090205415611535576040805160e560020a62461bcd02815260206004820152601160248201527f68617320696e207768697465206c697374000000000000000000000000000000604482015290519081900360640190fd5b600b546401000000008110611594576040805160e560020a62461bcd02815260206004820152601660248201527f7768697465206c69737420697320746f6f206c6f6e6700000000000000000000604482015290519081900360640190fd5b600b8054600101906115a690826123b5565b5082600b828154811015156115b757fe5b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03948516179055918516808252600a90925260408082206001850190555133917f70a380f431974c4a702597b5a84db4fd82b46c6c22bbece2f7a2ace9b4f2407191a3505050565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610789918590610cf7908663ffffffff611f5e16565b60006116736110c7565b15156001141561170e57336000908152600a60205260409020541515611709576040805160e560020a62461bcd02815260206004820152603660248201527f636f6e747261637420697320696e207061757365642c206f6e6c7920696e207760448201527f68697465206c6973742063616e207472616e7366657200000000000000000000606482015290519081900360840190fd5b611799565b3360009081526008602052604090205415611799576040805160e560020a62461bcd02815260206004820152602560248201527f6164647265737320696e20626c61636b206c6973742c2063616e27742074726160448201527f6e73666572000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6117a38383611fbe565b9392505050565b6117b2611366565b15156117f6576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515611845576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415611894576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600a60205260409020541515611903576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f7420696e207768697465206c697374000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382166000908152600a6020526040902054600b5481141561193f57600b8054600019019061193990826123b5565b506119e7565b600b805460009190600019810190811061195557fe5b600091825260209091200154600b8054600160a060020a0390921692508291600019850190811061198257fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055600b805460001901906119cb90826123b5565b50600160a060020a03166000908152600a602052604090208190555b600160a060020a0383166000818152600a60205260408082208290555133917f4a1cd3dad39d738320ad544b9d523ba6ee01375228a912e5ebbe7ed7f52c3c0c91a3505050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b611a61611366565b1515611aa5576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b61122d81611fcb565b6000611ab8611366565b1515611afc576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b81600160a060020a0381161515611b4b576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415611b9a576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b6000611ba5306110db565b905060008111611bff576040805160e560020a62461bcd02815260206004820152601260248201527f6e6f7420656e6f7567682062616c616e63650000000000000000000000000000604482015290519081900360640190fd5b611c0a3085836120c5565b5060019392505050565b600160a060020a0383161515611c99576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611d1f576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000611d8e8484846120c5565b600160a060020a038416600090815260016020908152604080832033808552925290912054611c0a918691610cf7908663ffffffff611f5e16565b6000828201838110156117a3576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000600160a060020a0382161515611eae576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b611edf60068263ffffffff61228916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611f2760068263ffffffff61233116565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600082821115611fb8576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006107893384846120c5565b600160a060020a0381161515612051576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600754604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360078054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600160a060020a038316151561214b576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156121d1576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152602081905260409020546121fa908263ffffffff611f5e16565b600160a060020a03808516600090815260208190526040808220939093559084168152205461222f908263ffffffff611dc916565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6122938282611e26565b151561230f576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61233b8282611e26565b15612390576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b8154818355818111156123d9576000838152602090206123d99181019083016123de565b505050565b61077991905b808211156123f857600081556001016123e4565b509056fe61646472657373206973206e6f7420636f6e747261637400000000000000000061646472657373206973206e6f742030783000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a165627a7a72305820a5cce37f8e154e4a34ad07a4dc9867d74ab1f6b0da8fea21149d1e8c12d14be50029

Deployed Bytecode

0x60806040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610184578063095ea7b31461020e57806318160ddd1461025b57806323b872dd146102825780632e0f2625146102c55780632e3ab672146102f05780632ff2e9dc14610336578063313ce5671461034b57806331d42bf21461036057806339509351146103955780633976bd1d146103ce5780633ea42676146104015780633f4ba83a1461042b57806346fbf68e146104405780635c975abb146104735780636ef8d66d1461048857806370a082311461049d578063715018a6146104d057806382dc1ec4146104e55780638456cb59146105185780638da5cb5b1461052d5780638f32d59b1461054257806395d89b4114610557578063981417121461056c578063a457c2d71461059f578063a9059cbb146105d8578063db5009a514610611578063dd62ed3e14610644578063f2fde38b1461067f578063f3ff4961146106b2575b600080fd5b34801561019057600080fd5b506101996106e5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d35781810151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021a57600080fd5b506102476004803603604081101561023157600080fd5b50600160a060020a03813516906020013561077c565b604080519115158252519081900360200190f35b34801561026757600080fd5b50610270610792565b60408051918252519081900360200190f35b34801561028e57600080fd5b50610247600480360360608110156102a557600080fd5b50600160a060020a03813581169160208101359091169060400135610798565b3480156102d157600080fd5b506102da610a24565b6040805160ff9092168252519081900360200190f35b3480156102fc57600080fd5b5061031a6004803603602081101561031357600080fd5b5035610a29565b60408051600160a060020a039092168252519081900360200190f35b34801561034257600080fd5b50610270610a51565b34801561035757600080fd5b506102da610a62565b34801561036c57600080fd5b506103936004803603602081101561038357600080fd5b5035600160a060020a0316610a6b565b005b3480156103a157600080fd5b50610247600480360360408110156103b857600080fd5b50600160a060020a038135169060200135610cbb565b3480156103da57600080fd5b50610393600480360360208110156103f157600080fd5b5035600160a060020a0316610cfc565b34801561040d57600080fd5b5061031a6004803603602081101561042457600080fd5b5035610f80565b34801561043757600080fd5b50610393610f8e565b34801561044c57600080fd5b506102476004803603602081101561046357600080fd5b5035600160a060020a03166110ae565b34801561047f57600080fd5b506102476110c7565b34801561049457600080fd5b506103936110d0565b3480156104a957600080fd5b50610270600480360360208110156104c057600080fd5b5035600160a060020a03166110db565b3480156104dc57600080fd5b506103936110f6565b3480156104f157600080fd5b506103936004803603602081101561050857600080fd5b5035600160a060020a031661119f565b34801561052457600080fd5b50610393611230565b34801561053957600080fd5b5061031a611352565b34801561054e57600080fd5b50610247611366565b34801561056357600080fd5b5061019961137c565b34801561057857600080fd5b506103936004803603602081101561058f57600080fd5b5035600160a060020a03166113dd565b3480156105ab57600080fd5b50610247600480360360408110156105c257600080fd5b50600160a060020a03813516906020013561162d565b3480156105e457600080fd5b50610247600480360360408110156105fb57600080fd5b50600160a060020a038135169060200135611669565b34801561061d57600080fd5b506103936004803603602081101561063457600080fd5b5035600160a060020a03166117aa565b34801561065057600080fd5b506102706004803603604081101561066757600080fd5b50600160a060020a0381358116916020013516611a2e565b34801561068b57600080fd5b50610393600480360360208110156106a257600080fd5b5035600160a060020a0316611a59565b3480156106be57600080fd5b50610247600480360360208110156106d557600080fd5b5035600160a060020a0316611aae565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b505050505090505b90565b6000610789338484611c14565b50600192915050565b60025490565b60006107a26110c7565b1515600114156108e257336000908152600a60205260409020541515610838576040805160e560020a62461bcd02815260206004820152602660248201527f636f6e747261637420697320696e20207061757365642c2063616e277420747260448201527f616e736665720000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600160a060020a038516146108dd57600160a060020a0384166000908152600a602052604090205415156108dd576040805160e560020a62461bcd02815260206004820152602660248201527f636f6e747261637420697320696e20207061757365642c2063616e277420747260448201527f616e736665720000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610a11565b336000908152600860205260409020541561096d576040805160e560020a62461bcd02815260206004820152602560248201527f6164647265737320696e20626c61636b206c6973742c2063616e27742074726160448201527f6e73666572000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600160a060020a03851614610a1157600160a060020a03841660009081526008602052604090205415610a11576040805160e560020a62461bcd02815260206004820152602560248201527f6164647265737320696e20626c61636b206c6973742c2063616e27742074726160448201527f6e73666572000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610a1c848484611d81565b949350505050565b601281565b6009805482908110610a3757fe5b600091825260209091200154600160a060020a0316905081565b6c01431e0fae6d7217caa000000081565b60055460ff1690565b610a73611366565b1515610ab7576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515610b06576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415610b55576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526008602052604090205415610bc3576040805160e560020a62461bcd02815260206004820152601160248201527f68617320696e20626c61636b206c697374000000000000000000000000000000604482015290519081900360640190fd5b6009546401000000008110610c22576040805160e560020a62461bcd02815260206004820152601660248201527f626c61636b206c69737420697320746f6f206c6f6e6700000000000000000000604482015290519081900360640190fd5b6009805460010190610c3490826123b5565b5082600982815481101515610c4557fe5b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03948516179055918516808252600890925260408082206001850190555133917fc476158237ccbc15520902c2dde98207da751a8ed354f6ac5a0fc7bf6367539f91a3505050565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610789918590610cf7908663ffffffff611dc916565b611c14565b610d04611366565b1515610d48576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515610d97576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415610de6576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600860205260409020541515610e55576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f7420696e20626c61636b206c697374000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216600090815260086020526040902054600954811415610e9157600980546000190190610e8b90826123b5565b50610f39565b60098054600091906000198101908110610ea757fe5b60009182526020909120015460098054600160a060020a03909216925082916000198501908110610ed457fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055600980546000190190610f1d90826123b5565b50600160a060020a031660009081526008602052604090208190555b600160a060020a0383166000818152600860205260408082208290555133917ff5313ac47c999dc2ae75dfcccccfaf58315f81db55e56a9f484fcc9a02cc559891a3505050565b600b805482908110610a3757fe5b610f97336110ae565b1515611013576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff16151561106f576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006110c160068363ffffffff611e2616565b92915050565b60075460ff1690565b6110d933611ece565b565b600160a060020a031660009081526020819052604090205490565b6110fe611366565b1515611142576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b6007546040516000916101009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36007805474ffffffffffffffffffffffffffffffffffffffff0019169055565b6111a8336110ae565b1515611224576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61122d81611f16565b50565b611239336110ae565b15156112b5576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff1615611310576040805160e560020a62461bcd02815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b6007546101009004600160a060020a031690565b6007546101009004600160a060020a0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107715780601f1061074657610100808354040283529160200191610771565b6113e5611366565b1515611429576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515611478576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a0381163014156114c7576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600a602052604090205415611535576040805160e560020a62461bcd02815260206004820152601160248201527f68617320696e207768697465206c697374000000000000000000000000000000604482015290519081900360640190fd5b600b546401000000008110611594576040805160e560020a62461bcd02815260206004820152601660248201527f7768697465206c69737420697320746f6f206c6f6e6700000000000000000000604482015290519081900360640190fd5b600b8054600101906115a690826123b5565b5082600b828154811015156115b757fe5b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03948516179055918516808252600a90925260408082206001850190555133917f70a380f431974c4a702597b5a84db4fd82b46c6c22bbece2f7a2ace9b4f2407191a3505050565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610789918590610cf7908663ffffffff611f5e16565b60006116736110c7565b15156001141561170e57336000908152600a60205260409020541515611709576040805160e560020a62461bcd02815260206004820152603660248201527f636f6e747261637420697320696e207061757365642c206f6e6c7920696e207760448201527f68697465206c6973742063616e207472616e7366657200000000000000000000606482015290519081900360840190fd5b611799565b3360009081526008602052604090205415611799576040805160e560020a62461bcd02815260206004820152602560248201527f6164647265737320696e20626c61636b206c6973742c2063616e27742074726160448201527f6e73666572000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6117a38383611fbe565b9392505050565b6117b2611366565b15156117f6576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b80600160a060020a0381161515611845576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415611894576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b600160a060020a0382166000908152600a60205260409020541515611903576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f7420696e207768697465206c697374000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382166000908152600a6020526040902054600b5481141561193f57600b8054600019019061193990826123b5565b506119e7565b600b805460009190600019810190811061195557fe5b600091825260209091200154600b8054600160a060020a0390921692508291600019850190811061198257fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055600b805460001901906119cb90826123b5565b50600160a060020a03166000908152600a602052604090208190555b600160a060020a0383166000818152600a60205260408082208290555133917f4a1cd3dad39d738320ad544b9d523ba6ee01375228a912e5ebbe7ed7f52c3c0c91a3505050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b611a61611366565b1515611aa5576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b61122d81611fcb565b6000611ab8611366565b1515611afc576040805160e560020a62461bcd028152602060048201819052602482015260008051602061243d833981519152604482015290519081900360640190fd5b81600160a060020a0381161515611b4b576040805160e560020a62461bcd028152602060048201526012602482015260008051602061241d833981519152604482015290519081900360640190fd5b600160a060020a038116301415611b9a576040805160e560020a62461bcd02815260206004820152601760248201526000805160206123fd833981519152604482015290519081900360640190fd5b6000611ba5306110db565b905060008111611bff576040805160e560020a62461bcd02815260206004820152601260248201527f6e6f7420656e6f7567682062616c616e63650000000000000000000000000000604482015290519081900360640190fd5b611c0a3085836120c5565b5060019392505050565b600160a060020a0383161515611c99576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611d1f576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000611d8e8484846120c5565b600160a060020a038416600090815260016020908152604080832033808552925290912054611c0a918691610cf7908663ffffffff611f5e16565b6000828201838110156117a3576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000600160a060020a0382161515611eae576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b611edf60068263ffffffff61228916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611f2760068263ffffffff61233116565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600082821115611fb8576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006107893384846120c5565b600160a060020a0381161515612051576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600754604051600160a060020a0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360078054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600160a060020a038316151561214b576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156121d1576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152602081905260409020546121fa908263ffffffff611f5e16565b600160a060020a03808516600090815260208190526040808220939093559084168152205461222f908263ffffffff611dc916565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6122938282611e26565b151561230f576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61233b8282611e26565b15612390576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b8154818355818111156123d9576000838152602090206123d99181019083016123de565b505050565b61077991905b808211156123f857600081556001016123e4565b509056fe61646472657373206973206e6f7420636f6e747261637400000000000000000061646472657373206973206e6f742030783000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a165627a7a72305820a5cce37f8e154e4a34ad07a4dc9867d74ab1f6b0da8fea21149d1e8c12d14be50029

Deployed Bytecode Sourcemap

23288:5482:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24643:8;;;15381:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15381: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;15381:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9140:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9140:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9140:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8163:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8163:91:0;;;;;;;;;;;;;;;;;;;;25150:810;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25150:810:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25150:810:0;;;;;;;;;;;;;;;;;;23431:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23431:35:0;;;;;;;;;;;;;;;;;;;;;;;23631:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23631:30:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23631:30:0;;;;;;;-1:-1:-1;;;;;23631:30:0;;;;;;;;;;;;;;23473:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23473:81:0;;;;16239:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16239:83:0;;;;27557:504;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27557:504:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27557:504:0;-1:-1:-1;;;;;27557:504:0;;;;;10424:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10424:206:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10424:206:0;;;;;;;;;28069:696;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28069:696:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28069:696:0;-1:-1:-1;;;;;28069:696:0;;;23736:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23736:30:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23736:30:0;;;20473:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20473:118:0;;;;17948:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17948:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17948:109:0;-1:-1:-1;;;;;17948:109:0;;;19682:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19682:78:0;;;;18165:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18165:77:0;;;;8317:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8317:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8317:110:0;-1:-1:-1;;;;;8317:110:0;;;22327:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22327:140:0;;;;18065:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18065:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18065:92:0;-1:-1:-1;;;;;18065:92:0;;;20262:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20262:116:0;;;;21516:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21516:79:0;;;;21882:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21882:92:0;;;;15583:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15583:87:0;;;;26338:510;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26338:510:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26338:510:0;-1:-1:-1;;;;;26338:510:0;;;11133:216;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11133:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11133:216:0;;;;;;;;;24666:476;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24666:476:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24666:476:0;;;;;;;;;26856:693;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26856:693:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26856:693:0;-1:-1:-1;;;;;26856:693:0;;;8859:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8859:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8859:134:0;;;;;;;;;;;22622:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22622:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22622:109:0;-1:-1:-1;;;;;22622:109:0;;;26023:305;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26023:305:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26023:305:0;-1:-1:-1;;;;;26023:305:0;;;15381:83;15451:5;15444:12;;;;;;;;-1:-1:-1;;15444:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15418:13;;15444:12;;15451:5;;15444:12;;15451:5;15444:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15381:83;;:::o;9140:148::-;9205:4;9222:36;9231:10;9243:7;9252:5;9222:8;:36::i;:::-;-1:-1:-1;9276:4:0;9140:148;;;;:::o;8163:91::-;8234:12;;8163:91;:::o;25150:810::-;25232:4;25253:8;:6;:8::i;:::-;:16;;25265:4;25253:16;25249:646;;;25365:10;25349:27;;;;:15;:27;;;;;;:32;;25341:83;;;;;-1:-1:-1;;;;;25341:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25443:10;-1:-1:-1;;;;;25443:19:0;;;25439:138;;-1:-1:-1;;;;;25491:22:0;;;;;;:15;:22;;;;;;:27;;25483:78;;;;;-1:-1:-1;;;;;25483:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25249:646;;;25675:10;25659:27;;;;:15;:27;;;;;;:32;25651:82;;;;;-1:-1:-1;;;;;25651:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25752:10;-1:-1:-1;;;;;25752:19:0;;;25748:136;;-1:-1:-1;;;;;25800:22:0;;;;;;:15;:22;;;;;;:27;25792:76;;;;;-1:-1:-1;;;;;25792:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25914:38;25933:5;25940:3;25945:6;25914:18;:38::i;:::-;25907:45;25150:810;-1:-1:-1;;;;25150:810:0:o;23431:35::-;23464:2;23431:35;:::o;23631:30::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23631:30:0;;-1:-1:-1;23631:30:0;:::o;23473:81::-;23514:40;23473:81;:::o;16239:83::-;16305:9;;;;16239:83;:::o;27557:504::-;21728:9;:7;:9::i;:::-;21720:54;;;;;;;-1:-1:-1;;;;;21720:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21720:54:0;;;;;;;;;;;;;;;27653:13;-1:-1:-1;;;;;24228:20:0;;;;24220:51;;;;;-1:-1:-1;;;;;24220:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24220:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24290:21:0;;24306:4;24290:21;;24282:57;;;;;-1:-1:-1;;;;;24282:57:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24282:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27686:30:0;;;;;;:15;:30;;;;;;:33;27678:64;;;;;-1:-1:-1;;;;;27678:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27771:13;:20;27818:10;27810:18;;27802:53;;;;;-1:-1:-1;;;;;27802:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27868:13;:25;;27892:1;27868:25;;;;;;:::i;:::-;;27927:13;27904;27918:5;27904:20;;;;;;;;;;;;;;;;;;;;;;:36;;-1:-1:-1;;27904:36:0;-1:-1:-1;;;;;27904:36:0;;;;;;27951:30;;;;;;:15;:30;;;;;;;-1:-1:-1;27984:9:0;;27951:42;;28011;28027:10;;28011:42;;;24350:1;21785;27557:504;:::o;10424:206::-;10530:10;10504:4;10551:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10551:32:0;;;;;;;;;;10504:4;;10521:79;;10542:7;;10551:48;;10588:10;10551:48;:36;:48;:::i;:::-;10521:8;:79::i;28069:696::-;21728:9;:7;:9::i;:::-;21720:54;;;;;;;-1:-1:-1;;;;;21720:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21720:54:0;;;;;;;;;;;;;;;28165:13;-1:-1:-1;;;;;24228:20:0;;;;24220:51;;;;;-1:-1:-1;;;;;24220:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24220:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24290:21:0;;24306:4;24290:21;;24282:57;;;;;-1:-1:-1;;;;;24282:57:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24282:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28198:30:0;;;;;;:15;:30;;;;;;:33;;28190:62;;;;;-1:-1:-1;;;;;28190:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28281:30:0;;28265:13;28281:30;;;:15;:30;;;;;;28335:13;:20;28326:29;;28322:328;;;28381:13;:25;;-1:-1:-1;;28381:25:0;;;;;;:::i;:::-;;28322:328;;;28459:13;28473:20;;28437:19;;28459:13;-1:-1:-1;;28473:22:0;;;28459:37;;;;;;;;;;;;;;;;28511:13;:22;;-1:-1:-1;;;;;28459:37:0;;;;-1:-1:-1;28459:37:0;;-1:-1:-1;;28525:7:0;;;28511:22;;;;;;;;;;;;;;;:36;;-1:-1:-1;;28511:36:0;-1:-1:-1;;;;;28511:36:0;;;;;;;;;;28562:13;:25;;-1:-1:-1;;28562:25:0;;;;;;:::i;:::-;-1:-1:-1;;;;;;28602:28:0;;;;;:15;:28;;;;;:36;;;28322:328;-1:-1:-1;;;;;28669:30:0;;;;;;:15;:30;;;;;;28662:37;;;28715:42;28731:10;;28715:42;;;24350:1;21785;28069:696;:::o;23736:30::-;;;;;;;;;;;20473:118;17847:20;17856:10;17847:8;:20::i;:::-;17839:81;;;;;;;-1:-1:-1;;;;;17839:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20118:7;;;;20110:40;;;;;;;-1:-1:-1;;;;;20110:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20532:7;:15;;-1:-1:-1;;20532:15:0;;;20563:20;;;20572:10;20563:20;;;;;;;;;;;;;20473:118::o;17948:109::-;18004:4;18028:21;:8;18041:7;18028:21;:12;:21;:::i;:::-;18021:28;17948:109;-1:-1:-1;;17948:109:0:o;19682:78::-;19745:7;;;;19682:78;:::o;18165:77::-;18209:25;18223:10;18209:13;:25::i;:::-;18165:77::o;8317:110::-;-1:-1:-1;;;;;8401:18:0;8374:7;8401:18;;;;;;;;;;;;8317:110::o;22327:140::-;21728:9;:7;:9::i;:::-;21720:54;;;;;;;-1:-1:-1;;;;;21720:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21720:54:0;;;;;;;;;;;;;;;22410:6;;22389:40;;22426:1;;22410:6;;;-1:-1:-1;;;;;22410:6:0;;22389:40;;22426:1;;22389:40;22440:6;:19;;-1:-1:-1;;22440:19:0;;;22327:140::o;18065:92::-;17847:20;17856:10;17847:8;:20::i;:::-;17839:81;;;;;;;-1:-1:-1;;;;;17839:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18130:19;18141:7;18130:10;:19::i;:::-;18065:92;:::o;20262:116::-;17847:20;17856:10;17847:8;:20::i;:::-;17839:81;;;;;;;-1:-1:-1;;;;;17839:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19919:7;;;;19918:8;19910:37;;;;;-1:-1:-1;;;;;19910:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20322:7;:14;;-1:-1:-1;;20322:14:0;20332:4;20322:14;;;20352:18;;;20359:10;20352:18;;;;;;;;;;;;;20262:116::o;21516:79::-;21581:6;;;;;-1:-1:-1;;;;;21581:6:0;;21516:79::o;21882:92::-;21960:6;;;;;-1:-1:-1;;;;;21960:6:0;21946:10;:20;;21882:92::o;15583:87::-;15655:7;15648:14;;;;;;;;-1:-1:-1;;15648:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15622:13;;15648:14;;15655:7;;15648:14;;15655:7;15648:14;;;;;;;;;;;;;;;;;;;;;;;;26338:510;21728:9;:7;:9::i;:::-;21720:54;;;;;;;-1:-1:-1;;;;;21720:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21720:54:0;;;;;;;;;;;;;;;26434:13;-1:-1:-1;;;;;24228:20:0;;;;24220:51;;;;;-1:-1:-1;;;;;24220:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24220:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24290:21:0;;24306:4;24290:21;;24282:57;;;;;-1:-1:-1;;;;;24282:57:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24282:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26467:30:0;;;;;;:15;:30;;;;;;:33;26459:63;;;;;-1:-1:-1;;;;;26459:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26551:13;:20;26598:10;26590:18;;26582:53;;;;;-1:-1:-1;;;;;26582:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26648:13;:25;;26672:1;26648:25;;;;;;:::i;:::-;;26707:13;26684;26698:5;26684:20;;;;;;;;;;;;;;;;;;;;;;:36;;-1:-1:-1;;26684:36:0;-1:-1:-1;;;;;26684:36:0;;;;;;26741:30;;;;;;:15;:30;;;;;;;-1:-1:-1;26774:9:0;;26741:42;;26799:41;26815:10;;26799:41;;;24350:1;21785;26338:510;:::o;11133:216::-;11244:10;11218:4;11265:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11265:32:0;;;;;;;;;;11218:4;;11235:84;;11256:7;;11265:53;;11302:15;11265:53;:36;:53;:::i;24666:476::-;24729:4;24751:8;:6;:8::i;:::-;:16;;24763:4;24751:16;24747:343;;;24847:10;24831:27;;;;:15;:27;;;;;;:32;;24823:99;;;;;-1:-1:-1;;;;;24823:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24747:343;;;25021:10;25005:27;;;;:15;:27;;;;;;:32;24997:81;;;;;-1:-1:-1;;;;;24997:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25107:27;25122:3;25127:6;25107:14;:27::i;:::-;25100:34;24666:476;-1:-1:-1;;;24666:476:0:o;26856:693::-;21728:9;:7;:9::i;:::-;21720:54;;;;;;;-1:-1:-1;;;;;21720:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21720:54:0;;;;;;;;;;;;;;;26952:13;-1:-1:-1;;;;;24228:20:0;;;;24220:51;;;;;-1:-1:-1;;;;;24220:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24220:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24290:21:0;;24306:4;24290:21;;24282:57;;;;;-1:-1:-1;;;;;24282:57:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24282:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26985:30:0;;;;;;:15;:30;;;;;;:33;;26977:62;;;;;-1:-1:-1;;;;;26977:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27068:30:0;;27052:13;27068:30;;;:15;:30;;;;;;27122:13;:20;27113:29;;27109:328;;;27168:13;:25;;-1:-1:-1;;27168:25:0;;;;;;:::i;:::-;;27109:328;;;27246:13;27260:20;;27224:19;;27246:13;-1:-1:-1;;27260:22:0;;;27246:37;;;;;;;;;;;;;;;;27298:13;:22;;-1:-1:-1;;;;;27246:37:0;;;;-1:-1:-1;27246:37:0;;-1:-1:-1;;27312:7:0;;;27298:22;;;;;;;;;;;;;;;:36;;-1:-1:-1;;27298:36:0;-1:-1:-1;;;;;27298:36:0;;;;;;;;;;27349:13;:25;;-1:-1:-1;;27349:25:0;;;;;;:::i;:::-;-1:-1:-1;;;;;;27389:28:0;;;;;:15;:28;;;;;:36;;;27109:328;-1:-1:-1;;;;;27454:30:0;;;;;;:15;:30;;;;;;27447:37;;;27500:41;27516:10;;27500:41;;;24350:1;21785;26856:693;:::o;8859:134::-;-1:-1:-1;;;;;8958:18:0;;;8931:7;8958:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8859:134::o;22622:109::-;21728:9;:7;:9::i;:::-;21720:54;;;;;;;-1:-1:-1;;;;;21720:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21720:54:0;;;;;;;;;;;;;;;22695:28;22714:8;22695:18;:28::i;26023:305::-;26110:4;21728:9;:7;:9::i;:::-;21720:54;;;;;;;-1:-1:-1;;;;;21720:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21720:54:0;;;;;;;;;;;;;;;26096:3;-1:-1:-1;;;;;24228:20:0;;;;24220:51;;;;;-1:-1:-1;;;;;24220:51:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24220:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24290:21:0;;24306:4;24290:21;;24282:57;;;;;-1:-1:-1;;;;;24282:57:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24282:57:0;;;;;;;;;;;;;;;26128:23;26154:24;26172:4;26154:9;:24::i;:::-;26128:50;-1:-1:-1;26215:1:0;26197:19;;26189:50;;;;;-1:-1:-1;;;;;26189:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26252:46;26270:4;26277:3;26282:15;26252:9;:46::i;:::-;-1:-1:-1;26316:4:0;;26023:305;-1:-1:-1;;;26023:305:0:o;13935:335::-;-1:-1:-1;;;;;14028:19:0;;;;14020:68;;;;;-1:-1:-1;;;;;14020:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14107:21:0;;;;14099:68;;;;;-1:-1:-1;;;;;14099:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14180:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14231:31;;;;;;;;;;;;;;;;;13935:335;;;:::o;9759:256::-;9848:4;9865:36;9875:6;9883:9;9894:6;9865:9;:36::i;:::-;-1:-1:-1;;;;;9941:19:0;;;;;;:11;:19;;;;;;;;9929:10;9941:31;;;;;;;;;9912:73;;9921:6;;9941:43;;9977:6;9941:43;:35;:43;:::i;3811:181::-;3869:7;3901:5;;;3925:6;;;;3917:46;;;;;-1:-1:-1;;;;;3917:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17211:203;17283:4;-1:-1:-1;;;;;17308:21:0;;;;17300:68;;;;;-1:-1:-1;;;;;17300:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17386:20:0;:11;:20;;;;;;;;;;;;;;;17211:203::o;18380:130::-;18440:24;:8;18456:7;18440:24;:15;:24;:::i;:::-;18480:22;;-1:-1:-1;;;;;18480:22:0;;;;;;;;18380:130;:::o;18250:122::-;18307:21;:8;18320:7;18307:21;:12;:21;:::i;:::-;18344:20;;-1:-1:-1;;;;;18344:20:0;;;;;;;;18250:122;:::o;4267:184::-;4325:7;4353:6;;;;4345:49;;;;;-1:-1:-1;;;;;4345:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4417:5:0;;;4267:184::o;8640:156::-;8709:4;8726:40;8736:10;8748:9;8759:6;8726:9;:40::i;22837:229::-;-1:-1:-1;;;;;22911:22:0;;;;22903:73;;;;;-1:-1:-1;;;;;22903:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23013:6;;22992:38;;-1:-1:-1;;;;;22992:38:0;;;;23013:6;;;;;22992:38;;;;;23041:6;:17;;-1:-1:-1;;;;;23041:17:0;;;;;-1:-1:-1;;23041:17:0;;;;;;;;;22837:229::o;11839:429::-;-1:-1:-1;;;;;11937:20:0;;;;11929:70;;;;;-1:-1:-1;;;;;11929:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12018:23:0;;;;12010:71;;;;;-1:-1:-1;;;;;12010:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12114:17:0;;:9;:17;;;;;;;;;;;:29;;12136:6;12114:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12094:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12177:20;;;;;;;:32;;12202:6;12177:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12154:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12225:35;;;;;;;12154:20;;12225:35;;;;;;;;;;;;;11839:429;;;:::o;16933:183::-;17013:18;17017:4;17023:7;17013:3;:18::i;:::-;17005:64;;;;;;;-1:-1:-1;;;;;17005:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17080:20:0;17103:5;17080:20;;;;;;;;;;;:28;;-1:-1:-1;;17080:28:0;;;16933:183::o;16675:178::-;16753:18;16757:4;16763:7;16753:3;:18::i;:::-;16752:19;16744:63;;;;;-1:-1:-1;;;;;16744:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16818:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16818:27:0;16841:4;16818:27;;;16675:178::o;23288:5482::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://a5cce37f8e154e4a34ad07a4dc9867d74ab1f6b0da8fea21149d1e8c12d14be5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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