ETH Price: $3,162.11 (-4.13%)
Gas: 4 Gwei

Token

CC Token (CC)
 

Overview

Max Total Supply

100,000,000 CC

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
99,995,000 CC

Value
$0.00
0x618Cf13c76c1FFC2168fC47c98453dCc6134F5c8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CoinWindTokenV2

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-23
*/

/**
 *Submitted for verification at hecoinfo.com on 2021-02-03
*/

pragma solidity ^0.5.0;


library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}


contract Ownable {

    address private _owner;

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

    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    // function renounceOwnership() public onlyOwner {
    //     emit OwnershipTransferred(_owner, address(0));
    //     _owner = address(0);
    // }

    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


library Roles {

    struct Role {
        mapping (address => bool) bearer;
    }

    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    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];
    }
}


contract PauserRole is Ownable {

    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 onlyOwner {
        _addPauser(account);
    }

    function removePauser(address account) public onlyOwner {
        _removePauser(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);
    }
}


contract Pausable is PauserRole {

    event Paused(address account);

    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    function paused() public view returns (bool) {
        return _paused;
    }

    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}


interface IERC20 {

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}


contract ERC20 is IERC20, Ownable {

    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    event Issue(address indexed account, uint256 amount);

    event Redeem(address indexed account, uint256 value);

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    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;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    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);
    }

    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);
    }

    function _issue(address account, uint256 amount) internal {
        require(account != address(0), "CoinFactory: issue to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
        emit Issue(account, amount);
    }

    function _redeem(address account, uint256 value) internal {
        require(account != address(0), "CoinFactory: redeem from the zero address");

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


contract ERC20Pausable is ERC20, Pausable {

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

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

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

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

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


contract CoinFactoryAdminRole is Ownable {

    using Roles for Roles.Role;

    event CoinFactoryAdminRoleAdded(address indexed account);

    event CoinFactoryAdminRoleRemoved(address indexed account);

    Roles.Role private _coinFactoryAdmins;

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

    modifier onlyCoinFactoryAdmin() {
        require(isCoinFactoryAdmin(msg.sender), "CoinFactoryAdminRole: caller does not have the CoinFactoryAdmin role");
        _;
    }

    function isCoinFactoryAdmin(address account) public view returns (bool) {
        return _coinFactoryAdmins.has(account);
    }

    function addCoinFactoryAdmin(address account) public onlyOwner {
        _addCoinFactoryAdmin(account);
    }

    function removeCoinFactoryAdmin(address account) public onlyOwner {
        _removeCoinFactoryAdmin(account);
    }

    function renounceCoinFactoryAdmin() public {
        _removeCoinFactoryAdmin(msg.sender);
    }

    function _addCoinFactoryAdmin(address account) internal {
        _coinFactoryAdmins.add(account);
        emit CoinFactoryAdminRoleAdded(account);
    }

    function _removeCoinFactoryAdmin(address account) internal {
        _coinFactoryAdmins.remove(account);
        emit CoinFactoryAdminRoleRemoved(account);
    }
}


contract CoinFactory is ERC20, CoinFactoryAdminRole {

    function issue(address account, uint256 amount) public onlyCoinFactoryAdmin returns (bool) {
        _issue(account, amount);
        return true;
    }

    function redeem(address account, uint256 amount) public returns (bool) {
        require(msg.sender == account || isCoinFactoryAdmin(msg.sender), "CoinFactoryAdminRole: only address onwer or CoinFactoryAdmin can redeem");
        _redeem(account, amount);
        return true;
    }
}


contract BlacklistAdminRole is Ownable {

    using Roles for Roles.Role;

    event BlacklistAdminAdded(address indexed account);
    event BlacklistAdminRemoved(address indexed account);

    Roles.Role private _blacklistAdmins;

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

    modifier onlyBlacklistAdmin() {
        require(isBlacklistAdmin(msg.sender), "BlacklistAdminRole: caller does not have the BlacklistAdmin role");
        _;
    }

    function isBlacklistAdmin(address account) public view returns (bool) {
        return _blacklistAdmins.has(account);
    }

    function addBlacklistAdmin(address account) public onlyOwner {
        _addBlacklistAdmin(account);
    }

    function removeBlacklistAdmin(address account) public onlyOwner {
        _removeBlacklistAdmin(account);
    }

    function renounceBlacklistAdmin() public {
        _removeBlacklistAdmin(msg.sender);
    }

    function _addBlacklistAdmin(address account) internal {
        _blacklistAdmins.add(account);
        emit BlacklistAdminAdded(account);
    }

    function _removeBlacklistAdmin(address account) internal {
        _blacklistAdmins.remove(account);
        emit BlacklistAdminRemoved(account);
    }
}


contract Blacklist is ERC20, BlacklistAdminRole {

    mapping (address => bool) private _blacklist;

    event BlacklistAdded(address indexed account);

    event BlacklistRemoved(address indexed account);

    function isBlacklist(address account) public view returns (bool) {
        return _blacklist[account];
    }

    function addBlacklist(address[] memory accounts) public onlyBlacklistAdmin returns (bool) {
        for(uint i = 0; i < accounts.length; i++) {
            _addBlacklist(accounts[i]);
        }
    }

    function removeBlacklist(address[] memory accounts) public onlyBlacklistAdmin returns (bool) {
        for(uint i = 0; i < accounts.length; i++) {
            _removeBlacklist(accounts[i]);
        }
    }

    function _addBlacklist(address account) internal {
        _blacklist[account] = true;
        emit BlacklistAdded(account);
    }

    function _removeBlacklist(address account) internal {
        _blacklist[account] = false;
        emit BlacklistRemoved(account);
    }
}

contract CoinWindTokenV2 is ERC20, ERC20Pausable, CoinFactory, Blacklist {

    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 private _totalSupply;

    address public polygon;

    constructor (string memory _name, string memory _symbol, uint8 _decimals) public {
        _totalSupply = 0;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
    }

    function setPolygon(address _polygon) public onlyOwner {
        polygon = _polygon;
    }

    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        require(!isBlacklist(msg.sender), "Token: caller in blacklist can't transfer");
        require(!isBlacklist(to), "Token: not allow to transfer to recipient address in blacklist");
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        require(!isBlacklist(msg.sender), "Token: caller in blacklist can't transferFrom");
        require(!isBlacklist(from), "Token: from in blacklist can't transfer");
        require(!isBlacklist(to), "Token: not allow to transfer to recipient address in blacklist");
        return super.transferFrom(from, to, value);
    }

    /**
     * @notice called when token is deposited on root chain
     * @dev Should be callable only by ChildChainManager
     * Should handle deposit by minting the required amount for user
     * Make sure minting is done only by this function
     * @param user user address for whom deposit is being done
     * @param depositData abi encoded amount
     */
    function deposit(address user, bytes calldata depositData) external {
        require(msg.sender == polygon, "not allow");
        require(!isBlacklist(user), "Token: not allow to transfer to recipient address in blacklist");
        uint256 amount = abi.decode(depositData, (uint256));
        _issue(user, amount);
    }

    /**
     * @notice called when user wants to withdraw tokens back to root chain
     * @dev Should burn user's tokens. This transaction will be verified when exiting on root chain
     * @param amount amount of tokens to withdraw
     */
    function withdraw(uint256 amount) external {
        require(!isBlacklist(msg.sender), "Token: caller in blacklist can't transfer");
        _redeem(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"CoinFactoryAdminRoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"CoinFactoryAdminRoleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlacklistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addCoinFactoryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isCoinFactoryAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"polygon","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeCoinFactoryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceBlacklistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceCoinFactoryAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_polygon","type":"address"}],"name":"setPolygon","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200401638038062004016833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36200028f336200032a60201b60201c565b6000600560006101000a81548160ff021916908315150217905550620002bb336200038b60201b60201c565b620002cc33620003ec60201b60201c565b6000600c819055508260099080519060200190620002ec92919062000611565b5081600a90805190602001906200030592919062000611565b5080600b60006101000a81548160ff021916908360ff160217905550505050620006c0565b620003458160046200044d60201b620032611790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b620003a68160066200044d60201b620032611790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f9e8b5fbf24fd7f86d2666e8f27ffdeb7c0aa870faa1980ad7290677152938dfa60405160405180910390a250565b620004078160076200044d60201b620032611790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b6200045f82826200053160201b60201c565b15620004d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062003ff46022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065457805160ff191683800117855562000685565b8280016001018555821562000685579182015b828111156200068457825182559160200191906001019062000667565b5b50905062000694919062000698565b5090565b620006bd91905b80821115620006b95760008160009055506001016200069f565b5090565b90565b61392480620006d06000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c80636ef8d66d11610130578063998b4792116100b8578063cf7d6db71161007c578063cf7d6db714610c9a578063d3ce790514610cf6578063dd62ed3e14610d3a578063e5c855c914610db2578063f2fde38b14610df657610232565b8063998b479214610aa7578063a457c2d714610aeb578063a9059cbb14610b51578063b8c97ded14610bb7578063cf2c52cb14610c0157610232565b80638456cb59116100ff5780638456cb5914610948578063867904b4146109525780638da5cb5b146109b85780638f32d59b14610a0257806395d89b4114610a2457610232565b80636ef8d66d146107d257806370a08231146107dc5780637911ef9d1461083457806382dc1ec41461090457610232565b806332068e91116101be5780633f4ba83a116101825780633f4ba83a146106c257806346fbf68e146106cc5780635c975abb146107285780635e612bab1461074a5780636b2c0f551461078e57610232565b806332068e91146104e2578063333e99db146104ec57806333b7ff4e14610548578063395093511461058c5780633d2cc56c146105f257610232565b80631e9a6950116102055780631e9a69501461039a57806323b872dd14610400578063243f2473146104865780632e1a7d4d14610490578063313ce567146104be57610232565b806306fdde0314610237578063095ea7b3146102ba57806316d2e6501461032057806318160ddd1461037c575b600080fd5b61023f610e3a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027f578082015181840152602081019050610264565b50505050905090810190601f1680156102ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610306600480360360408110156102d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed8565b604051808215151515815260200191505060405180910390f35b6103626004803603602081101561033657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f6f565b604051808215151515815260200191505060405180910390f35b610384610f8c565b6040518082815260200191505060405180910390f35b6103e6600480360360408110156103b057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f96565b604051808215151515815260200191505060405180910390f35b61046c6004803603606081101561041657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611040565b604051808215151515815260200191505060405180910390f35b61048e6111f6565b005b6104bc600480360360208110156104a657600080fd5b8101908080359060200190929190505050611201565b005b6104c661126d565b604051808260ff1660ff16815260200191505060405180910390f35b6104ea611280565b005b61052e6004803603602081101561050257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061128b565b604051808215151515815260200191505060405180910390f35b61058a6004803603602081101561055e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e1565b005b6105d8600480360360408110156105a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061139f565b604051808215151515815260200191505060405180910390f35b6106a86004803603602081101561060857600080fd5b810190808035906020019064010000000081111561062557600080fd5b82018360208201111561063757600080fd5b8035906020019184602083028401116401000000008311171561065957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611436565b604051808215151515815260200191505060405180910390f35b6106ca6114d4565b005b61070e600480360360208110156106e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611634565b604051808215151515815260200191505060405180910390f35b610730611651565b604051808215151515815260200191505060405180910390f35b61078c6004803603602081101561076057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611668565b005b6107d0600480360360208110156107a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116ee565b005b6107da611774565b005b61081e600480360360208110156107f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061177f565b6040518082815260200191505060405180910390f35b6108ea6004803603602081101561084a57600080fd5b810190808035906020019064010000000081111561086757600080fd5b82018360208201111561087957600080fd5b8035906020019184602083028401116401000000008311171561089b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506117c8565b604051808215151515815260200191505060405180910390f35b6109466004803603602081101561091a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611866565b005b6109506118ec565b005b61099e6004803603604081101561096857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a4d565b604051808215151515815260200191505060405180910390f35b6109c0611ac1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a0a611aea565b604051808215151515815260200191505060405180910390f35b610a2c611b41565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a6c578082015181840152602081019050610a51565b50505050905090810190601f168015610a995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ae960048036036020811015610abd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bdf565b005b610b3760048036036040811015610b0157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c65565b604051808215151515815260200191505060405180910390f35b610b9d60048036036040811015610b6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611cfc565b604051808215151515815260200191505060405180910390f35b610bbf611e51565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c9860048036036040811015610c1757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610c5457600080fd5b820183602082011115610c6657600080fd5b80359060200191846001830284011164010000000083111715610c8857600080fd5b9091929391929390505050611e77565b005b610cdc60048036036020811015610cb057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fce565b604051808215151515815260200191505060405180910390f35b610d3860048036036020811015610d0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611feb565b005b610d9c60048036036040811015610d5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612071565b6040518082815260200191505060405180910390f35b610df460048036036020811015610dc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120f8565b005b610e3860048036036020811015610e0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061217e565b005b60098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ed05780601f10610ea557610100808354040283529160200191610ed0565b820191906000526020600020905b815481529060010190602001808311610eb357829003601f168201915b505050505081565b6000600560009054906101000a900460ff1615610f5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610f678383612204565b905092915050565b6000610f8582600761221b90919063ffffffff16565b9050919050565b6000600354905090565b60008273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610fd75750610fd633611fce565b5b61102c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260478152602001806136dc6047913960600191505060405180910390fd5b61103683836122f9565b6001905092915050565b6000600560009054906101000a900460ff16156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6110ce3361128b565b15611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806138c3602d913960400191505060405180910390fd5b61112d8461128b565b15611183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806136b56027913960400191505060405180910390fd5b61118c8361128b565b156111e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613861603e913960400191505060405180910390fd5b6111ed8484846124e7565b90509392505050565b6111ff33612580565b565b61120a3361128b565b15611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061374c6029913960400191505060405180910390fd5b61126a33826122f9565b50565b600b60009054906101000a900460ff1681565b611289336125da565b565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112e9611aea565b61135b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff1615611424576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61142e8383612634565b905092915050565b600061144133610f6f565b611496576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806137756040913960400191505060405180910390fd5b60008090505b82518110156114ce576114c18382815181106114b457fe5b60200260200101516126d9565b808060010191505061149c565b50919050565b6114dd33611634565b611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061363d6030913960400191505060405180910390fd5b600560009054906101000a900460ff166115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061164a82600461221b90919063ffffffff16565b9050919050565b6000600560009054906101000a900460ff16905090565b611670611aea565b6116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6116eb81612580565b50565b6116f6611aea565b611768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61177181612777565b50565b61177d33612777565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006117d333610f6f565b611828576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806137756040913960400191505060405180910390fd5b60008090505b82518110156118605761185383828151811061184657fe5b60200260200101516127d1565b808060010191505061182e565b50919050565b61186e611aea565b6118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6118e98161286f565b50565b6118f533611634565b61194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061363d6030913960400191505060405180910390fd5b600560009054906101000a900460ff16156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000611a5833611fce565b611aad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260448152602001806137b56044913960600191505060405180910390fd5b611ab783836128c9565b6001905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611bd75780601f10611bac57610100808354040283529160200191611bd7565b820191906000526020600020905b815481529060010190602001808311611bba57829003601f168201915b505050505081565b611be7611aea565b611c59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c6281612ab7565b50565b6000600560009054906101000a900460ff1615611cea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611cf48383612b11565b905092915050565b6000600560009054906101000a900460ff1615611d81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611d8a3361128b565b15611de0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061374c6029913960400191505060405180910390fd5b611de98361128b565b15611e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613861603e913960400191505060405180910390fd5b611e498383612bb6565b905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f7420616c6c6f77000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b611f438361128b565b15611f99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613861603e913960400191505060405180910390fd5b600082826020811015611fab57600080fd5b81019080803590602001909291905050509050611fc884826128c9565b50505050565b6000611fe482600661221b90919063ffffffff16565b9050919050565b611ff3611aea565b612065576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61206e81612c4d565b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612100611aea565b612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61217b816125da565b50565b612186611aea565b6121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61220181612ca7565b50565b6000612211338484612deb565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061381a6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806137236029913960400191505060405180910390fd5b61239481600354612fe290919063ffffffff16565b6003819055506123ec81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a38173ffffffffffffffffffffffffffffffffffffffff167f222838db2794d11532d940e8dec38ae307ed0b63cd97c233322e221f998767a6826040518082815260200191505060405180910390a25050565b6000600560009054906101000a900460ff161561256c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61257784848461306b565b90509392505050565b61259481600761311c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fba73eacdfe215f630abb6a8a78e5be613e50918b52e691bba35d46c06e20d6c860405160405180910390a250565b6125ee81600661311c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f15bf0aef1cc552f782bc5ad7121d42ea78efbfbec8dd9e16fb9f37967ad763fb60405160405180910390a250565b60006126cf33846126ca85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b612deb565b6001905092915050565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f44d5fe68b00f68950fb9c1ff0a61ef7f747b1a36359a7e3a7f3324db4b87896760405160405180910390a250565b61278b81600461311c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1747ca720b1a174a464b6513ace29b1d3190b5f632b9f34147017c81425bfde860405160405180910390a250565b61288381600461326190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135f46026913960400191505060405180910390fd5b612964816003546131d990919063ffffffff16565b6003819055506129bc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a38173ffffffffffffffffffffffffffffffffffffffff167fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c16826040518082815260200191505060405180910390a25050565b612acb81600661326190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f9e8b5fbf24fd7f86d2666e8f27ffdeb7c0aa870faa1980ad7290677152938dfa60405160405180910390a250565b6000612bac3384612ba785600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b612deb565b6001905092915050565b6000600560009054906101000a900460ff1615612c3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612c45838361333c565b905092915050565b612c6181600761326190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061366d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061389f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136936022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008282111561305a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000613078848484613353565b613111843361310c85600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b612deb565b600190509392505050565b613126828261221b565b61317b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137f96021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015613257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61326b828261221b565b156132de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000613349338484613353565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061383c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561345f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061361a6023913960400191505060405180910390fd5b6134b181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061354681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe436f696e466163746f72793a20697373756520746f20746865207a65726f206164647265737345524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e3a2066726f6d20696e20626c61636b6c6973742063616e2774207472616e73666572436f696e466163746f727941646d696e526f6c653a206f6e6c792061646472657373206f6e776572206f7220436f696e466163746f727941646d696e2063616e2072656465656d436f696e466163746f72793a2072656465656d2066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e73666572426c61636b6c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652074686520426c61636b6c69737441646d696e20726f6c65436f696e466163746f727941646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652074686520436f696e466163746f727941646d696e20726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373546f6b656e3a206e6f7420616c6c6f7720746f207472616e7366657220746f20726563697069656e74206164647265737320696e20626c61636b6c69737445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e7366657246726f6da265627a7a7231582056fb8f27f1e87f00577cfb6981abe302a21828cabf7c68f480761f4bc04bf77264736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008434320546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024343000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c80636ef8d66d11610130578063998b4792116100b8578063cf7d6db71161007c578063cf7d6db714610c9a578063d3ce790514610cf6578063dd62ed3e14610d3a578063e5c855c914610db2578063f2fde38b14610df657610232565b8063998b479214610aa7578063a457c2d714610aeb578063a9059cbb14610b51578063b8c97ded14610bb7578063cf2c52cb14610c0157610232565b80638456cb59116100ff5780638456cb5914610948578063867904b4146109525780638da5cb5b146109b85780638f32d59b14610a0257806395d89b4114610a2457610232565b80636ef8d66d146107d257806370a08231146107dc5780637911ef9d1461083457806382dc1ec41461090457610232565b806332068e91116101be5780633f4ba83a116101825780633f4ba83a146106c257806346fbf68e146106cc5780635c975abb146107285780635e612bab1461074a5780636b2c0f551461078e57610232565b806332068e91146104e2578063333e99db146104ec57806333b7ff4e14610548578063395093511461058c5780633d2cc56c146105f257610232565b80631e9a6950116102055780631e9a69501461039a57806323b872dd14610400578063243f2473146104865780632e1a7d4d14610490578063313ce567146104be57610232565b806306fdde0314610237578063095ea7b3146102ba57806316d2e6501461032057806318160ddd1461037c575b600080fd5b61023f610e3a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027f578082015181840152602081019050610264565b50505050905090810190601f1680156102ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610306600480360360408110156102d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed8565b604051808215151515815260200191505060405180910390f35b6103626004803603602081101561033657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f6f565b604051808215151515815260200191505060405180910390f35b610384610f8c565b6040518082815260200191505060405180910390f35b6103e6600480360360408110156103b057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f96565b604051808215151515815260200191505060405180910390f35b61046c6004803603606081101561041657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611040565b604051808215151515815260200191505060405180910390f35b61048e6111f6565b005b6104bc600480360360208110156104a657600080fd5b8101908080359060200190929190505050611201565b005b6104c661126d565b604051808260ff1660ff16815260200191505060405180910390f35b6104ea611280565b005b61052e6004803603602081101561050257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061128b565b604051808215151515815260200191505060405180910390f35b61058a6004803603602081101561055e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e1565b005b6105d8600480360360408110156105a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061139f565b604051808215151515815260200191505060405180910390f35b6106a86004803603602081101561060857600080fd5b810190808035906020019064010000000081111561062557600080fd5b82018360208201111561063757600080fd5b8035906020019184602083028401116401000000008311171561065957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611436565b604051808215151515815260200191505060405180910390f35b6106ca6114d4565b005b61070e600480360360208110156106e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611634565b604051808215151515815260200191505060405180910390f35b610730611651565b604051808215151515815260200191505060405180910390f35b61078c6004803603602081101561076057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611668565b005b6107d0600480360360208110156107a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116ee565b005b6107da611774565b005b61081e600480360360208110156107f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061177f565b6040518082815260200191505060405180910390f35b6108ea6004803603602081101561084a57600080fd5b810190808035906020019064010000000081111561086757600080fd5b82018360208201111561087957600080fd5b8035906020019184602083028401116401000000008311171561089b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506117c8565b604051808215151515815260200191505060405180910390f35b6109466004803603602081101561091a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611866565b005b6109506118ec565b005b61099e6004803603604081101561096857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a4d565b604051808215151515815260200191505060405180910390f35b6109c0611ac1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a0a611aea565b604051808215151515815260200191505060405180910390f35b610a2c611b41565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a6c578082015181840152602081019050610a51565b50505050905090810190601f168015610a995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ae960048036036020811015610abd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bdf565b005b610b3760048036036040811015610b0157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c65565b604051808215151515815260200191505060405180910390f35b610b9d60048036036040811015610b6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611cfc565b604051808215151515815260200191505060405180910390f35b610bbf611e51565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c9860048036036040811015610c1757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610c5457600080fd5b820183602082011115610c6657600080fd5b80359060200191846001830284011164010000000083111715610c8857600080fd5b9091929391929390505050611e77565b005b610cdc60048036036020811015610cb057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fce565b604051808215151515815260200191505060405180910390f35b610d3860048036036020811015610d0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611feb565b005b610d9c60048036036040811015610d5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612071565b6040518082815260200191505060405180910390f35b610df460048036036020811015610dc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120f8565b005b610e3860048036036020811015610e0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061217e565b005b60098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ed05780601f10610ea557610100808354040283529160200191610ed0565b820191906000526020600020905b815481529060010190602001808311610eb357829003601f168201915b505050505081565b6000600560009054906101000a900460ff1615610f5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610f678383612204565b905092915050565b6000610f8582600761221b90919063ffffffff16565b9050919050565b6000600354905090565b60008273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610fd75750610fd633611fce565b5b61102c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260478152602001806136dc6047913960600191505060405180910390fd5b61103683836122f9565b6001905092915050565b6000600560009054906101000a900460ff16156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6110ce3361128b565b15611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806138c3602d913960400191505060405180910390fd5b61112d8461128b565b15611183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806136b56027913960400191505060405180910390fd5b61118c8361128b565b156111e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613861603e913960400191505060405180910390fd5b6111ed8484846124e7565b90509392505050565b6111ff33612580565b565b61120a3361128b565b15611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061374c6029913960400191505060405180910390fd5b61126a33826122f9565b50565b600b60009054906101000a900460ff1681565b611289336125da565b565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112e9611aea565b61135b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900460ff1615611424576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61142e8383612634565b905092915050565b600061144133610f6f565b611496576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806137756040913960400191505060405180910390fd5b60008090505b82518110156114ce576114c18382815181106114b457fe5b60200260200101516126d9565b808060010191505061149c565b50919050565b6114dd33611634565b611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061363d6030913960400191505060405180910390fd5b600560009054906101000a900460ff166115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061164a82600461221b90919063ffffffff16565b9050919050565b6000600560009054906101000a900460ff16905090565b611670611aea565b6116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6116eb81612580565b50565b6116f6611aea565b611768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61177181612777565b50565b61177d33612777565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006117d333610f6f565b611828576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806137756040913960400191505060405180910390fd5b60008090505b82518110156118605761185383828151811061184657fe5b60200260200101516127d1565b808060010191505061182e565b50919050565b61186e611aea565b6118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6118e98161286f565b50565b6118f533611634565b61194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061363d6030913960400191505060405180910390fd5b600560009054906101000a900460ff16156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000611a5833611fce565b611aad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260448152602001806137b56044913960600191505060405180910390fd5b611ab783836128c9565b6001905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611bd75780601f10611bac57610100808354040283529160200191611bd7565b820191906000526020600020905b815481529060010190602001808311611bba57829003601f168201915b505050505081565b611be7611aea565b611c59576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611c6281612ab7565b50565b6000600560009054906101000a900460ff1615611cea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611cf48383612b11565b905092915050565b6000600560009054906101000a900460ff1615611d81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611d8a3361128b565b15611de0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061374c6029913960400191505060405180910390fd5b611de98361128b565b15611e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613861603e913960400191505060405180910390fd5b611e498383612bb6565b905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f7420616c6c6f77000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b611f438361128b565b15611f99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613861603e913960400191505060405180910390fd5b600082826020811015611fab57600080fd5b81019080803590602001909291905050509050611fc884826128c9565b50505050565b6000611fe482600661221b90919063ffffffff16565b9050919050565b611ff3611aea565b612065576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61206e81612c4d565b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612100611aea565b612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61217b816125da565b50565b612186611aea565b6121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61220181612ca7565b50565b6000612211338484612deb565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061381a6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806137236029913960400191505060405180910390fd5b61239481600354612fe290919063ffffffff16565b6003819055506123ec81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a38173ffffffffffffffffffffffffffffffffffffffff167f222838db2794d11532d940e8dec38ae307ed0b63cd97c233322e221f998767a6826040518082815260200191505060405180910390a25050565b6000600560009054906101000a900460ff161561256c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61257784848461306b565b90509392505050565b61259481600761311c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fba73eacdfe215f630abb6a8a78e5be613e50918b52e691bba35d46c06e20d6c860405160405180910390a250565b6125ee81600661311c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f15bf0aef1cc552f782bc5ad7121d42ea78efbfbec8dd9e16fb9f37967ad763fb60405160405180910390a250565b60006126cf33846126ca85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b612deb565b6001905092915050565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f44d5fe68b00f68950fb9c1ff0a61ef7f747b1a36359a7e3a7f3324db4b87896760405160405180910390a250565b61278b81600461311c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1747ca720b1a174a464b6513ace29b1d3190b5f632b9f34147017c81425bfde860405160405180910390a250565b61288381600461326190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561294f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806135f46026913960400191505060405180910390fd5b612964816003546131d990919063ffffffff16565b6003819055506129bc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a38173ffffffffffffffffffffffffffffffffffffffff167fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c16826040518082815260200191505060405180910390a25050565b612acb81600661326190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f9e8b5fbf24fd7f86d2666e8f27ffdeb7c0aa870faa1980ad7290677152938dfa60405160405180910390a250565b6000612bac3384612ba785600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b612deb565b6001905092915050565b6000600560009054906101000a900460ff1615612c3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612c45838361333c565b905092915050565b612c6181600761326190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061366d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061389f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136936022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008282111561305a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b6000613078848484613353565b613111843361310c85600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b612deb565b600190509392505050565b613126828261221b565b61317b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137f96021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015613257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61326b828261221b565b156132de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000613349338484613353565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061383c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561345f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061361a6023913960400191505060405180910390fd5b6134b181600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fe290919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061354681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131d990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe436f696e466163746f72793a20697373756520746f20746865207a65726f206164647265737345524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e3a2066726f6d20696e20626c61636b6c6973742063616e2774207472616e73666572436f696e466163746f727941646d696e526f6c653a206f6e6c792061646472657373206f6e776572206f7220436f696e466163746f727941646d696e2063616e2072656465656d436f696e466163746f72793a2072656465656d2066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e73666572426c61636b6c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652074686520426c61636b6c69737441646d696e20726f6c65436f696e466163746f727941646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652074686520436f696e466163746f727941646d696e20726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373546f6b656e3a206e6f7420616c6c6f7720746f207472616e7366657220746f20726563697069656e74206164647265737320696e20626c61636b6c69737445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e7366657246726f6da265627a7a7231582056fb8f27f1e87f00577cfb6981abe302a21828cabf7c68f480761f4bc04bf77264736f6c63430005110032

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000008434320546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024343000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CC Token
Arg [1] : _symbol (string): CC
Arg [2] : _decimals (uint8): 18

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 434320546f6b656e000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4343000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13861:2446:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13861:2446:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13943:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13943:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9142:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9142:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12021:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12021:125:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5897:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11226:286;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11226:286:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14727:436;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14727:436:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12390:93;;;:::i;:::-;;16126:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16126:178:0;;;;;;;;;;;;;;;;;:::i;:::-;;13995:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10560:97;;;:::i;:::-;;13028:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13028:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14296:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14296:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9290:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9290:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13146:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13146:203:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13146:203:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13146:203:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;13146:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13146:203:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4705:118;;;:::i;:::-;;3404:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3404:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4293:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12269:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12269:113:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3620:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3620:97:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3725:77;;;:::i;:::-;;5996:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5996:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13357:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13357:209:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13357:209:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13357:209:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;13357:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;13357:209:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3521:91;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3521:91:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;4581:116;;;:::i;:::-;;11063:155;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11063:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1475:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1676:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13968:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13968:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10316:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10316:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9465:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9465:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14396:323;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14396:323:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14060:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15544:327;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15544:327:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;15544:327:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;15544:327:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;15544:327:0;;;;;;;;;;;;:::i;:::-;;10179:129;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10179:129:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12154:107;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12154:107:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6278:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6278:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10435:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10435:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;1936:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1936:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13943:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9142:140::-;9221:4;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9245:29;9259:7;9268:5;9245:13;:29::i;:::-;9238:36;;9142:140;;;;:::o;12021:125::-;12085:4;12109:29;12130:7;12109:16;:20;;:29;;;;:::i;:::-;12102:36;;12021:125;;;:::o;5897:91::-;5941:7;5968:12;;5961:19;;5897:91;:::o;11226:286::-;11291:4;11330:7;11316:21;;:10;:21;;;:55;;;;11341:30;11360:10;11341:18;:30::i;:::-;11316:55;11308:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11458:24;11466:7;11475:6;11458:7;:24::i;:::-;11500:4;11493:11;;11226:286;;;;:::o;14727:436::-;14820:4;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14846:23;14858:10;14846:11;:23::i;:::-;14845:24;14837:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14939:17;14951:4;14939:11;:17::i;:::-;14938:18;14930:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15020:15;15032:2;15020:11;:15::i;:::-;15019:16;15011:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15120:35;15139:4;15145:2;15149:5;15120:18;:35::i;:::-;15113:42;;14727:436;;;;;:::o;12390:93::-;12442:33;12464:10;12442:21;:33::i;:::-;12390:93::o;16126:178::-;16189:23;16201:10;16189:11;:23::i;:::-;16188:24;16180:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16269:27;16277:10;16289:6;16269:7;:27::i;:::-;16126:178;:::o;13995:21::-;;;;;;;;;;;;;:::o;10560:97::-;10614:35;10638:10;10614:23;:35::i;:::-;10560:97::o;13028:110::-;13087:4;13111:10;:19;13122:7;13111:19;;;;;;;;;;;;;;;;;;;;;;;;;13104:26;;13028:110;;;:::o;14296:92::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14372:8;14362:7;;:18;;;;;;;;;;;;;;;;;;14296:92;:::o;9290:167::-;9381:4;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9405:44;9429:7;9438:10;9405:23;:44::i;:::-;9398:51;;9290:167;;;;:::o;13146:203::-;13230:4;11896:28;11913:10;11896:16;:28::i;:::-;11888:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13251:6;13260:1;13251:10;;13247:95;13267:8;:15;13263:1;:19;13247:95;;;13304:26;13318:8;13327:1;13318:11;;;;;;;;;;;;;;13304:13;:26::i;:::-;13284:3;;;;;;;13247:95;;;;13146:203;;;:::o;4705:118::-;3303:20;3312:10;3303:8;:20::i;:::-;3295:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4521:7;;;;;;;;;;;4513:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4774:5;4764:7;;:15;;;;;;;;;;;;;;;;;;4795:20;4804:10;4795:20;;;;;;;;;;;;;;;;;;;;;;4705:118::o;3404:109::-;3460:4;3484:21;3497:7;3484:8;:12;;:21;;;;:::i;:::-;3477:28;;3404:109;;;:::o;4293:78::-;4332:4;4356:7;;;;;;;;;;;4349:14;;4293:78;:::o;12269:113::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12344:30;12366:7;12344:21;:30::i;:::-;12269:113;:::o;3620:97::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3687:22;3701:7;3687:13;:22::i;:::-;3620:97;:::o;3725:77::-;3769:25;3783:10;3769:13;:25::i;:::-;3725:77::o;5996:110::-;6053:7;6080:9;:18;6090:7;6080:18;;;;;;;;;;;;;;;;6073:25;;5996:110;;;:::o;13357:209::-;13444:4;11896:28;11913:10;11896:16;:28::i;:::-;11888:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:6;13474:1;13465:10;;13461:98;13481:8;:15;13477:1;:19;13461:98;;;13518:29;13535:8;13544:1;13535:11;;;;;;;;;;;;;;13518:16;:29::i;:::-;13498:3;;;;;;;13461:98;;;;13357:209;;;:::o;3521:91::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3585:19;3596:7;3585:10;:19::i;:::-;3521:91;:::o;4581:116::-;3303:20;3312:10;3303:8;:20::i;:::-;3295:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4651:4;4641:7;;:14;;;;;;;;;;;;;;;;;;4671:18;4678:10;4671:18;;;;;;;;;;;;;;;;;;;;;;4581:116::o;11063:155::-;11148:4;10048:30;10067:10;10048:18;:30::i;:::-;10040:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11165:23;11172:7;11181:6;11165;:23::i;:::-;11206:4;11199:11;;11063:155;;;;:::o;1475:79::-;1513:7;1540:6;;;;;;;;;;;1533:13;;1475:79;:::o;1676:92::-;1716:4;1754:6;;;;;;;;;;;1740:20;;:10;:20;;;1733:27;;1676:92;:::o;13968:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10316:111::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10390:29;10411:7;10390:20;:29::i;:::-;10316:111;:::o;9465:177::-;9561:4;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9585:49;9609:7;9618:15;9585:23;:49::i;:::-;9578:56;;9465:177;;;;:::o;14396:323::-;14471:4;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14497:23;14509:10;14497:11;:23::i;:::-;14496:24;14488:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14586:15;14598:2;14586:11;:15::i;:::-;14585:16;14577:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14686:25;14701:2;14705:5;14686:14;:25::i;:::-;14679:32;;14396:323;;;;:::o;14060:22::-;;;;;;;;;;;;;:::o;15544:327::-;15645:7;;;;;;;;;;;15631:21;;:10;:21;;;15623:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15686:17;15698:4;15686:11;:17::i;:::-;15685:18;15677:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15781:14;15809:11;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15798:34:0;;;;;;;;;;;;;;;;15781:51;;15843:20;15850:4;15856:6;15843;:20::i;:::-;15544:327;;;;:::o;10179:129::-;10245:4;10269:31;10292:7;10269:18;:22;;:31;;;;:::i;:::-;10262:38;;10179:129;;;:::o;12154:107::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12226:27;12245:7;12226:18;:27::i;:::-;12154:107;:::o;6278:134::-;6350:7;6377:11;:18;6389:5;6377:18;;;;;;;;;;;;;;;:27;6396:7;6377:27;;;;;;;;;;;;;;;;6370:34;;6278:134;;;;:::o;10435:117::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10512:32;10536:7;10512:23;:32::i;:::-;10435:117;:::o;1936:109::-;1602:9;:7;:9::i;:::-;1594:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2009:28;2028:8;2009:18;:28::i;:::-;1936:109;:::o;6420:148::-;6485:4;6502:36;6511:10;6523:7;6532:5;6502:8;:36::i;:::-;6556:4;6549:11;;6420:148;;;;:::o;2762:203::-;2834:4;2878:1;2859:21;;:7;:21;;;;2851:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2937:4;:11;;:20;2949:7;2937:20;;;;;;;;;;;;;;;;;;;;;;;;;2930:27;;2762:203;;;;:::o;8420:354::-;8516:1;8497:21;;:7;:21;;;;8489:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8592:23;8609:5;8592:12;;:16;;:23;;;;:::i;:::-;8577:12;:38;;;;8647:29;8670:5;8647:9;:18;8657:7;8647:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;8626:9;:18;8636:7;8626:18;;;;;;;;;;;;;;;:50;;;;8718:1;8692:36;;8701:7;8692:36;;;8722:5;8692:36;;;;;;;;;;;;;;;;;;8751:7;8744:22;;;8760:5;8744:22;;;;;;;;;;;;;;;;;;8420:354;;:::o;8974:160::-;9067:4;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9091:35;9110:4;9116:2;9120:5;9091:18;:35::i;:::-;9084:42;;8974:160;;;;;:::o;12645:154::-;12713:32;12737:7;12713:16;:23;;:32;;;;:::i;:::-;12783:7;12761:30;;;;;;;;;;;;12645:154;:::o;10829:164::-;10899:34;10925:7;10899:18;:25;;:34;;;;:::i;:::-;10977:7;10949:36;;;;;;;;;;;;10829:164;:::o;6840:206::-;6920:4;6937:79;6946:10;6958:7;6967:48;7004:10;6967:11;:23;6979:10;6967:23;;;;;;;;;;;;;;;:32;6991:7;6967:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;6937:8;:79::i;:::-;7034:4;7027:11;;6840:206;;;;:::o;13574:133::-;13656:4;13634:10;:19;13645:7;13634:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;13691:7;13676:23;;;;;;;;;;;;13574:133;:::o;3940:130::-;4000:24;4016:7;4000:8;:15;;:24;;;;:::i;:::-;4054:7;4040:22;;;;;;;;;;;;3940:130;:::o;13715:139::-;13800:5;13778:10;:19;13789:7;13778:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;13838:7;13821:25;;;;;;;;;;;;13715:139;:::o;3810:122::-;3867:21;3880:7;3867:8;:12;;:21;;;;:::i;:::-;3916:7;3904:20;;;;;;;;;;;;3810:122;:::o;8058:354::-;8154:1;8135:21;;:7;:21;;;;8127:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8227:24;8244:6;8227:12;;:16;;:24;;;;:::i;:::-;8212:12;:39;;;;8283:30;8306:6;8283:9;:18;8293:7;8283:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;8262:9;:18;8272:7;8262:18;;;;;;;;;;;;;;;:51;;;;8350:7;8329:37;;8346:1;8329:37;;;8359:6;8329:37;;;;;;;;;;;;;;;;;;8388:7;8382:22;;;8397:6;8382:22;;;;;;;;;;;;;;;;;;8058:354;;:::o;10665:156::-;10732:31;10755:7;10732:18;:22;;:31;;;;:::i;:::-;10805:7;10779:34;;;;;;;;;;;;10665:156;:::o;7054:216::-;7139:4;7156:84;7165:10;7177:7;7186:53;7223:15;7186:11;:23;7198:10;7186:23;;;;;;;;;;;;;;;:32;7210:7;7186:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;7156:8;:84::i;:::-;7258:4;7251:11;;7054:216;;;;:::o;8834:132::-;8909:4;4424:7;;;;;;;;;;;4423:8;4415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8933:25;8948:2;8952:5;8933:14;:25::i;:::-;8926:32;;8834:132;;;;:::o;12491:146::-;12556:29;12577:7;12556:16;:20;;:29;;;;:::i;:::-;12621:7;12601:28;;;;;;;;;;;;12491:146;:::o;2053:229::-;2147:1;2127:22;;:8;:22;;;;2119:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2237:8;2208:38;;2229:6;;;;;;;;;;;2208:38;;;;;;;;;;;;2266:8;2257:6;;:17;;;;;;;;;;;;;;;;;;2053:229;:::o;7715:335::-;7825:1;7808:19;;:5;:19;;;;7800:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7906:1;7887:21;;:7;:21;;;;7879:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7990:5;7960:11;:18;7972:5;7960:18;;;;;;;;;;;;;;;:27;7979:7;7960:27;;;;;;;;;;;;;;;:35;;;;8027:7;8011:31;;8020:5;8011:31;;;8036:5;8011:31;;;;;;;;;;;;;;;;;;7715:335;;;:::o;315:184::-;373:7;406:1;401;:6;;393:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;453:9;469:1;465;:5;453:17;;490:1;483:8;;;315:184;;;;:::o;6576:256::-;6665:4;6682:36;6692:6;6700:9;6711:6;6682:9;:36::i;:::-;6729:73;6738:6;6746:10;6758:43;6794:6;6758:11;:19;6770:6;6758:19;;;;;;;;;;;;;;;:31;6778:10;6758:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;6729:8;:73::i;:::-;6820:4;6813:11;;6576:256;;;;;:::o;2571:183::-;2651:18;2655:4;2661:7;2651:3;:18::i;:::-;2643:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2741:5;2718:4;:11;;:20;2730:7;2718:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2571:183;;:::o;126:181::-;184:7;204:9;220:1;216;:5;204:17;;245:1;240;:6;;232:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;298:1;291:8;;;126:181;;;;:::o;2385:178::-;2463:18;2467:4;2473:7;2463:3;:18::i;:::-;2462:19;2454:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2551:4;2528;:11;;:20;2540:7;2528:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;2385:178;;:::o;6114:156::-;6183:4;6200:40;6210:10;6222:9;6233:6;6200:9;:40::i;:::-;6258:4;6251:11;;6114:156;;;;:::o;7278:429::-;7394:1;7376:20;;:6;:20;;;;7368:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7478:1;7457:23;;:9;:23;;;;7449:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7553:29;7575:6;7553:9;:17;7563:6;7553:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;7533:9;:17;7543:6;7533:17;;;;;;;;;;;;;;;:49;;;;7616:32;7641:6;7616:9;:20;7626:9;7616:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7593:9;:20;7603:9;7593:20;;;;;;;;;;;;;;;:55;;;;7681:9;7664:35;;7673:6;7664:35;;;7692:6;7664:35;;;;;;;;;;;;;;;;;;7278:429;;;:::o

Swarm Source

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