ETH Price: $3,160.09 (+1.40%)
Gas: 2 Gwei

Token

Bitcoin Shares (BSHARES)
 

Overview

Max Total Supply

8,000,000 BSHARES

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
150 BSHARES

Value
$0.00
0x36744b9e03966920e5b8c03b25770bed753c6372
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:
BitcoinShares

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-15
*/

pragma solidity ^0.4.24;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
 
library SafeMath {

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return a / b;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

contract ForeignToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public constant returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract BitcoinShares is ERC20 { 
    
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => bool) public Claimed; 

    string public constant name = "Bitcoin Shares";
    string public constant symbol = "BSHARES";
    uint public constant decimals = 18;
    uint public deadline = now + 65 * 1 days;
    uint public round2 = now + 35 * 1 days;
    uint public round1 = now + 20 * 1 days;
    
    uint256 public totalSupply = 8000000e18;
    uint256 public totalDistributed;
    uint256 public constant requestMinimum = 1 ether / 20; // 0.05 Ether
    uint256 public tokensPerEth = 3000e18;
    
    uint public target0drop = 0;  
    uint public progress0drop = 0;


    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();
    
    event Airdrop(address indexed _owner, uint _amount, uint _balance);

    event TokensPerEthUpdated(uint _tokensPerEth);
    
    event Burn(address indexed burner, uint256 value);
    
    event Add(uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    constructor() public {
        uint256 teamFund = 250000e18;
        owner = msg.sender;
        distr(owner, teamFund);
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        emit DistrFinished();
        return true;
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);        
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }
    
    function Distribute(address _participant, uint _amount) onlyOwner internal {

        require( _amount > 0 );      
        require( totalDistributed < totalSupply );
        balances[_participant] = balances[_participant].add(_amount);
        totalDistributed = totalDistributed.add(_amount);

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }

        // log
        emit Airdrop(_participant, _amount, balances[_participant]);
        emit Transfer(address(0), _participant, _amount);
    }
    
    function DistributeAirdrop(address _participant, uint _amount) onlyOwner external {        
        Distribute(_participant, _amount);
    }

    function DistributeAirdropMultiple(address[] _addresses, uint _amount) onlyOwner external {        
        for (uint i = 0; i < _addresses.length; i++) Distribute(_addresses[i], _amount);
    }

    function updateTokensPerEth(uint _tokensPerEth) public onlyOwner {        
        tokensPerEth = _tokensPerEth;
        emit TokensPerEthUpdated(_tokensPerEth);
    }
           
    function () external payable {
        getTokens();
     }

    function getTokens() payable canDistr  public {
        uint256 tokens = 0;
        uint256 bonus = 0;
        uint256 countbonus = 0;
        uint256 bonusCond1 = 1 ether / 100;
        uint256 bonusCond2 = 1 ether / 50;
        uint256 bonusCond3 = 1 ether / 20;

        tokens = tokensPerEth.mul(msg.value) / 1 ether;        
        address investor = msg.sender;

        if (msg.value >= requestMinimum && now < deadline && now < round1 && now < round2) {
            if(msg.value >= bonusCond1 && msg.value < bonusCond2){
                countbonus = tokens * 20 / 100;
            }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 25 / 100; 
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 35 / 100;
            }
        }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){
            if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 20 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 25 / 100;
            }
        }else{
            countbonus = 0;
        }

        bonus = tokens + countbonus;
        
        if (tokens == 0) {
            uint256 valdrop = 30e18;
            if (Claimed[investor] == false && progress0drop <= target0drop ) {
                distr(investor, valdrop);
                Claimed[investor] = true;
                progress0drop++;
            }else{
                require( msg.value >= requestMinimum );
            }
        }else if(tokens > 0 && msg.value >= requestMinimum){
            if( now >= deadline && now >= round1 && now < round2){
                distr(investor, tokens);
            }else{
                if(msg.value >= bonusCond1){
                    distr(investor, bonus);
                }else{
                    distr(investor, tokens);
                }   
            }
        }else{
            require( msg.value >= requestMinimum );
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
    }
    
    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function WhoseAll() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }

    function Whose(uint256 _wdamount) onlyOwner public {
        uint256 wantAmount = _wdamount;
        owner.transfer(wantAmount);
    }

    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);
        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
    
    function add(uint256 _value) onlyOwner public {
        uint256 counter = totalSupply.add(_value);
        totalSupply = counter; 
        emit Add(_value);
    }
    
    
    function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"add","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"round2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_wdamount","type":"uint256"}],"name":"Whose","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"requestMinimum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"round1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"progress0drop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"Claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"target0drop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdropMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"WhoseAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"}],"name":"Add","type":"event"}]

608060405260018054600160a060020a031916331790556255b18042908101600555622e24808101600655621a5e00016007556a069e10de76676d0800000060085568a2a15d09519be00000600a556000600b819055600c55600d805460ff1916905534801561006e57600080fd5b5060018054600160a060020a0319163317908190556934f086f3b33b68400000906100ab90600160a060020a0316826401000000006100b2810204565b50506101c1565b600d5460009060ff16156100c557600080fd5b6009546100df90836401000000006112b56101ae82021704565b600955600160a060020a03831660009081526002602052604090205461011290836401000000006112b56101ae82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156101bb57fe5b92915050565b61144a80620001d16000396000f30060806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf578063313ce567146102d457806342966c68146102e9578063532b581c146103015780636c5b71aa1461031657806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d57806395d89b41146103b25780639b1cbccc146103c75780639ea407be146103dc578063a9059cbb146103f4578063aa6ca8081461018a578063b449c24d14610418578063c108d54214610439578063c489744b1461044e578063cbdd69b514610475578063dd62ed3e1461048a578063e58fc54c146104b1578063e6a092f5146104d2578063efca2eed146104e7578063f2fde38b146104fc578063f3ccb4011461051d578063f86bd8ab14610541575b610192610556565b005b3480156101a057600080fd5b506101a9610814565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a036004351660243561084b565b604080519115158252519081900360200190f35b34801561026257600080fd5b506101926004356108f3565b34801561027a57600080fd5b50610283610960565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a0360043581169060243516604435610966565b3480156102cb57600080fd5b50610283610ad9565b3480156102e057600080fd5b50610283610adf565b3480156102f557600080fd5b50610192600435610ae4565b34801561030d57600080fd5b50610283610bc3565b34801561032257600080fd5b50610192600435610bc9565b34801561033a57600080fd5b50610283600160a060020a0360043516610c23565b34801561035b57600080fd5b50610283610c3e565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c49565b34801561039457600080fd5b50610283610c6e565b3480156103a957600080fd5b50610283610c74565b3480156103be57600080fd5b506101a9610c7a565b3480156103d357600080fd5b50610242610cb1565b3480156103e857600080fd5b50610192600435610d17565b34801561040057600080fd5b50610242600160a060020a0360043516602435610d69565b34801561042457600080fd5b50610242600160a060020a0360043516610e48565b34801561044557600080fd5b50610242610e5d565b34801561045a57600080fd5b50610283600160a060020a0360043581169060243516610e66565b34801561048157600080fd5b50610283610f17565b34801561049657600080fd5b50610283600160a060020a0360043581169060243516610f1d565b3480156104bd57600080fd5b50610242600160a060020a0360043516610f48565b3480156104de57600080fd5b5061028361109c565b3480156104f357600080fd5b506102836110a2565b34801561050857600080fd5b50610192600160a060020a03600435166110a8565b34801561052957600080fd5b506101926024600480358281019291013590356110fa565b34801561054d57600080fd5b50610192611153565b600d54600090819081908190819081908190819060ff161561057757600080fd5b600a5460009850889750879650662386f26fc10000955066470de4df820000945066b1a2bc2ec500009350670de0b6b3a7640000906105bc903463ffffffff6111b016565b8115156105c557fe5b04975033915066b1a2bc2ec5000034101580156105e3575060055442105b80156105f0575060075442105b80156105fd575060065442105b1561065b5784341015801561061157508334105b15610625576064601489025b049550610656565b83341015801561063457508234105b156106445760646019890261061d565b348311610656576064602389025b0495505b6106c8565b66b1a2bc2ec500003410158015610673575060055442105b8015610680575060075442115b801561068d575060065442105b156106c3578334101580156106a157508234105b156106b15760646014890261061d565b34831161065657606460198902610652565b600095505b878601965087151561076a5750600160a060020a0381166000908152600460205260409020546801a055690d9db800009060ff1615801561070d5750600b54600c5411155b156107515761071c82826111d9565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610765565b66b1a2bc2ec5000034101561076557600080fd5b6107f1565b600088118015610781575066b1a2bc2ec500003410155b156107dd57600554421015801561079a57506007544210155b80156107a7575060065442105b156107bc576107b682896111d9565b50610765565b3485116107cd576107b682886111d9565b6107d782896111d9565b506107f1565b66b1a2bc2ec500003410156107f157600080fd5b6008546009541061080a57600d805460ff191660011790555b5050505050505050565b60408051808201909152600e81527f426974636f696e20536861726573000000000000000000000000000000000000602082015281565b6000811580159061087e5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561088b575060006108ed565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461090d57600080fd5b600854610920908363ffffffff6112b516565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561097557fe5b600160a060020a038416151561098a57600080fd5b600160a060020a0385166000908152600260205260409020548311156109af57600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109df57600080fd5b600160a060020a038516600090815260026020526040902054610a08908463ffffffff6112c216565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a45908463ffffffff6112c216565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a89908463ffffffff6112b516565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916926000805160206113ff83398151915292918290030190a3506001949350505050565b60055481565b601281565b600154600090600160a060020a03163314610afe57600080fd5b33600090815260026020526040902054821115610b1a57600080fd5b5033600081815260026020526040902054610b3b908363ffffffff6112c216565b600160a060020a038216600090815260026020526040902055600854610b67908363ffffffff6112c216565b600855600954610b7d908363ffffffff6112c216565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600154600090600160a060020a03163314610be357600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610c1e573d6000803e3d6000fd5b505050565b600160a060020a031660009081526002602052604090205490565b66b1a2bc2ec5000081565b600154600160a060020a03163314610c6057600080fd5b610c6a82826112d4565b5050565b60075481565b600c5481565b60408051808201909152600781527f4253484152455300000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610ccb57600080fd5b600d5460ff1615610cdb57600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d2e57600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610d7857fe5b600160a060020a0384161515610d8d57600080fd5b33600090815260026020526040902054831115610da957600080fd5b33600090815260026020526040902054610dc9908463ffffffff6112c216565b3360009081526002602052604080822092909255600160a060020a03861681522054610dfb908463ffffffff6112b516565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206113ff8339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ee257600080fd5b505af1158015610ef6573d6000803e3d6000fd5b505050506040513d6020811015610f0c57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a03163314610f6657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b158015610fca57600080fd5b505af1158015610fde573d6000803e3d6000fd5b505050506040513d6020811015610ff457600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561106857600080fd5b505af115801561107c573d6000803e3d6000fd5b505050506040513d602081101561109257600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a031633146110bf57600080fd5b600160a060020a038116156110f7576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a0316331461111457600080fd5b5060005b8281101561114d5761114584848381811061112f57fe5b90506020020135600160a060020a0316836112d4565b600101611118565b50505050565b6001546000908190600160a060020a0316331461116f57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610c1e573d6000803e3d6000fd5b60008215156111c1575060006108ed565b508181028183828115156111d157fe5b04146108ed57fe5b600d5460009060ff16156111ec57600080fd5b6009546111ff908363ffffffff6112b516565b600955600160a060020a03831660009081526002602052604090205461122b908363ffffffff6112b516565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206113ff8339815191529181900360200190a350600192915050565b818101828110156108ed57fe5b6000828211156112ce57fe5b50900390565b600154600160a060020a031633146112eb57600080fd5b600081116112f857600080fd5b6008546009541061130857600080fd5b600160a060020a038216600090815260026020526040902054611331908263ffffffff6112b516565b600160a060020a03831660009081526002602052604090205560095461135d908263ffffffff6112b516565b60098190556008541161137857600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206113ff8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058208c2e44e5356b1f8aff5d11540765e3682f2cb5e82027445eeab5c84ab84d73330029

Deployed Bytecode

0x60806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf578063313ce567146102d457806342966c68146102e9578063532b581c146103015780636c5b71aa1461031657806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d57806395d89b41146103b25780639b1cbccc146103c75780639ea407be146103dc578063a9059cbb146103f4578063aa6ca8081461018a578063b449c24d14610418578063c108d54214610439578063c489744b1461044e578063cbdd69b514610475578063dd62ed3e1461048a578063e58fc54c146104b1578063e6a092f5146104d2578063efca2eed146104e7578063f2fde38b146104fc578063f3ccb4011461051d578063f86bd8ab14610541575b610192610556565b005b3480156101a057600080fd5b506101a9610814565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a036004351660243561084b565b604080519115158252519081900360200190f35b34801561026257600080fd5b506101926004356108f3565b34801561027a57600080fd5b50610283610960565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a0360043581169060243516604435610966565b3480156102cb57600080fd5b50610283610ad9565b3480156102e057600080fd5b50610283610adf565b3480156102f557600080fd5b50610192600435610ae4565b34801561030d57600080fd5b50610283610bc3565b34801561032257600080fd5b50610192600435610bc9565b34801561033a57600080fd5b50610283600160a060020a0360043516610c23565b34801561035b57600080fd5b50610283610c3e565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c49565b34801561039457600080fd5b50610283610c6e565b3480156103a957600080fd5b50610283610c74565b3480156103be57600080fd5b506101a9610c7a565b3480156103d357600080fd5b50610242610cb1565b3480156103e857600080fd5b50610192600435610d17565b34801561040057600080fd5b50610242600160a060020a0360043516602435610d69565b34801561042457600080fd5b50610242600160a060020a0360043516610e48565b34801561044557600080fd5b50610242610e5d565b34801561045a57600080fd5b50610283600160a060020a0360043581169060243516610e66565b34801561048157600080fd5b50610283610f17565b34801561049657600080fd5b50610283600160a060020a0360043581169060243516610f1d565b3480156104bd57600080fd5b50610242600160a060020a0360043516610f48565b3480156104de57600080fd5b5061028361109c565b3480156104f357600080fd5b506102836110a2565b34801561050857600080fd5b50610192600160a060020a03600435166110a8565b34801561052957600080fd5b506101926024600480358281019291013590356110fa565b34801561054d57600080fd5b50610192611153565b600d54600090819081908190819081908190819060ff161561057757600080fd5b600a5460009850889750879650662386f26fc10000955066470de4df820000945066b1a2bc2ec500009350670de0b6b3a7640000906105bc903463ffffffff6111b016565b8115156105c557fe5b04975033915066b1a2bc2ec5000034101580156105e3575060055442105b80156105f0575060075442105b80156105fd575060065442105b1561065b5784341015801561061157508334105b15610625576064601489025b049550610656565b83341015801561063457508234105b156106445760646019890261061d565b348311610656576064602389025b0495505b6106c8565b66b1a2bc2ec500003410158015610673575060055442105b8015610680575060075442115b801561068d575060065442105b156106c3578334101580156106a157508234105b156106b15760646014890261061d565b34831161065657606460198902610652565b600095505b878601965087151561076a5750600160a060020a0381166000908152600460205260409020546801a055690d9db800009060ff1615801561070d5750600b54600c5411155b156107515761071c82826111d9565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610765565b66b1a2bc2ec5000034101561076557600080fd5b6107f1565b600088118015610781575066b1a2bc2ec500003410155b156107dd57600554421015801561079a57506007544210155b80156107a7575060065442105b156107bc576107b682896111d9565b50610765565b3485116107cd576107b682886111d9565b6107d782896111d9565b506107f1565b66b1a2bc2ec500003410156107f157600080fd5b6008546009541061080a57600d805460ff191660011790555b5050505050505050565b60408051808201909152600e81527f426974636f696e20536861726573000000000000000000000000000000000000602082015281565b6000811580159061087e5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561088b575060006108ed565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461090d57600080fd5b600854610920908363ffffffff6112b516565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b60006060606436101561097557fe5b600160a060020a038416151561098a57600080fd5b600160a060020a0385166000908152600260205260409020548311156109af57600080fd5b600160a060020a03851660009081526003602090815260408083203384529091529020548311156109df57600080fd5b600160a060020a038516600090815260026020526040902054610a08908463ffffffff6112c216565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a45908463ffffffff6112c216565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610a89908463ffffffff6112b516565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916926000805160206113ff83398151915292918290030190a3506001949350505050565b60055481565b601281565b600154600090600160a060020a03163314610afe57600080fd5b33600090815260026020526040902054821115610b1a57600080fd5b5033600081815260026020526040902054610b3b908363ffffffff6112c216565b600160a060020a038216600090815260026020526040902055600854610b67908363ffffffff6112c216565b600855600954610b7d908363ffffffff6112c216565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600154600090600160a060020a03163314610be357600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610c1e573d6000803e3d6000fd5b505050565b600160a060020a031660009081526002602052604090205490565b66b1a2bc2ec5000081565b600154600160a060020a03163314610c6057600080fd5b610c6a82826112d4565b5050565b60075481565b600c5481565b60408051808201909152600781527f4253484152455300000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610ccb57600080fd5b600d5460ff1615610cdb57600080fd5b600d805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610d2e57600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610d7857fe5b600160a060020a0384161515610d8d57600080fd5b33600090815260026020526040902054831115610da957600080fd5b33600090815260026020526040902054610dc9908463ffffffff6112c216565b3360009081526002602052604080822092909255600160a060020a03861681522054610dfb908463ffffffff6112b516565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206113ff8339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610ee257600080fd5b505af1158015610ef6573d6000803e3d6000fd5b505050506040513d6020811015610f0c57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a03163314610f6657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b158015610fca57600080fd5b505af1158015610fde573d6000803e3d6000fd5b505050506040513d6020811015610ff457600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561106857600080fd5b505af115801561107c573d6000803e3d6000fd5b505050506040513d602081101561109257600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a031633146110bf57600080fd5b600160a060020a038116156110f7576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a0316331461111457600080fd5b5060005b8281101561114d5761114584848381811061112f57fe5b90506020020135600160a060020a0316836112d4565b600101611118565b50505050565b6001546000908190600160a060020a0316331461116f57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610c1e573d6000803e3d6000fd5b60008215156111c1575060006108ed565b508181028183828115156111d157fe5b04146108ed57fe5b600d5460009060ff16156111ec57600080fd5b6009546111ff908363ffffffff6112b516565b600955600160a060020a03831660009081526002602052604090205461122b908363ffffffff6112b516565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206113ff8339815191529181900360200190a350600192915050565b818101828110156108ed57fe5b6000828211156112ce57fe5b50900390565b600154600160a060020a031633146112eb57600080fd5b600081116112f857600080fd5b6008546009541061130857600080fd5b600160a060020a038216600090815260026020526040902054611331908263ffffffff6112b516565b600160a060020a03831660009081526002602052604090205560095461135d908263ffffffff6112b516565b60098190556008541161137857600d805460ff191660011790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206113ff8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058208c2e44e5356b1f8aff5d11540765e3682f2cb5e82027445eeab5c84ab84d73330029

Deployed Bytecode Sourcemap

2131:8768:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5660:11;:9;:11::i;:::-;2131:8768;2403:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2403:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2403:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9093:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9093:296:0;-1:-1:-1;;;;;9093:296:0;;;;;;;;;;;;;;;;;;;;;;;;;10452:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10452:166:0;;;;;2688:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2688:39:0;;;;;;;;;;;;;;;;;;;;8544:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8544:537:0;-1:-1:-1;;;;;8544:537:0;;;;;;;;;;;;2545:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2545:40:0;;;;2504:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2504:34:0;;;;10097:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10097:343:0;;;;;2592:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2592:38:0;;;;9952:137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9952:137:0;;;;;7897:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7897:111:0;-1:-1:-1;;;;;7897:111:0;;;;;2772:53;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2772:53:0;;;;5077:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5077:142:0;-1:-1:-1;;;;;5077:142:0;;;;;;;2637:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2637:38:0;;;;2932:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2932:29:0;;;;2456:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2456:41:0;;;;4001:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4001:170:0;;;;5431;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5431:170:0;;;;;8130:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8130:402:0;-1:-1:-1;;;;;8130:402:0;;;;;;;2353:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2353:40:0;-1:-1:-1;;;;;2353:40:0;;;;;3462;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3462:40:0;;;;9551:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9551:211:0;-1:-1:-1;;;;;9551:211:0;;;;;;;;;;2846:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2846:37:0;;;;9401:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9401:138:0;-1:-1:-1;;;;;9401:138:0;;;;;;;;;;10636:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10636:260:0;-1:-1:-1;;;;;10636:260:0;;;;;2896:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2896:27:0;;;;2734:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2734:31:0;;;;3842:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3842:151:0;-1:-1:-1;;;;;3842:151:0;;;;;5227:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5227:196:0;;;;;;;;;;;;;;;;9774:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9774:170:0;;;;5688:2197;3555:20;;5745:14;;;;;;;;;;;;;;;;3555:20;;3554:21;3546:30;;;;;;5979:12;;5762:1;;-1:-1:-1;5762:1:0;;-1:-1:-1;5762:1:0;;-1:-1:-1;5856:13:0;;-1:-1:-1;5901:12:0;;-1:-1:-1;5945:12:0;;-1:-1:-1;6009:7:0;;5979:27;;5996:9;5979:27;:16;:27;:::i;:::-;:37;;;;;;;;5970:46;;6054:10;6035:29;;2813:12;6081:9;:27;;:45;;;;;6118:8;;6112:3;:14;6081:45;:61;;;;;6136:6;;6130:3;:12;6081:61;:77;;;;;6152:6;;6146:3;:12;6081:77;6077:820;;;6191:10;6178:9;:23;;:49;;;;;6217:10;6205:9;:22;6178:49;6175:339;;;6274:3;6269:2;6260:11;;:17;;6247:30;;6175:339;;;6314:10;6301:9;:23;;:49;;;;;6340:10;6328:9;:22;6301:49;6298:216;;;6397:3;6392:2;6383:11;;:17;;6298:216;6425:9;:23;-1:-1:-1;6422:92:0;;6495:3;6490:2;6481:11;;:17;;6468:30;;6422:92;6077:820;;;2813:12;6533:9;:27;;:45;;;;;6570:8;;6564:3;:14;6533:45;:61;;;;;6588:6;;6582:3;:12;6533:61;:77;;;;;6604:6;;6598:3;:12;6533:77;6530:367;;;6642:10;6629:9;:23;;:49;;;;;6668:10;6656:9;:22;6629:49;6626:215;;;6725:3;6720:2;6711:11;;:17;;6626:215;6752:9;:23;-1:-1:-1;6749:92:0;;6822:3;6817:2;6808:11;;:17;;6530:367;6884:1;6871:14;;6530:367;6917:19;;;;-1:-1:-1;6961:11:0;;6957:818;;;-1:-1:-1;;;;;;7031:17:0;;;;;;:7;:17;;;;;;7007:5;;7031:17;;:26;;;:58;;;7078:11;;7061:13;;:28;;7031:58;7027:278;;;7111:24;7117:8;7127:7;7111:5;:24::i;:::-;-1:-1:-1;;;;;;7154:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;7154:24:0;7174:4;7154:24;;;;;;7197:13;:15;;;;;;;7027:278;;;2813:12;7260:9;:27;;7251:38;;;;;;6957:818;;;7333:1;7324:6;:10;:41;;;;;2813:12;7338:9;:27;;7324:41;7321:454;;;7392:8;;7385:3;:15;;:32;;;;;7411:6;;7404:3;:13;;7385:32;:48;;;;;7427:6;;7421:3;:12;7385:48;7381:314;;;7453:23;7459:8;7469:6;7453:5;:23::i;:::-;;7381:314;;;7518:9;:23;-1:-1:-1;7515:162:0;;7565:22;7571:8;7581:5;7565;:22::i;7515:162::-;7634:23;7640:8;7650:6;7634:5;:23::i;:::-;;7321:454;;;2813:12;7734:9;:27;;7725:38;;;;;;7811:11;;7791:16;;:31;7787:91;;7839:20;:27;;-1:-1:-1;;7839:27:0;7862:4;7839:27;;;7787:91;5688:2197;;;;;;;;:::o;2403:46::-;;;;;;;;;;;;;;;;;;;:::o;9093:296::-;9160:12;9189:11;;;;;:49;;-1:-1:-1;9212:10:0;9204:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9204:29:0;;;;;;;;;;:34;;9189:49;9185:72;;;-1:-1:-1;9249:5:0;9242:12;;9185:72;9275:10;9267:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9267:29:0;;;;;;;;;;;;:38;;;9321;;;;;;;9267:29;;9275:10;9321:38;;;;;;;;;;;-1:-1:-1;9377:4:0;9093:296;;;;;:::o;10452:166::-;3662:5;;10509:15;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;10527:11;;:23;;10543:6;10527:23;:15;:23;:::i;:::-;10561:11;:21;;;10599:11;;;;;;;;10509:41;;-1:-1:-1;10599:11:0;;;;;;;;;;10452:166;;:::o;2688:39::-;;;;:::o;8544:537::-;8651:12;8627:6;8089:8;8070;:27;;8063:35;;;;-1:-1:-1;;;;;8686:17:0;;;;8678:26;;;;;;-1:-1:-1;;;;;8734:15:0;;;;;;:8;:15;;;;;;8723:26;;;8715:35;;;;;;-1:-1:-1;;;;;8780:14:0;;;;;;:7;:14;;;;;;;;8795:10;8780:26;;;;;;;;8769:37;;;8761:46;;;;;;-1:-1:-1;;;;;8846:15:0;;;;;;:8;:15;;;;;;:28;;8866:7;8846:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;8828:15:0;;;;;;:8;:15;;;;;;;;:46;;;;8914:7;:14;;;;;8929:10;8914:26;;;;;;:39;;8945:7;8914:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;8885:14:0;;;;;;;:7;:14;;;;;;;;8900:10;8885:26;;;;;;;:68;;;;8980:13;;;;;:8;:13;;;;;:26;;8998:7;8980:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8964:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;9022:29;;;;;;;8964:13;;9022:29;;;;-1:-1:-1;;;;;;;;;;;9022:29:0;;;;;;;;-1:-1:-1;9069:4:0;;8544:537;-1:-1:-1;;;;8544:537:0:o;2545:40::-;;;;:::o;2504:34::-;2536:2;2504:34;:::o;10097:343::-;3662:5;;10205:14;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;10182:10;10173:20;;;;:8;:20;;;;;;10163:30;;;10155:39;;;;;;-1:-1:-1;10222:10:0;10262:16;;;;:8;:16;;;;;;:28;;10283:6;10262:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;10243:16:0;;;;;;:8;:16;;;;;:47;10315:11;;:23;;10331:6;10315:23;:15;:23;:::i;:::-;10301:11;:37;10368:16;;:28;;10389:6;10368:28;:20;:28;:::i;:::-;10349:16;:47;10412:20;;;;;;;;-1:-1:-1;;;;;10412:20:0;;;;;;;;;;;;;10097:343;;:::o;2592:38::-;;;;:::o;9952:137::-;3662:5;;10014:18;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;-1:-1:-1;10055:5:0;;:26;;10035:9;;-1:-1:-1;;;;;10055:5:0;;:26;;;;;10035:9;;10055:5;:26;:5;:26;10035:9;10055:5;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10055:26:0;9952:137;;:::o;7897:111::-;-1:-1:-1;;;;;7984:16:0;7957:7;7984:16;;;:8;:16;;;;;;;7897:111::o;2772:53::-;2813:12;2772:53;:::o;5077:142::-;3662:5;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;5178:33;5189:12;5203:7;5178:10;:33::i;:::-;5077:142;;:::o;2637:38::-;;;;:::o;2932:29::-;;;;:::o;2456:41::-;;;;;;;;;;;;;;;;;;;:::o;4001:170::-;3662:5;;4066:4;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;3555:20;;;;3554:21;3546:30;;;;;;4083:20;:27;;-1:-1:-1;;4083:27:0;4106:4;4083:27;;;4126:15;;;;4083:20;;4126:15;-1:-1:-1;4159:4:0;4001:170;:::o;5431:::-;3662:5;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;5515:12;:28;;;5559:34;;;;;;;;;;;;;;;;;5431:170;:::o;8130:402::-;8218:12;8194:6;8089:8;8070;:27;;8063:35;;;;-1:-1:-1;;;;;8253:17:0;;;;8245:26;;;;;;8310:10;8301:20;;;;:8;:20;;;;;;8290:31;;;8282:40;;;;;;8375:10;8366:20;;;;:8;:20;;;;;;:33;;8391:7;8366:33;:24;:33;:::i;:::-;8352:10;8343:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;8426:13:0;;;;;;:26;;8444:7;8426:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8410:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8468:34;;;;;;;8410:13;;8477:10;;-1:-1:-1;;;;;;;;;;;8468:34:0;;;;;;;;;-1:-1:-1;8520:4:0;;8130:402;-1:-1:-1;;;8130:402:0:o;2353:40::-;;;;;;;;;;;;;;;:::o;3462:::-;;;;;;:::o;9551:211::-;9636:4;9652:14;9706:8;9682:12;9652:43;;9717:1;-1:-1:-1;;;;;9717:11:0;;9729:3;9717:16;;;;;;;;;;;;;-1:-1:-1;;;;;9717:16:0;-1:-1:-1;;;;;9717:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9717:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9717:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9717:16:0;;9551:211;-1:-1:-1;;;;;9551:211:0:o;2846:37::-;;;;:::o;9401:138::-;-1:-1:-1;;;;;9506:15:0;;;9479:7;9506:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9401:138::o;10636:260::-;3662:5;;10717:4;;;;;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;10811:30;;;;;;10835:4;10811:30;;;;;;10768:14;;-1:-1:-1;;;;;;10811:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;10811:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;10811:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10811:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10811:30:0;10874:5;;10859:29;;;;;;-1:-1:-1;;;;;10874:5:0;;;10859:29;;;;;;;;;;;;10811:30;;-1:-1:-1;10859:14:0;;;;;;:29;;;;;10811:30;;10859:29;;;;;;;;10874:5;10859:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;10859:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10859:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10859:29:0;;10636:260;-1:-1:-1;;;;10636:260:0:o;2896:27::-;;;;:::o;2734:31::-;;;;:::o;3842:151::-;3662:5;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;-1:-1:-1;;;;;3919:22:0;;;3915:71;;3958:5;:16;;-1:-1:-1;;3958:16:0;-1:-1:-1;;;;;3958:16:0;;;;;3915:71;3842:151;:::o;5227:196::-;3662:5;;5341:6;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;-1:-1:-1;5350:1:0;5336:79;5353:21;;;5336:79;;;5381:34;5392:10;;5403:1;5392:13;;;;;;;;;;;;;-1:-1:-1;;;;;5392:13:0;5407:7;5381:10;:34::i;:::-;5376:3;;5336:79;;;5227:196;;;;:::o;9774:170::-;3662:5;;9822:17;;;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;-1:-1:-1;;9908:5:0;;:28;;9842:4;;9880:17;;;-1:-1:-1;;;;;9908:5:0;;;;:28;;;;;9880:17;;9908:5;:28;:5;:28;9880:17;9908:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;224:202:0;282:9;308:6;;304:47;;;-1:-1:-1;338:1:0;331:8;;304:47;-1:-1:-1;365:5:0;;;369:1;365;:5;388;;;;;;;;:10;381:18;;;4183:314;3555:20;;4254:4;;3555:20;;3554:21;3546:30;;;;;;4290:16;;:29;;4311:7;4290:29;:20;:29;:::i;:::-;4271:16;:48;-1:-1:-1;;;;;4354:13:0;;;;;;:8;:13;;;;;;:26;;4372:7;4354:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4338:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4396:19;;;;;;;4338:13;;4396:19;;;;;;;;;4431:34;;;;;;;;-1:-1:-1;;;;;4431:34:0;;;4448:1;;-1:-1:-1;;;;;;;;;;;4431:34:0;;;;;;;;-1:-1:-1;4485:4:0;4183:314;;;;:::o;1139:141::-;1223:5;;;1246:6;;;;1239:14;;;941:123;999:7;1026:6;;;;1019:14;;;;-1:-1:-1;1051:5:0;;;941:123::o;4509:556::-;3662:5;;-1:-1:-1;;;;;3662:5:0;3648:10;:19;3640:28;;;;;;4616:1;4606:11;;4597:22;;;;;;4664:11;;4645:16;;:30;4636:41;;;;;;-1:-1:-1;;;;;4713:22:0;;;;;;:8;:22;;;;;;:35;;4740:7;4713:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4688:22:0;;;;;;:8;:22;;;;;:60;4778:16;;:29;;4799:7;4778:29;:20;:29;:::i;:::-;4759:16;:48;;;4844:11;;-1:-1:-1;4820:91:0;;4872:20;:27;;-1:-1:-1;;4872:27:0;4895:4;4872:27;;;4820:91;-1:-1:-1;;;;;4944:54:0;;4975:22;;;;:8;:22;;;;;;;;;;4944:54;;;;;;;;;;;;;;;;;;;;;;5014:43;;;;;;;;-1:-1:-1;;;;;5014:43:0;;;5031:1;;-1:-1:-1;;;;;;;;;;;5014:43:0;;;;;;;;4509:556;;:::o

Swarm Source

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