ETH Price: $3,265.49 (-0.56%)
Gas: 1 Gwei

Token

NotaryPlatformToken (NTRY)
 

Overview

Max Total Supply

150,000,000 NTRY

Holders

68 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
196.875 NTRY

Value
$0.00
0x4a2dccbc65ba28796af0a15dd11424c14153d2d1
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:
NotaryToken

Compiler Version
v0.4.10+commit.f0d539ae

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-05-29
*/

/**
 *  NTRY Cointract contract, ERC20 compliant (see https://github.com/ethereum/EIPs/issues/20)
 *
 *  Code is based on multiple sources:
 *  https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20.sol
 *  https://github.com/ConsenSys/Tokens/blob/master/Token_Contracts/contracts/Token.sol
 */

pragma solidity ^0.4.8;

contract Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

/**
 *  NTRY Cointract contract, ERC20 compliant (see https://github.com/ethereum/EIPs/issues/20)
 *
 *  Code is based on multiple sources:
 *  https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20.sol
 *  https://github.com/ConsenSys/Tokens/blob/master/Token_Contracts/contracts/HumanStandardToken.sol
 */

contract StandardToken is Token {

    function transfer(address _to, uint256 _value) returns (bool success) {
        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            Transfer(msg.sender, _to, _value);
            return true;
        } else { return false; }
    }

    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
            balances[_to] += _value;
            balances[_from] -= _value;
            allowed[_from][msg.sender] -= _value;
            Transfer(_from, _to, _value);
            return true;
        } else { return false; }
    }

    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
}

/**
 *  NTRY Cointract contract, ERC20 compliant (see https://github.com/ethereum/EIPs/issues/20)
 *
 *  Code is based on multiple sources:
 *  https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20.sol
 *  https://github.com/ConsenSys/Tokens/blob/master/Token_Contracts/contracts/HumanStandardToken.sol
 */
 
contract NotaryToken is StandardToken{

    function () {
        //if ether is sent to this address, send it back.
        throw;
    }
    
    address owner;
    mapping (address => bool) associateContracts;

    modifier onlyOwner { if (msg.sender != owner) throw; _; }

    /* Public variables of the token */
    string public name = "Notary Platform Token";
    uint8 public decimals = 18;
    string public symbol = "NTRY";
    string public version = 'NTRY-1.0';

    function NotaryToken() {
        owner = 0x1538EF80213cde339A333Ee420a85c21905b1b2D;
        /* Total supply is One hundred and fifty million (150,000,000)*/
        balances[0x1538EF80213cde339A333Ee420a85c21905b1b2D] = 150000000 * 1 ether;
        totalSupply = 150000000 * 1 ether;

        balances[0x1538EF80213cde339A333Ee420a85c21905b1b2D] -= teamAllocations;
        unlockedAt =  now + 365 * 1 days;   // Freeze notary team funds for one year
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        
        //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) {
            throw; 
        }
        return true;
    }

    /* In certain cases associated contracts can recover NTRY they have distributed */
    function takeBackNTRY(address _from,address _to, uint256 _value) returns (bool) {
        if (associateContracts[msg.sender]){
            balances[_from] -= _value;
            balances[_to] += _value;
            return true;
        }else{
            return false;
        }
        
    }

    function newAssociate(address _addressOfAssociate) onlyOwner {
        associateContracts[_addressOfAssociate] = true;
    }

    /* Expire association with NTRY Token*/
    function expireAssociate(address _addressOfAssociate) onlyOwner {
        delete associateContracts[_addressOfAssociate];
    }
    
    /* Verify contract association with NTRY Token*/
    function isAssociated(address _addressOfAssociate) returns(bool){
        return associateContracts[_addressOfAssociate]; 
    }

    function transferOwnership(address _newOwner) onlyOwner {
        balances[_newOwner] = balances[owner];
        balances[owner] = 0;
        owner = _newOwner;
    }


    uint256 constant teamAllocations = 15000000 * 1 ether;
    uint256 unlockedAt;
    mapping (address => uint256) allocations;
    function allocate() onlyOwner {
        allocations[0xab1cb1740344A9280dC502F3B8545248Dc3045eA] = 2500000 * 1 ether;
        allocations[0x330709A59Ab2D1E1105683F92c1EE8143955a357] = 2500000 * 1 ether;
        allocations[0xAa0887fc6e8896C4A80Ca3368CFd56D203dB39db] = 2500000 * 1 ether;
        allocations[0x1fbA1d22435DD3E7Fa5ba4b449CC550a933E72b3] = 2500000 * 1 ether;
        allocations[0xC9d5E2c7e40373ae576a38cD7e62E223C95aBFD4] = 500000 * 1 ether;
        allocations[0xabc0B64a38DE4b767313268F0db54F4cf8816D9C] = 500000 * 1 ether;
        allocations[0x5d85bCDe5060C5Bd00DBeDF5E07F43CE3Ccade6f] = 250000 * 1 ether;
        allocations[0xecb1b0231CBC0B04015F9e5132C62465C128B578] = 250000 * 1 ether;
        allocations[0xF9b1Cfc7fe3B63bEDc594AD20132CB06c18FD5F2] = 250000 * 1 ether;
        allocations[0xDbb89a87d9f91EA3f0Ab035a67E3A951A05d0130] = 250000 * 1 ether;
        allocations[0xC1530645E21D27AB4b567Bac348721eE3E244Cbd] = 200000 * 1 ether;
        allocations[0xcfb44162030e6CBca88e65DffA21911e97ce8533] = 200000 * 1 ether;
        allocations[0x64f748a5C5e504DbDf61d49282d6202Bc1311c3E] = 200000 * 1 ether;
        allocations[0xFF22FA2B3e5E21817b02a45Ba693B7aC01485a9C] = 200000 * 1 ether;
        allocations[0xC9856112DCb8eE449B83604438611EdCf61408AF] = 200000 * 1 ether;
        allocations[0x689CCfEABD99081D061aE070b1DA5E1f6e4B9fB2] = 2000000 * 1 ether;
    }
   
    function withDraw(){
        if(now < unlockedAt){ 
            return;
        }
        if(allocations[msg.sender] > 0){
            balances[msg.sender] += allocations[msg.sender];
            allocations[msg.sender] = 0;
        }
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"takeBackNTRY","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addressOfAssociate","type":"address"}],"name":"expireAssociate","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withDraw","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addressOfAssociate","type":"address"}],"name":"newAssociate","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"allocate","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addressOfAssociate","type":"address"}],"name":"isAssociated","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"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"}]

60a0604052601560608190527f4e6f7461727920506c6174666f726d20546f6b656e0000000000000000000000608090815262000040916005919062000164565b506006805460ff191660121790556040805180820190915260048082527f4e545259000000000000000000000000000000000000000000000000000000006020909201918252620000949160079162000164565b506040805180820190915260088082527f4e5452592d312e300000000000000000000000000000000000000000000000006020909201918252620000d9918162000164565b503415620000e357fe5b5b60038054600160a060020a031916731538ef80213cde339a333ee420a85c21905b1b2d908117909155600090815260016020526a7c13bc4b2c133c5600000090556a6fab5caa0e114fe70000007ff238a98733f873a987993cedd9cf1d14974fd78928f4cf0275f6bba907102fc2556301e1338042016009555b6200020e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b5b50620001e6929150620001ea565b5090565b6200020b91905b80821115620001e65760008155600101620001f1565b5090565b90565b610fcc806200021e6000396000f300606060405236156100e05763ffffffff60e060020a60003504166306fdde0381146100f65780630799ad8d14610186578063095ea7b3146101bf5780630adaa7bf146101f25780630fdb1c101461021057806318160ddd14610222578063223a63991461024457806323b872dd14610262578063313ce5671461029b57806354fd4d50146102c157806370a082311461035157806395d89b411461037f578063a9059cbb1461040f578063abaa991614610442578063cae9ca5114610454578063d55fe582146104cb578063dd62ed3e146104fb578063f2fde38b1461052f575b34156100e857fe5b6100f45b60006000fd5b565b005b34156100fe57fe5b61010661054d565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018e57fe5b6101ab600160a060020a03600435811690602435166044356105db565b604080519115158252519081900360200190f35b34156101c757fe5b6101ab600160a060020a036004351660243561063f565b604080519115158252519081900360200190f35b34156101fa57fe5b6100f4600160a060020a03600435166106aa565b005b341561021857fe5b6100f46106eb565b005b341561022a57fe5b61023261074d565b60408051918252519081900360200190f35b341561024c57fe5b6100f4600160a060020a0360043516610753565b005b341561026a57fe5b6101ab600160a060020a0360043581169060243516604435610797565b604080519115158252519081900360200190f35b34156102a357fe5b6102ab610891565b6040805160ff9092168252519081900360200190f35b34156102c957fe5b61010661089a565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035957fe5b610232600160a060020a0360043516610928565b60408051918252519081900360200190f35b341561038757fe5b610106610947565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041757fe5b6101ab600160a060020a03600435166024356109d5565b604080519115158252519081900360200190f35b341561044a57fe5b6100f4610a81565b005b341561045c57fe5b604080516020600460443581810135601f81018490048402850184019095528484526101ab948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610d2c95505050505050565b604080519115158252519081900360200190f35b34156104d357fe5b6101ab600160a060020a0360043516610ede565b604080519115158252519081900360200190f35b341561050357fe5b610232600160a060020a0360043581169060243516610f00565b60408051918252519081900360200190f35b341561053757fe5b6100f4600160a060020a0360043516610f2d565b005b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b505050505081565b600160a060020a03331660009081526004602052604081205460ff16156106335750600160a060020a038084166000908152600160208190526040808320805486900390559285168252919020805483019055610637565b5060005b5b9392505050565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60035433600160a060020a039081169116146106c65760006000fd5b600160a060020a0381166000908152600460205260409020805460ff191690555b5b50565b6009544210156106fa576100f2565b600160a060020a0333166000908152600a602052604081205411156100f257600160a060020a0333166000908152600a602081815260408084208054600184529185208054909201909155919052555b5b565b60005481565b60035433600160a060020a0390811691161461076f5760006000fd5b600160a060020a0381166000908152600460205260409020805460ff191660011790555b5b50565b600160a060020a0383166000908152600160205260408120548290108015906107e75750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b80156107f35750600082115b1561063357600160a060020a03808416600081815260016020908152604080832080548801905588851680845281842080548990039055600283528184203390961684529482529182902080548790039055815186815291519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001610637565b506000610637565b5b9392505050565b60065460ff1681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b505050505081565b600160a060020a0333166000908152600160205260408120548290108015906109fe5750600082115b15610a7257600160a060020a03338116600081815260016020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016106a4565b5060006106a4565b5b92915050565b60035433600160a060020a03908116911614610a9d5760006000fd5b600a6020526a02116545850052128000007f43c3c12bfb8d39f56c04f39ec49d6b5d85540edadb7946f024a24d6ae9b4c2ff8190557f7e834901ef34a5968205e13e9aaf05423705a0468e37240f9677ae022c8d44f68190557f99fdc3065661c3aa1d2f9de39f130b6c78742601315ec64b6bba9ce705b2a4f58190557f5230c38816a5e1f8d55f5758ec667e5f42f1f3b248671b9cba3795c4e6a96390556969e10de76676d08000007f7626783fe876f7c2f39fcee3b4911322c4ff61a20303aa27efb1238225f421828190557f350f509bcf7a525021570f26a28f6c71629334861c15b73ebd2206ac437815f8556934f086f3b33b684000007f94a06fe40d90de4466e55185b2f9e0a84e0bd59a0fcd1e1570fc43480a3eede78190557fb1150af656203f0a05b63223b8a0ea9ab16c3cc2d29b5d9f43efdcad5c5f58908190557fa70862245e6e4c828f57181556770857ba2c8dab0806caf745448063883d63688190557f6b55f5aebad8b691314ddc8f61c20ed770a8e0bfca44fe1580d33ddbdf53a69455692a5a058fc295ed0000007f1a6fab511a71949c8344c801ad7b2a1a8b33a600ad831f74d04ca52ebec416d78190557f9cb55228fa41ce4d24ecfc56118f3a47766835474b02c4dcfb5611e2c878f09e8190557fc8ce8b0fbea099e4c96d558a5094184806ccf63ba90b67ea1c02d835c7e36f968190557f239d33881a82632b5909a5fd0fc380476d656191552f24b016c02e14c48beed58190557edfaa7defb461113310a35d4772ce4fc4fc387409362fc534feddba18682cd15573689ccfeabd99081d061ae070b1da5e1f6e4b9fb26000526a01a784379d99db420000007f75d7e3b1d0fc53f8cd4cc0bc8d34199f8b38ea2c0fba4727c54b2d694baa24da555b5b565b600160a060020a03338116600081815260026020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360008314610e7e575b805182526020831115610e7e57601f199092019160209182019101610e5e565b505050905090810190601f168015610eaa5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000876161da5a03f1925050501515610ed35760006000fd5b5060015b9392505050565b600160a060020a03811660009081526004602052604090205460ff165b919050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610f495760006000fd5b60038054600160a060020a03908116600090815260016020526040808220548584168084528284209190915584549093168252812055815473ffffffffffffffffffffffffffffffffffffffff19161790555b5b505600a165627a7a723058203e3c5e8449c9d9b689da97f9b769065d2ae57dd1083c33839ce70a684d8684d40029

Deployed Bytecode

0x606060405236156100e05763ffffffff60e060020a60003504166306fdde0381146100f65780630799ad8d14610186578063095ea7b3146101bf5780630adaa7bf146101f25780630fdb1c101461021057806318160ddd14610222578063223a63991461024457806323b872dd14610262578063313ce5671461029b57806354fd4d50146102c157806370a082311461035157806395d89b411461037f578063a9059cbb1461040f578063abaa991614610442578063cae9ca5114610454578063d55fe582146104cb578063dd62ed3e146104fb578063f2fde38b1461052f575b34156100e857fe5b6100f45b60006000fd5b565b005b34156100fe57fe5b61010661054d565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018e57fe5b6101ab600160a060020a03600435811690602435166044356105db565b604080519115158252519081900360200190f35b34156101c757fe5b6101ab600160a060020a036004351660243561063f565b604080519115158252519081900360200190f35b34156101fa57fe5b6100f4600160a060020a03600435166106aa565b005b341561021857fe5b6100f46106eb565b005b341561022a57fe5b61023261074d565b60408051918252519081900360200190f35b341561024c57fe5b6100f4600160a060020a0360043516610753565b005b341561026a57fe5b6101ab600160a060020a0360043581169060243516604435610797565b604080519115158252519081900360200190f35b34156102a357fe5b6102ab610891565b6040805160ff9092168252519081900360200190f35b34156102c957fe5b61010661089a565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035957fe5b610232600160a060020a0360043516610928565b60408051918252519081900360200190f35b341561038757fe5b610106610947565b60408051602080825283518183015283519192839290830191850190808383821561014c575b80518252602083111561014c57601f19909201916020918201910161012c565b505050905090810190601f1680156101785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041757fe5b6101ab600160a060020a03600435166024356109d5565b604080519115158252519081900360200190f35b341561044a57fe5b6100f4610a81565b005b341561045c57fe5b604080516020600460443581810135601f81018490048402850184019095528484526101ab948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610d2c95505050505050565b604080519115158252519081900360200190f35b34156104d357fe5b6101ab600160a060020a0360043516610ede565b604080519115158252519081900360200190f35b341561050357fe5b610232600160a060020a0360043581169060243516610f00565b60408051918252519081900360200190f35b341561053757fe5b6100f4600160a060020a0360043516610f2d565b005b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b505050505081565b600160a060020a03331660009081526004602052604081205460ff16156106335750600160a060020a038084166000908152600160208190526040808320805486900390559285168252919020805483019055610637565b5060005b5b9392505050565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60035433600160a060020a039081169116146106c65760006000fd5b600160a060020a0381166000908152600460205260409020805460ff191690555b5b50565b6009544210156106fa576100f2565b600160a060020a0333166000908152600a602052604081205411156100f257600160a060020a0333166000908152600a602081815260408084208054600184529185208054909201909155919052555b5b565b60005481565b60035433600160a060020a0390811691161461076f5760006000fd5b600160a060020a0381166000908152600460205260409020805460ff191660011790555b5b50565b600160a060020a0383166000908152600160205260408120548290108015906107e75750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b80156107f35750600082115b1561063357600160a060020a03808416600081815260016020908152604080832080548801905588851680845281842080548990039055600283528184203390961684529482529182902080548790039055815186815291519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001610637565b506000610637565b5b9392505050565b60065460ff1681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105d35780601f106105a8576101008083540402835291602001916105d3565b820191906000526020600020905b8154815290600101906020018083116105b657829003601f168201915b505050505081565b600160a060020a0333166000908152600160205260408120548290108015906109fe5750600082115b15610a7257600160a060020a03338116600081815260016020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016106a4565b5060006106a4565b5b92915050565b60035433600160a060020a03908116911614610a9d5760006000fd5b600a6020526a02116545850052128000007f43c3c12bfb8d39f56c04f39ec49d6b5d85540edadb7946f024a24d6ae9b4c2ff8190557f7e834901ef34a5968205e13e9aaf05423705a0468e37240f9677ae022c8d44f68190557f99fdc3065661c3aa1d2f9de39f130b6c78742601315ec64b6bba9ce705b2a4f58190557f5230c38816a5e1f8d55f5758ec667e5f42f1f3b248671b9cba3795c4e6a96390556969e10de76676d08000007f7626783fe876f7c2f39fcee3b4911322c4ff61a20303aa27efb1238225f421828190557f350f509bcf7a525021570f26a28f6c71629334861c15b73ebd2206ac437815f8556934f086f3b33b684000007f94a06fe40d90de4466e55185b2f9e0a84e0bd59a0fcd1e1570fc43480a3eede78190557fb1150af656203f0a05b63223b8a0ea9ab16c3cc2d29b5d9f43efdcad5c5f58908190557fa70862245e6e4c828f57181556770857ba2c8dab0806caf745448063883d63688190557f6b55f5aebad8b691314ddc8f61c20ed770a8e0bfca44fe1580d33ddbdf53a69455692a5a058fc295ed0000007f1a6fab511a71949c8344c801ad7b2a1a8b33a600ad831f74d04ca52ebec416d78190557f9cb55228fa41ce4d24ecfc56118f3a47766835474b02c4dcfb5611e2c878f09e8190557fc8ce8b0fbea099e4c96d558a5094184806ccf63ba90b67ea1c02d835c7e36f968190557f239d33881a82632b5909a5fd0fc380476d656191552f24b016c02e14c48beed58190557edfaa7defb461113310a35d4772ce4fc4fc387409362fc534feddba18682cd15573689ccfeabd99081d061ae070b1da5e1f6e4b9fb26000526a01a784379d99db420000007f75d7e3b1d0fc53f8cd4cc0bc8d34199f8b38ea2c0fba4727c54b2d694baa24da555b5b565b600160a060020a03338116600081815260026020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360008314610e7e575b805182526020831115610e7e57601f199092019160209182019101610e5e565b505050905090810190601f168015610eaa5780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000876161da5a03f1925050501515610ed35760006000fd5b5060015b9392505050565b600160a060020a03811660009081526004602052604090205460ff165b919050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610f495760006000fd5b60038054600160a060020a03908116600090815260016020526040808220548584168084528284209190915584549093168252812055815473ffffffffffffffffffffffffffffffffffffffff19161790555b5b505600a165627a7a723058203e3c5e8449c9d9b689da97f9b769065d2ae57dd1083c33839ce70a684d8684d40029

Swarm Source

bzzr://3e3c5e8449c9d9b689da97f9b769065d2ae57dd1083c33839ce70a684d8684d4
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.