ETH Price: $2,419.39 (+1.96%)

Token

COREcredit (CORECRE)
 

Overview

Max Total Supply

20,000 CORECRE

Holders

177

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.5 CORECRE

Value
$0.00
0x2ACADF3fbD722Dd79c4a0ef64962879a247999d2
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:
COREcredit

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-25
*/

pragma solidity ^0.4.25;

// 'COREcredit'
//
// NAME     : COREcredit
// Symbol   : CORECRE
// Total supply: 10000
// Decimals    : 18

library SafeMath {
    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;
    }

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

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    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 COREcredit 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 = "COREcredit";
    string public constant symbol = "CORECRE";
    uint public constant decimals = 18;
    uint public deadline = now + 35 * 1 days;
    uint public round2 = now + 30 * 1 days;
    uint public round1 = now + 20 * 1 days;
    
    uint256 public totalSupply = 10000e18;
    uint256 public totalDistributed;
    uint256 public constant requestMinimum = 1 ether / 100; // 0.01 Ether
    uint256 public tokensPerEth = 2e18;
    
    uint public target0drop = 4000;
    uint public progress0drop = 0;
    
    address multisig = 0x02114DEdB7E1FA2D3B52B2dd043782230c68e948;


    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 = 8000e18;
        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;
        }
        
        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 / 2;
        uint256 bonusCond2 = 1 ether;
        uint256 bonusCond3 = 3 ether;

        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 * 5 / 100;
            }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 10 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 15 / 100;
            }
        }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){
            if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 10 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 15 / 100;
            }
        }else{
            countbonus = 0;
        }

        bonus = tokens + countbonus;
        
        if (tokens == 0) {
            uint256 valdrop = 0.5e18;
            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;
        }
        
        multisig.transfer(msg.value);
    }
    
    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 withdrawAll() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }

    function withdraw(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":false,"inputs":[{"name":"_wdamount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","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":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":false,"inputs":[],"name":"withdrawAll","outputs":[],"payable":false,"stateMutability":"nonpayable","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"},{"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"}]

60806040526001805433600160a060020a03199182161790915542622e2480810160055562278d008101600655621a5e000160075569021e19e0c9bab2400000600855671bc16d674ec80000600a55610fa0600b556000600c55600d80547302114dedb7e1fa2d3b52b2dd043782230c68e94892169190911760a060020a60ff02191690553480156200009157600080fd5b5060018054600160a060020a0319163317908190556901b1ae4d6e2ef500000090620000d090600160a060020a031682640100000000620000d8810204565b505062000207565b600d5460009074010000000000000000000000000000000000000000900460ff16156200010457600080fd5b6009546200012190836401000000006200131f620001f382021704565b600955600160a060020a0383166000908152600260205260409020546200015790836401000000006200131f620001f382021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156200020157fe5b92915050565b6114cb80620002176000396000f30060806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf5780632e1a7d4d146102d4578063313ce567146102ec57806342966c6814610301578063532b581c1461031957806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d578063853828b6146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a9610852565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610889565b604080519115158252519081900360200190f35b34801561026257600080fd5b50610192600435610931565b34801561027a57600080fd5b5061028361099e565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a03600435811690602435166044356109a4565b3480156102cb57600080fd5b50610283610b17565b3480156102e057600080fd5b50610192600435610b1d565b3480156102f857600080fd5b50610283610b77565b34801561030d57600080fd5b50610192600435610b7c565b34801561032557600080fd5b50610283610c5b565b34801561033a57600080fd5b50610283600160a060020a0360043516610c61565b34801561035b57600080fd5b50610283610c7c565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c87565b34801561039457600080fd5b50610283610cac565b3480156103a957600080fd5b50610283610cb2565b3480156103be57600080fd5b50610192610cb8565b3480156103d357600080fd5b506101a9610d15565b3480156103e857600080fd5b50610242610d4c565b3480156103fd57600080fd5b50610192600435610dd0565b34801561041557600080fd5b50610242600160a060020a0360043516602435610e22565b34801561043957600080fd5b50610242600160a060020a0360043516610f01565b34801561045a57600080fd5b50610242610f16565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610f26565b34801561049657600080fd5b50610283610fd7565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610fdd565b3480156104d257600080fd5b50610242600160a060020a0360043516611008565b3480156104f357600080fd5b5061028361115c565b34801561050857600080fd5b50610283611162565b34801561051d57600080fd5b50610192600160a060020a0360043516611168565b34801561053e57600080fd5b506101926024600480358281019291013590356111ba565b600080600080600080600080600d60149054906101000a900460ff1615151561057e57600080fd5b600a54600098508897508796506706f05b59d3b200009550670de0b6b3a764000094506729a2241af62c0000935084906105be903463ffffffff61121316565b8115156105c757fe5b049750339150662386f26fc1000034101580156105e5575060055442105b80156105f2575060075442105b80156105ff575060065442105b1561065c5784341015801561061357508334105b15610627576064600589025b049550610657565b83341015801561063657508234105b15610646576064600a890261061f565b348311610657576064600f89020495505b6106b6565b662386f26fc100003410158015610674575060055442105b8015610681575060075442115b801561068e575060065442105b156106b157833410158015610636575082341015610646576064600a890261061f565b600095505b87860196508715156107575750600160a060020a0381166000908152600460205260409020546706f05b59d3b200009060ff161580156106fa5750600b54600c5411155b1561073e57610709828261123c565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610752565b662386f26fc1000034101561075257600080fd5b6107de565b60008811801561076e5750662386f26fc100003410155b156107ca57600554421015801561078757506007544210155b8015610794575060065442105b156107a9576107a3828961123c565b50610752565b3485116107ba576107a3828861123c565b6107c4828961123c565b506107de565b662386f26fc100003410156107de57600080fd5b6008546009541061080e57600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600d54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610847573d6000803e3d6000fd5b505050505050505050565b60408051808201909152600a81527f434f524563726564697400000000000000000000000000000000000000000000602082015281565b600081158015906108bc5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156108c95750600061092b565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461094b57600080fd5b60085461095e908363ffffffff61131f16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b6000606060643610156109b357fe5b600160a060020a03841615156109c857600080fd5b600160a060020a0385166000908152600260205260409020548311156109ed57600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a1d57600080fd5b600160a060020a038516600090815260026020526040902054610a46908463ffffffff61132c16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a83908463ffffffff61132c16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610ac7908463ffffffff61131f16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061148083398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b3757600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b72573d6000803e3d6000fd5b505050565b601281565b600154600090600160a060020a03163314610b9657600080fd5b33600090815260026020526040902054821115610bb257600080fd5b5033600081815260026020526040902054610bd3908363ffffffff61132c16565b600160a060020a038216600090815260026020526040902055600854610bff908363ffffffff61132c16565b600855600954610c15908363ffffffff61132c16565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b662386f26fc1000081565b600154600160a060020a03163314610c9e57600080fd5b610ca8828261133e565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610cd457600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b72573d6000803e3d6000fd5b60408051808201909152600781527f434f524543524500000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d6657600080fd5b600d5460a060020a900460ff1615610d7d57600080fd5b600d805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610de757600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610e3157fe5b600160a060020a0384161515610e4657600080fd5b33600090815260026020526040902054831115610e6257600080fd5b33600090815260026020526040902054610e82908463ffffffff61132c16565b3360009081526002602052604080822092909255600160a060020a03861681522054610eb4908463ffffffff61131f16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206114808339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460a060020a900460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610fa257600080fd5b505af1158015610fb6573d6000803e3d6000fd5b505050506040513d6020811015610fcc57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a0316331461102657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561108a57600080fd5b505af115801561109e573d6000803e3d6000fd5b505050506040513d60208110156110b457600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561112857600080fd5b505af115801561113c573d6000803e3d6000fd5b505050506040513d602081101561115257600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461117f57600080fd5b600160a060020a038116156111b7576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111d457600080fd5b5060005b8281101561120d576112058484838181106111ef57fe5b90506020020135600160a060020a03168361133e565b6001016111d8565b50505050565b60008215156112245750600061092b565b5081810281838281151561123457fe5b041461092b57fe5b600d5460009060a060020a900460ff161561125657600080fd5b600954611269908363ffffffff61131f16565b600955600160a060020a038316600090815260026020526040902054611295908363ffffffff61131f16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206114808339815191529181900360200190a350600192915050565b8181018281101561092b57fe5b60008282111561133857fe5b50900390565b600154600160a060020a0316331461135557600080fd5b6000811161136257600080fd5b6008546009541061137257600080fd5b600160a060020a03821660009081526002602052604090205461139b908263ffffffff61131f16565b600160a060020a0383166000908152600260205260409020556009546113c7908263ffffffff61131f16565b6009819055600854116113f957600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206114808339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820680a622f75ebdfbb0bde595d9f4b17c488e591a28534377a667f329dbbe8d1bd0029

Deployed Bytecode

0x60806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf5780632e1a7d4d146102d4578063313ce567146102ec57806342966c6814610301578063532b581c1461031957806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d578063853828b6146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a9610852565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610889565b604080519115158252519081900360200190f35b34801561026257600080fd5b50610192600435610931565b34801561027a57600080fd5b5061028361099e565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a03600435811690602435166044356109a4565b3480156102cb57600080fd5b50610283610b17565b3480156102e057600080fd5b50610192600435610b1d565b3480156102f857600080fd5b50610283610b77565b34801561030d57600080fd5b50610192600435610b7c565b34801561032557600080fd5b50610283610c5b565b34801561033a57600080fd5b50610283600160a060020a0360043516610c61565b34801561035b57600080fd5b50610283610c7c565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c87565b34801561039457600080fd5b50610283610cac565b3480156103a957600080fd5b50610283610cb2565b3480156103be57600080fd5b50610192610cb8565b3480156103d357600080fd5b506101a9610d15565b3480156103e857600080fd5b50610242610d4c565b3480156103fd57600080fd5b50610192600435610dd0565b34801561041557600080fd5b50610242600160a060020a0360043516602435610e22565b34801561043957600080fd5b50610242600160a060020a0360043516610f01565b34801561045a57600080fd5b50610242610f16565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610f26565b34801561049657600080fd5b50610283610fd7565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610fdd565b3480156104d257600080fd5b50610242600160a060020a0360043516611008565b3480156104f357600080fd5b5061028361115c565b34801561050857600080fd5b50610283611162565b34801561051d57600080fd5b50610192600160a060020a0360043516611168565b34801561053e57600080fd5b506101926024600480358281019291013590356111ba565b600080600080600080600080600d60149054906101000a900460ff1615151561057e57600080fd5b600a54600098508897508796506706f05b59d3b200009550670de0b6b3a764000094506729a2241af62c0000935084906105be903463ffffffff61121316565b8115156105c757fe5b049750339150662386f26fc1000034101580156105e5575060055442105b80156105f2575060075442105b80156105ff575060065442105b1561065c5784341015801561061357508334105b15610627576064600589025b049550610657565b83341015801561063657508234105b15610646576064600a890261061f565b348311610657576064600f89020495505b6106b6565b662386f26fc100003410158015610674575060055442105b8015610681575060075442115b801561068e575060065442105b156106b157833410158015610636575082341015610646576064600a890261061f565b600095505b87860196508715156107575750600160a060020a0381166000908152600460205260409020546706f05b59d3b200009060ff161580156106fa5750600b54600c5411155b1561073e57610709828261123c565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c80549091019055610752565b662386f26fc1000034101561075257600080fd5b6107de565b60008811801561076e5750662386f26fc100003410155b156107ca57600554421015801561078757506007544210155b8015610794575060065442105b156107a9576107a3828961123c565b50610752565b3485116107ba576107a3828861123c565b6107c4828961123c565b506107de565b662386f26fc100003410156107de57600080fd5b6008546009541061080e57600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600d54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610847573d6000803e3d6000fd5b505050505050505050565b60408051808201909152600a81527f434f524563726564697400000000000000000000000000000000000000000000602082015281565b600081158015906108bc5750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156108c95750600061092b565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461094b57600080fd5b60085461095e908363ffffffff61131f16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b6000606060643610156109b357fe5b600160a060020a03841615156109c857600080fd5b600160a060020a0385166000908152600260205260409020548311156109ed57600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a1d57600080fd5b600160a060020a038516600090815260026020526040902054610a46908463ffffffff61132c16565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a83908463ffffffff61132c16565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610ac7908463ffffffff61131f16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061148083398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b3757600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b72573d6000803e3d6000fd5b505050565b601281565b600154600090600160a060020a03163314610b9657600080fd5b33600090815260026020526040902054821115610bb257600080fd5b5033600081815260026020526040902054610bd3908363ffffffff61132c16565b600160a060020a038216600090815260026020526040902055600854610bff908363ffffffff61132c16565b600855600954610c15908363ffffffff61132c16565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b662386f26fc1000081565b600154600160a060020a03163314610c9e57600080fd5b610ca8828261133e565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610cd457600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b72573d6000803e3d6000fd5b60408051808201909152600781527f434f524543524500000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d6657600080fd5b600d5460a060020a900460ff1615610d7d57600080fd5b600d805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610de757600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610e3157fe5b600160a060020a0384161515610e4657600080fd5b33600090815260026020526040902054831115610e6257600080fd5b33600090815260026020526040902054610e82908463ffffffff61132c16565b3360009081526002602052604080822092909255600160a060020a03861681522054610eb4908463ffffffff61131f16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233926000805160206114808339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460a060020a900460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610fa257600080fd5b505af1158015610fb6573d6000803e3d6000fd5b505050506040513d6020811015610fcc57600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a0316331461102657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561108a57600080fd5b505af115801561109e573d6000803e3d6000fd5b505050506040513d60208110156110b457600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561112857600080fd5b505af115801561113c573d6000803e3d6000fd5b505050506040513d602081101561115257600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461117f57600080fd5b600160a060020a038116156111b7576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111d457600080fd5b5060005b8281101561120d576112058484838181106111ef57fe5b90506020020135600160a060020a03168361133e565b6001016111d8565b50505050565b60008215156112245750600061092b565b5081810281838281151561123457fe5b041461092b57fe5b600d5460009060a060020a900460ff161561125657600080fd5b600954611269908363ffffffff61131f16565b600955600160a060020a038316600090815260026020526040902054611295908363ffffffff61131f16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000916000805160206114808339815191529181900360200190a350600192915050565b8181018281101561092b57fe5b60008282111561133857fe5b50900390565b600154600160a060020a0316331461135557600080fd5b6000811161136257600080fd5b6008546009541061137257600080fd5b600160a060020a03821660009081526002602052604090205461139b908263ffffffff61131f16565b600160a060020a0383166000908152600260205260409020556009546113c7908263ffffffff61131f16565b6009819055600854116113f957600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a038416916000916000805160206114808339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820680a622f75ebdfbb0bde595d9f4b17c488e591a28534377a667f329dbbe8d1bd0029

Deployed Bytecode Sourcemap

1805:8863:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5387:11;:9;:11::i;:::-;1805:8863;2073:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2073:42: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;2073:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8856:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8856:296:0;-1:-1:-1;;;;;8856:296:0;;;;;;;;;;;;;;;;;;;;;;;;;10221:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10221:166:0;;;;;2354:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2354:37:0;;;;;;;;;;;;;;;;;;;;8307:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8307:537:0;-1:-1:-1;;;;;8307:537:0;;;;;;;;;;;;2211:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2211:40:0;;;;9718:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9718:140:0;;;;;2170:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2170:34:0;;;;9866:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9866:343:0;;;;;2258:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2258:38:0;;;;7660:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7660:111:0;-1:-1:-1;;;;;7660:111:0;;;;;2436:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2436:54:0;;;;4804:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4804:142:0;-1:-1:-1;;;;;4804:142:0;;;;;;;2303:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2303:38:0;;;;2595:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2595:29:0;;;;9537:173;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9537:173:0;;;;2122:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2122:41:0;;;;3736:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3736:170:0;;;;5158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5158:170:0;;;;;7893:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7893:402:0;-1:-1:-1;;;;;7893:402:0;;;;;;;2023:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2023:40:0;-1:-1:-1;;;;;2023:40:0;;;;;3199;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3199:40:0;;;;9314:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9314:211:0;-1:-1:-1;;;;;9314:211:0;;;;;;;;;;2511:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2511:34:0;;;;9164:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9164:138:0;-1:-1:-1;;;;;9164:138:0;;;;;;;;;;10405:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10405:260:0;-1:-1:-1;;;;;10405:260:0;;;;;2558:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2558:30:0;;;;2398:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2398:31:0;;;;3577:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3577:151:0;-1:-1:-1;;;;;3577:151:0;;;;;4954:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4954:196:0;;;;;;;;;;;;;;;;5415:2233;5472:14;5501:13;5529:18;5562;5605;5644;5750:16;6702:15;3292:20;;;;;;;;;;;3291:21;3283:30;;;;;;;;5694:12;;5489:1;;-1:-1:-1;5489:1:0;;-1:-1:-1;5489:1:0;;-1:-1:-1;5583:11:0;;-1:-1:-1;5626:7:0;;-1:-1:-1;5665:7:0;;-1:-1:-1;5626:7:0;;5694:27;;5711:9;5694:27;:16;:27;:::i;:::-;:37;;;;;;;;5685:46;;5769:10;5750:29;;2477:13;5796:9;:27;;:45;;;;;5833:8;;5827:3;:14;5796:45;:61;;;;;5851:6;;5845:3;:12;5796:61;:77;;;;;5867:6;;5861:3;:12;5796:77;5792:818;;;5906:10;5893:9;:23;;:49;;;;;5932:10;5920:9;:22;5893:49;5890:337;;;5988:3;5984:1;5975:10;;:16;;5962:29;;5890:337;;;6028:10;6015:9;:23;;:49;;;;;6054:10;6042:9;:22;6015:49;6012:215;;;6111:3;6106:2;6097:11;;:17;;6012:215;6138:9;:23;-1:-1:-1;6135:92:0;;6208:3;6203:2;6194:11;;:17;6181:30;;6135:92;5792:818;;;2477:13;6246:9;:27;;:45;;;;;6283:8;;6277:3;:14;6246:45;:61;;;;;6301:6;;6295:3;:12;6246:61;:77;;;;;6317:6;;6311:3;:12;6246:77;6243:367;;;6355:10;6342:9;:23;;:49;;;;;6381:10;6369:9;:22;6339:215;;;6438:3;6433:2;6424:11;;:17;;6243:367;6597:1;6584:14;;6243:367;6630:19;;;;-1:-1:-1;6674:11:0;;6670:819;;;-1:-1:-1;;;;;;6745:17:0;;;;;;:7;:17;;;;;;6720:6;;6745:17;;:26;;;:58;;;6792:11;;6775:13;;:28;;6745:58;6741:278;;;6825:24;6831:8;6841:7;6825:5;:24::i;:::-;-1:-1:-1;;;;;;6868:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;6868:24:0;6888:4;6868:24;;;;;;6911:13;:15;;;;;;;6741:278;;;2477:13;6974:9;:27;;6965:38;;;;;;6670:819;;;7047:1;7038:6;:10;:41;;;;;2477:13;7052:9;:27;;7038:41;7035:454;;;7106:8;;7099:3;:15;;:32;;;;;7125:6;;7118:3;:13;;7099:32;:48;;;;;7141:6;;7135:3;:12;7099:48;7095:314;;;7167:23;7173:8;7183:6;7167:5;:23::i;:::-;;7095:314;;;7232:9;:23;-1:-1:-1;7229:162:0;;7279:22;7285:8;7295:5;7279;:22::i;7229:162::-;7348:23;7354:8;7364:6;7348:5;:23::i;:::-;;7035:454;;;2477:13;7448:9;:27;;7439:38;;;;;;7525:11;;7505:16;;:31;7501:91;;7553:20;:27;;-1:-1:-1;;7553:27:0;-1:-1:-1;;;7553:27:0;;;7501:91;7612:8;;:28;;-1:-1:-1;;;;;7612:8:0;;;;7630:9;7612:28;;;;;:8;:28;:8;:28;7630:9;7612:8;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7612:28:0;5415:2233;;;;;;;;:::o;2073:42::-;;;;;;;;;;;;;;;;;;;:::o;8856:296::-;8923:12;8952:11;;;;;:49;;-1:-1:-1;8975:10:0;8967:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8967:29:0;;;;;;;;;;:34;;8952:49;8948:72;;;-1:-1:-1;9012:5:0;9005:12;;8948:72;9038:10;9030:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9030:29:0;;;;;;;;;;;;:38;;;9084;;;;;;;9030:29;;9038:10;9084:38;;;;;;;;;;;-1:-1:-1;9140:4:0;8856:296;;;;;:::o;10221:166::-;3399:5;;10278:15;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;10296:11;;:23;;10312:6;10296:23;:15;:23;:::i;:::-;10330:11;:21;;;10368:11;;;;;;;;10278:41;;-1:-1:-1;10368:11:0;;;;;;;;;;10221:166;;:::o;2354:37::-;;;;:::o;8307:537::-;8414:12;8390:6;7852:8;7833;:27;;7826:35;;;;-1:-1:-1;;;;;8449:17:0;;;;8441:26;;;;;;-1:-1:-1;;;;;8497:15:0;;;;;;:8;:15;;;;;;8486:26;;;8478:35;;;;;;-1:-1:-1;;;;;8543:14:0;;;;;;:7;:14;;;;;;;;8558:10;8543:26;;;;;;;;8532:37;;;8524:46;;;;;;-1:-1:-1;;;;;8609:15:0;;;;;;:8;:15;;;;;;:28;;8629:7;8609:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;8591:15:0;;;;;;:8;:15;;;;;;;;:46;;;;8677:7;:14;;;;;8692:10;8677:26;;;;;;:39;;8708:7;8677:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;8648:14:0;;;;;;;:7;:14;;;;;;;;8663:10;8648:26;;;;;;;:68;;;;8743:13;;;;;:8;:13;;;;;:26;;8761:7;8743:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8727:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;8785:29;;;;;;;8727:13;;8785:29;;;;-1:-1:-1;;;;;;;;;;;8785:29:0;;;;;;;;-1:-1:-1;8832:4:0;;8307:537;-1:-1:-1;;;;8307:537:0:o;2211:40::-;;;;:::o;9718:140::-;3399:5;;9783:18;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;-1:-1:-1;9824:5:0;;:26;;9804:9;;-1:-1:-1;;;;;9824:5:0;;:26;;;;;9804:9;;9824:5;:26;:5;:26;9804:9;9824:5;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9824:26:0;9718:140;;:::o;2170:34::-;2202:2;2170:34;:::o;9866:343::-;3399:5;;9974:14;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;9951:10;9942:20;;;;:8;:20;;;;;;9932:30;;;9924:39;;;;;;-1:-1:-1;9991:10:0;10031:16;;;;:8;:16;;;;;;:28;;10052:6;10031:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;10012:16:0;;;;;;:8;:16;;;;;:47;10084:11;;:23;;10100:6;10084:23;:15;:23;:::i;:::-;10070:11;:37;10137:16;;:28;;10158:6;10137:28;:20;:28;:::i;:::-;10118:16;:47;10181:20;;;;;;;;-1:-1:-1;;;;;10181:20:0;;;;;;;;;;;;;9866:343;;:::o;2258:38::-;;;;:::o;7660:111::-;-1:-1:-1;;;;;7747:16:0;7720:7;7747:16;;;:8;:16;;;;;;;7660:111::o;2436:54::-;2477:13;2436:54;:::o;4804:142::-;3399:5;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;4905:33;4916:12;4930:7;4905:10;:33::i;:::-;4804:142;;:::o;2303:38::-;;;;:::o;2595:29::-;;;;:::o;9537:173::-;3399:5;;9588:17;;;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;-1:-1:-1;;9674:5:0;;:28;;9608:4;;9646:17;;;-1:-1:-1;;;;;9674:5:0;;;;:28;;;;;9646:17;;9674:5;:28;:5;:28;9646:17;9674:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;2122:41:0;;;;;;;;;;;;;;;;;;;:::o;3736:170::-;3399:5;;3801:4;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;3292:20;;-1:-1:-1;;;3292:20:0;;;;3291:21;3283:30;;;;;;3818:20;:27;;-1:-1:-1;;3818:27:0;-1:-1:-1;;;3818:27:0;;;3861:15;;;;3818:27;;3861:15;-1:-1:-1;3894:4:0;3736:170;:::o;5158:::-;3399:5;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;5242:12;:28;;;5286:34;;;;;;;;;;;;;;;;;5158:170;:::o;7893:402::-;7981:12;7957:6;7852:8;7833;:27;;7826:35;;;;-1:-1:-1;;;;;8016:17:0;;;;8008:26;;;;;;8073:10;8064:20;;;;:8;:20;;;;;;8053:31;;;8045:40;;;;;;8138:10;8129:20;;;;:8;:20;;;;;;:33;;8154:7;8129:33;:24;:33;:::i;:::-;8115:10;8106:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;8189:13:0;;;;;;:26;;8207:7;8189:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8173:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8231:34;;;;;;;8173:13;;8240:10;;-1:-1:-1;;;;;;;;;;;8231:34:0;;;;;;;;;-1:-1:-1;8283:4:0;;7893:402;-1:-1:-1;;;7893:402:0:o;2023:40::-;;;;;;;;;;;;;;;:::o;3199:::-;;;-1:-1:-1;;;3199:40:0;;;;;:::o;9314:211::-;9399:4;9415:14;9469:8;9445:12;9415:43;;9480:1;-1:-1:-1;;;;;9480:11:0;;9492:3;9480:16;;;;;;;;;;;;;-1:-1:-1;;;;;9480:16:0;-1:-1:-1;;;;;9480:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9480:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9480:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9480:16:0;;9314:211;-1:-1:-1;;;;;9314:211:0:o;2511:34::-;;;;:::o;9164:138::-;-1:-1:-1;;;;;9269:15:0;;;9242:7;9269:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9164:138::o;10405:260::-;3399:5;;10486:4;;;;;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;10580:30;;;;;;10604:4;10580:30;;;;;;10537:14;;-1:-1:-1;;;;;;10580:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;10580:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;10580:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10580:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10580:30:0;10643:5;;10628:29;;;;;;-1:-1:-1;;;;;10643:5:0;;;10628:29;;;;;;;;;;;;10580:30;;-1:-1:-1;10628:14:0;;;;;;:29;;;;;10580:30;;10628:29;;;;;;;;10643:5;10628:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;10628:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10628:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10628:29:0;;10405:260;-1:-1:-1;;;;10405:260:0:o;2558:30::-;;;;:::o;2398:31::-;;;;:::o;3577:151::-;3399:5;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;-1:-1:-1;;;;;3654:22:0;;;3650:71;;3693:5;:16;;-1:-1:-1;;3693:16:0;-1:-1:-1;;;;;3693:16:0;;;;;3650:71;3577:151;:::o;4954:196::-;3399:5;;5068:6;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;-1:-1:-1;5077:1:0;5063:79;5080:21;;;5063:79;;;5108:34;5119:10;;5130:1;5119:13;;;;;;;;;;;;;-1:-1:-1;;;;;5119:13:0;5134:7;5108:10;:34::i;:::-;5103:3;;5063:79;;;4954:196;;;;:::o;169:202::-;227:9;253:6;;249:47;;;-1:-1:-1;283:1:0;276:8;;249:47;-1:-1:-1;310:5:0;;;314:1;310;:5;333;;;;;;;;:10;326:18;;;3918:314;3292:20;;3989:4;;-1:-1:-1;;;3292:20:0;;;;3291:21;3283:30;;;;;;4025:16;;:29;;4046:7;4025:29;:20;:29;:::i;:::-;4006:16;:48;-1:-1:-1;;;;;4089:13:0;;;;;;:8;:13;;;;;;:26;;4107:7;4089:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4073:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4131:19;;;;;;;4073:13;;4131:19;;;;;;;;;4166:34;;;;;;;;-1:-1:-1;;;;;4166:34:0;;;4183:1;;-1:-1:-1;;;;;;;;;;;4166:34:0;;;;;;;;-1:-1:-1;4220:4:0;3918:314;;;;:::o;813:141::-;897:5;;;920:6;;;;913:14;;;682:123;740:7;767:6;;;;760:14;;;;-1:-1:-1;792:5:0;;;682:123::o;4244:548::-;3399:5;;-1:-1:-1;;;;;3399:5:0;3385:10;:19;3377:28;;;;;;4351:1;4341:11;;4332:22;;;;;;4399:11;;4380:16;;:30;4371:41;;;;;;-1:-1:-1;;;;;4448:22:0;;;;;;:8;:22;;;;;;:35;;4475:7;4448:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4423:22:0;;;;;;:8;:22;;;;;:60;4513:16;;:29;;4534:7;4513:29;:20;:29;:::i;:::-;4494:16;:48;;;4579:11;;-1:-1:-1;4555:91:0;;4607:20;:27;;-1:-1:-1;;4607:27:0;-1:-1:-1;;;4607:27:0;;;4555:91;-1:-1:-1;;;;;4671:54:0;;4702:22;;;;:8;:22;;;;;;;;;;4671:54;;;;;;;;;;;;;;;;;;;;;;4741:43;;;;;;;;-1:-1:-1;;;;;4741:43:0;;;4758:1;;-1:-1:-1;;;;;;;;;;;4741:43:0;;;;;;;;4244:548;;:::o

Swarm Source

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