ETH Price: $3,315.44 (+2.02%)
Gas: 3 Gwei

Token

NRMc Closed ICO (NRMc)
 

Overview

Max Total Supply

20,000,000 NRMc

Holders

245

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,550 NRMc

Value
$0.00
0xefab8cfdcc14fb38e10583f92e154f0826a6d197
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:
NRMc

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.11;
 
contract NRMc {
    string public symbol = "NRMc";
    string public name = "NRMc Closed ICO";
    uint8 public constant decimals = 18;
    uint256 _totalSupply = 20000000000000000000000000;
    uint256 perReserve   =  2000000000000000000000000;
    bool startDone = false;
    bool finishDone = false;
    bool onefiveDone = false;
    address owner = 0;
    address reserve1 = 0x0d4dAA952a8840715d901f97EDb98973Ce8010F7;
    address reserve2 = 0xCd4846fF42C1DCe3E421cb4fE8d01523B962D641;
    address reserve3 = 0x2241C99B6f44Cc630a073703EdFDf3c9964CbE22;
    address reserve4 = 0x5c5bfC25A0B99ac5F974927F1f6D39f19Af9D14C;
    address reserve5 = 0xa8356f49640093cec3dCd6dcE1ff4Dfe3785c17c;
    bool prereserved1Done = false;
    bool prereserved2Done = false;
    bool prereserved3Done = false;
    bool prereserved4Done = false;
    bool prereserved5Done = false;
    address out1 = 0xF9D23f5d833dB355bfc870c8aCD9f4fc7EF05883;
    address out2 = 0x5c07f5DD4d3eE06A977Dee53072e10de9414E3f0;
    address out3 = 0xF425821a2545cF1414B6E342ff5D95f3c572a7CD;
    address out4 = 0xa873134afa83410787Ae29dBfB39e5C38ca05fF2;
    address out5 = 0x5E663D73de8205b3f339fAA5a4218AcA95963260;
    bool public out1Done = false;
    bool public out2Done = false;
    bool public out3Done = false;
    bool public out4Done = false;
    bool public out5Done = false;
    uint public amountRaised;
    uint public deadline;
    uint public overRaisedUnsend = 0;
    uint public backers = 0;
    uint public rate = 45000;
    uint public onefive = 0;
    uint _durationInMinutes = 0;
    mapping(address => uint256) public balanceOf;
    
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);

    mapping(address => uint256) balances;
 
    mapping(address => mapping (address => uint256)) allowed;
 
    function NRMc(address adr) {
        if (startDone == false) {
        owner = adr;        
        }
    }
    
    function StartICO(uint256 durationInMinutes) {
        if (msg.sender == owner 
        && startDone == false)
        {
            balances[owner] = _totalSupply;
            _durationInMinutes = durationInMinutes;
            deadline = now + durationInMinutes * 1 minutes;
            startDone = true;
        }
    }
    
    function SendPreReserved1() {
            if (msg.sender == owner 
            && prereserved1Done == false
            && balances[owner] >= perReserve
            && balances[reserve1] + perReserve > balances[reserve1]
            && now <= deadline
            && !finishDone 
            && startDone) 
            {
                balances[owner] -= perReserve;
                balances[reserve1] += perReserve;
                Transfer(owner, reserve1, perReserve);
                prereserved1Done = true;
                backers += 1; 
            }
    }       
    
    function SendPreReserved2() {
            if (msg.sender == owner 
            && prereserved2Done == false
            && balances[owner] >= perReserve
            && balances[reserve2] + perReserve > balances[reserve2]
            && now <= deadline
            && !finishDone 
            && startDone) 
            {
                balances[owner] -= perReserve;
                balances[reserve2] += perReserve;
                Transfer(owner, reserve2, perReserve);
                prereserved2Done = true;
                backers += 1; 
            }
    }       

    function SendPreReserved3() {
            if (msg.sender == owner 
            && prereserved3Done == false
            && balances[owner] >= perReserve
            && balances[reserve3] + perReserve > balances[reserve3]
            && now <= deadline
            && !finishDone 
            && startDone) 
            {
                balances[owner] -= perReserve;
                balances[reserve3] += perReserve;
                Transfer(owner, reserve3, perReserve);
                prereserved3Done = true;
                backers += 1; 
            }
    }       
    
    function SendPreReserved4() {
            if (msg.sender == owner 
            && prereserved4Done == false
            && balances[owner] >= perReserve
            && balances[reserve4] + perReserve > balances[reserve4]
            && now <= deadline
            && !finishDone 
            && startDone) 
            {
                balances[owner] -= perReserve;
                balances[reserve4] += perReserve;
                Transfer(owner, reserve4, perReserve);
                prereserved4Done = true;
                backers += 1; 
            }
    }       
    
    function SendPreReserved5() {
            if (msg.sender == owner 
            && prereserved5Done == false
            && balances[owner] >= perReserve
            && balances[reserve5] + perReserve > balances[reserve5]
            && now <= deadline
            && !finishDone 
            && startDone) 
            {
                balances[owner] -= perReserve;
                balances[reserve5] += perReserve;
                Transfer(owner, reserve5, perReserve);
                prereserved5Done = true;
                backers += 1; 
            }
    }       
 
    function totalSupply() constant returns (uint256 totalSupply) {        
        return _totalSupply;
    }
 
    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }
 
    function transfer(address _to, uint256 _amount) returns (bool success) {
        if (balances[msg.sender] >= _amount 
            && _amount > 0
            && balances[_to] + _amount > balances[_to]) {
            balances[msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(msg.sender, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
 
    function transferFrom(
        address _from,
        address _to,
        uint256 _amount
    ) returns (bool success) {
        if (balances[_from] >= _amount
            && allowed[_from][msg.sender] >= _amount
            && _amount > 0
            && balances[_to] + _amount > balances[_to]) {
            balances[_from] -= _amount;
            allowed[_from][msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(_from, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
    
    function () payable {
        uint _amount = msg.value * rate;
        uint amount = msg.value;
        if (balances[owner] >= _amount
            && _amount > 0
            && balances[msg.sender] + _amount > balances[msg.sender]
            && now <= deadline
            && !finishDone 
            && startDone) {
        backers += 1;
        balances[msg.sender] += _amount;
        balances[owner] -= _amount;
        amountRaised += amount;
        Transfer(owner, msg.sender, _amount);
        } else {
            if (!msg.sender.send(amount)) {
                overRaisedUnsend += amount; 
            }
        }
    }
 
    function approve(address _spender, uint256 _amount) returns (bool success) {
        allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
    }
 
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
    
    modifier afterDeadline() { if (now > deadline || balances[owner] == 0) _; }

    function safeWithdrawal() afterDeadline {
        
    if (onefiveDone == false) {
        onefive = this.balance / 5;
        onefiveDone = true;
    }

    if (out1 == msg.sender && !out1Done) {
        if (out1.send(onefive)) {
           out1Done = true;
        } 
    }
        
    if (out2 == msg.sender && !out2Done) {
        if (out2.send(onefive)) {
           out2Done = true;
        } 
    }  
        
    if (out3 == msg.sender && !out3Done) {
        if (out3.send(onefive)) {
           out3Done = true;
        } 
    }
    
    if (out4 == msg.sender && !out4Done) {
        if (out4.send(onefive)) {
           out4Done = true;
        } 
    }
    
    if (out5 == msg.sender && !out5Done) {
        if (out5.send(onefive)) {
           out5Done = true;
        } 
    }
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"SendPreReserved5","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"SendPreReserved1","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"SendPreReserved4","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"onefive","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"out5Done","outputs":[{"name":"","type":"bool"}],"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":"out3Done","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"amountRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"out2Done","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"durationInMinutes","type":"uint256"}],"name":"StartICO","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"out1Done","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"backers","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"overRaisedUnsend","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"SendPreReserved3","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"SendPreReserved2","outputs":[],"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":true,"inputs":[],"name":"out4Done","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"safeWithdrawal","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"adr","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"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"}]

60a0604052600460608190527f4e524d630000000000000000000000000000000000000000000000000000000060809081526200004091600091906200026f565b5060408051808201909152600f8082527f4e524d6320436c6f7365642049434f0000000000000000000000000000000000602090920191825262000087916001916200026f565b506a108b2a2c280290940000006002556a01a784379d99db4200000060035560048054600160b860020a031916905560058054600160a060020a0319908116730d4daa952a8840715d901f97edb98973ce8010f71790915560068054821673cd4846ff42c1dce3e421cb4fe8d01523b962d641179055600780548216732241c99b6f44cc630a073703edfdf3c9964cbe22179055600880548216735c5bfc25a0b99ac5f974927f1f6d39f19af9d14c1790556009805460a060020a60c860020a031990831673a8356f49640093cec3dcd6dce1ff4dfe3785c17c178116909155600a8054831673f9d23f5d833db355bfc870c8acd9f4fc7ef05883179055600b80548316735c07f5dd4d3ee06a977dee53072e10de9414e3f0179055600c8054831673f425821a2545cf1414b6e342ff5d95f3c572a7cd179055600d8054831673a873134afa83410787ae29dbfb39e5c38ca05ff2179055600e8054909216735e663d73de8205b3f339faa5a4218aca959632601716905560006011819055601281905561afc8601355601481905560155534156200022257fe5b6040516020806200193083398101604052515b60045460ff161515620002675760048054630100000060b860020a0319166301000000600160a060020a038416021790555b5b5062000319565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002b257805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e2578251825591602001919060010190620002c5565b5b50620002f1929150620002f5565b5090565b6200031691905b80821115620002f15760008155600101620002fc565b5090565b90565b61160780620003296000396000f3006060604052361561015c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d7406681146102ae57806306fdde03146102c0578063095ea7b31461035057806318160ddd1461038357806323b872dd146103a557806329dcb0cf146103de5780632c4e722e14610400578063313ce56714610422578063331eac0114610448578063563c78b01461045a5780635731d9e31461046c5780635bd9ea2e1461048e57806370a08231146104b257806373333128146104e05780637b3e5e7b146105045780637b6a3e271461052657806387fcd7081461054a57806391d5d7d61461055f57806392dff48a1461058357806395d89b41146105a5578063962d0c721461063557806397ee0a0514610657578063a9059cbb14610669578063ac5929441461069c578063dd62ed3e146106ae578063df9f3139146106e2578063fd6b7ef814610706575b6102ac5b60135460045463010000009004600160a060020a031660009081526017602052604090205434918202919082901080159061019b5750600082115b80156101c05750600160a060020a033316600090815260176020526040902054828101115b80156101ce57506010544211155b80156101e25750600454610100900460ff16155b80156101f0575060045460ff165b1561027257601280546001019055600160a060020a03338116600081815260176020908152604080832080548801905560048054630100000090819004871685529382902080548990039055600f80548801905554815188815291519495939004909216926000805160206115bc8339815191529281900390910190a36102a6565b604051600160a060020a0333169082156108fc029083906000818181858888f1935050505015156102a65760118054820190555b5b5b5050565b005b34156102b657fe5b6102ac610718565b005b34156102c857fe5b6102d0610883565b604080516020808252835181830152835191928392908301918501908083838215610316575b80518252602083111561031657601f1990920191602091820191016102f6565b505050905090810190601f1680156103425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035857fe5b61036f600160a060020a0360043516602435610910565b604080519115158252519081900360200190f35b341561038b57fe5b61039361097b565b60408051918252519081900360200190f35b34156103ad57fe5b61036f600160a060020a0360043581169060243516604435610982565b604080519115158252519081900360200190f35b34156103e657fe5b610393610a8a565b60408051918252519081900360200190f35b341561040857fe5b610393610a90565b60408051918252519081900360200190f35b341561042a57fe5b610432610a96565b6040805160ff9092168252519081900360200190f35b341561045057fe5b6102ac610a9b565b005b341561046257fe5b6102ac610c02565b005b341561047457fe5b610393610d6c565b60408051918252519081900360200190f35b341561049657fe5b61036f610d72565b604080519115158252519081900360200190f35b34156104ba57fe5b610393600160a060020a0360043516610d82565b60408051918252519081900360200190f35b34156104e857fe5b61036f610da1565b604080519115158252519081900360200190f35b341561050c57fe5b610393610db1565b60408051918252519081900360200190f35b341561052e57fe5b61036f610db7565b604080519115158252519081900360200190f35b341561055257fe5b6102ac600435610dc7565b005b341561056757fe5b61036f610e3c565b604080519115158252519081900360200190f35b341561058b57fe5b610393610e4c565b60408051918252519081900360200190f35b34156105ad57fe5b6102d0610e52565b604080516020808252835181830152835191928392908301918501908083838215610316575b80518252602083111561031657601f1990920191602091820191016102f6565b505050905090810190601f1680156103425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561063d57fe5b610393610ee0565b60408051918252519081900360200190f35b341561065f57fe5b6102ac610ee6565b005b341561067157fe5b61036f600160a060020a036004351660243561104f565b604080519115158252519081900360200190f35b34156106a457fe5b6102ac61110e565b005b34156106b657fe5b610393600160a060020a0360043581169060243516611276565b60408051918252519081900360200190f35b34156106ea57fe5b61036f6112a3565b604080519115158252519081900360200190f35b341561070e57fe5b6102ac6112b3565b005b60045433600160a060020a03908116630100000090920416148015610747575060095460c060020a900460ff16155b8015610776575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b801561079f5750600954600160a060020a03166000908152601760205260409020546003548101115b80156107ad57506010544211155b80156107c15750600454610100900460ff16155b80156107cf575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546009805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805478ff000000000000000000000000000000000000000000000000191660c060020a1790556012805460010190555b5b565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b505050505081565b600160a060020a03338116600081815260186020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6002545b90565b600160a060020a0383166000908152601760205260408120548290108015906109d25750600160a060020a0380851660009081526018602090815260408083203390941683529290522054829010155b80156109de5750600082115b8015610a035750600160a060020a038316600090815260176020526040902054828101115b15610a7e57600160a060020a03808516600081815260176020818152604080842080548990039055601882528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190936000805160206115bc83398151915292908290030190a3506001610a82565b5060005b5b9392505050565b60105481565b60135481565b601281565b60045433600160a060020a03908116630100000090920416148015610aca575060095460a060020a900460ff16155b8015610af9575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b8015610b225750600554600160a060020a03166000908152601760205260409020546003548101115b8015610b3057506010544211155b8015610b445750600454610100900460ff16155b8015610b52575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546005805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805474ff0000000000000000000000000000000000000000191660a060020a1790556012805460010190555b5b565b60045433600160a060020a03908116630100000090920416148015610c31575060095460b860020a900460ff16155b8015610c60575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b8015610c895750600854600160a060020a03166000908152601760205260409020546003548101115b8015610c9757506010544211155b8015610cab5750600454610100900460ff16155b8015610cb9575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546008805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805477ff0000000000000000000000000000000000000000000000191660b860020a1790556012805460010190555b5b565b60145481565b600e5460c060020a900460ff1681565b600160a060020a0381166000908152601760205260409020545b919050565b600e5460b060020a900460ff1681565b600f5481565b600e5460a860020a900460ff1681565b60045433600160a060020a03908116630100000090920416148015610def575060045460ff16155b15610e385760025460048054600160a060020a03630100000090910416600090815260176020526040902091909155601582905542603c830201601055805460ff191660011790555b5b50565b600e5460a060020a900460ff1681565b60125481565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b505050505081565b60115481565b60045433600160a060020a03908116630100000090920416148015610f15575060095460b060020a900460ff16155b8015610f44575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b8015610f6d5750600754600160a060020a03166000908152601760205260409020546003548101115b8015610f7b57506010544211155b8015610f8f5750600454610100900460ff16155b8015610f9d575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546007805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805476ff00000000000000000000000000000000000000000000191660b060020a1790556012805460010190555b5b565b600160a060020a0333166000908152601760205260408120548290108015906110785750600082115b801561109d5750600160a060020a038316600090815260176020526040902054828101115b156110ff57600160a060020a03338116600081815260176020908152604080832080548890039055938716808352918490208054870190558351868152935191936000805160206115bc833981519152929081900390910190a3506001610975565b506000610975565b5b92915050565b60045433600160a060020a0390811663010000009092041614801561113d575060095460a860020a900460ff16155b801561116c575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b80156111955750600654600160a060020a03166000908152601760205260409020546003548101115b80156111a357506010544211155b80156111b75750600454610100900460ff16155b80156111c5575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546006805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805475ff000000000000000000000000000000000000000000191660a860020a1790556012805460010190555b5b565b600160a060020a038083166000908152601860209081526040808320938516835292905220545b92915050565b600e5460b860020a900460ff1681565b6010544211806112e2575060045463010000009004600160a060020a0316600090815260176020526040902054155b156108805760045462010000900460ff16151561131d576005600160a060020a033016315b046014556004805462ff00001916620100001790555b600a5433600160a060020a0390811691161480156113455750600e5460a060020a900460ff16155b1561139f57600a54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561139f57600e805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b600b5433600160a060020a0390811691161480156113c85750600e5460a860020a900460ff16155b1561142357600b54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561142357600e805475ff000000000000000000000000000000000000000000191660a860020a1790555b5b600c5433600160a060020a03908116911614801561144c5750600e5460b060020a900460ff16155b156114a857600c54601454604051600160a060020a039092169181156108fc0291906000818181858888f19350505050156114a857600e805476ff00000000000000000000000000000000000000000000191660b060020a1790555b5b600d5433600160a060020a0390811691161480156114d15750600e5460b860020a900460ff16155b1561152e57600d54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561152e57600e805477ff0000000000000000000000000000000000000000000000191660b860020a1790555b5b600e5433600160a060020a0390811691161480156115575750600e5460c060020a900460ff16155b1561088057600e54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561088057600e805478ff000000000000000000000000000000000000000000000000191660c060020a1790555b5b5b5b5b5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820bb15fb73b5746d382c2858481e63278a2458ae111902c8c9e870ba066a1a8f89002900000000000000000000000028c4d59ddd07b12bead2b287db308e19abfc5891

Deployed Bytecode

0x6060604052361561015c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d7406681146102ae57806306fdde03146102c0578063095ea7b31461035057806318160ddd1461038357806323b872dd146103a557806329dcb0cf146103de5780632c4e722e14610400578063313ce56714610422578063331eac0114610448578063563c78b01461045a5780635731d9e31461046c5780635bd9ea2e1461048e57806370a08231146104b257806373333128146104e05780637b3e5e7b146105045780637b6a3e271461052657806387fcd7081461054a57806391d5d7d61461055f57806392dff48a1461058357806395d89b41146105a5578063962d0c721461063557806397ee0a0514610657578063a9059cbb14610669578063ac5929441461069c578063dd62ed3e146106ae578063df9f3139146106e2578063fd6b7ef814610706575b6102ac5b60135460045463010000009004600160a060020a031660009081526017602052604090205434918202919082901080159061019b5750600082115b80156101c05750600160a060020a033316600090815260176020526040902054828101115b80156101ce57506010544211155b80156101e25750600454610100900460ff16155b80156101f0575060045460ff165b1561027257601280546001019055600160a060020a03338116600081815260176020908152604080832080548801905560048054630100000090819004871685529382902080548990039055600f80548801905554815188815291519495939004909216926000805160206115bc8339815191529281900390910190a36102a6565b604051600160a060020a0333169082156108fc029083906000818181858888f1935050505015156102a65760118054820190555b5b5b5050565b005b34156102b657fe5b6102ac610718565b005b34156102c857fe5b6102d0610883565b604080516020808252835181830152835191928392908301918501908083838215610316575b80518252602083111561031657601f1990920191602091820191016102f6565b505050905090810190601f1680156103425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561035857fe5b61036f600160a060020a0360043516602435610910565b604080519115158252519081900360200190f35b341561038b57fe5b61039361097b565b60408051918252519081900360200190f35b34156103ad57fe5b61036f600160a060020a0360043581169060243516604435610982565b604080519115158252519081900360200190f35b34156103e657fe5b610393610a8a565b60408051918252519081900360200190f35b341561040857fe5b610393610a90565b60408051918252519081900360200190f35b341561042a57fe5b610432610a96565b6040805160ff9092168252519081900360200190f35b341561045057fe5b6102ac610a9b565b005b341561046257fe5b6102ac610c02565b005b341561047457fe5b610393610d6c565b60408051918252519081900360200190f35b341561049657fe5b61036f610d72565b604080519115158252519081900360200190f35b34156104ba57fe5b610393600160a060020a0360043516610d82565b60408051918252519081900360200190f35b34156104e857fe5b61036f610da1565b604080519115158252519081900360200190f35b341561050c57fe5b610393610db1565b60408051918252519081900360200190f35b341561052e57fe5b61036f610db7565b604080519115158252519081900360200190f35b341561055257fe5b6102ac600435610dc7565b005b341561056757fe5b61036f610e3c565b604080519115158252519081900360200190f35b341561058b57fe5b610393610e4c565b60408051918252519081900360200190f35b34156105ad57fe5b6102d0610e52565b604080516020808252835181830152835191928392908301918501908083838215610316575b80518252602083111561031657601f1990920191602091820191016102f6565b505050905090810190601f1680156103425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561063d57fe5b610393610ee0565b60408051918252519081900360200190f35b341561065f57fe5b6102ac610ee6565b005b341561067157fe5b61036f600160a060020a036004351660243561104f565b604080519115158252519081900360200190f35b34156106a457fe5b6102ac61110e565b005b34156106b657fe5b610393600160a060020a0360043581169060243516611276565b60408051918252519081900360200190f35b34156106ea57fe5b61036f6112a3565b604080519115158252519081900360200190f35b341561070e57fe5b6102ac6112b3565b005b60045433600160a060020a03908116630100000090920416148015610747575060095460c060020a900460ff16155b8015610776575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b801561079f5750600954600160a060020a03166000908152601760205260409020546003548101115b80156107ad57506010544211155b80156107c15750600454610100900460ff16155b80156107cf575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546009805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805478ff000000000000000000000000000000000000000000000000191660c060020a1790556012805460010190555b5b565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b505050505081565b600160a060020a03338116600081815260186020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6002545b90565b600160a060020a0383166000908152601760205260408120548290108015906109d25750600160a060020a0380851660009081526018602090815260408083203390941683529290522054829010155b80156109de5750600082115b8015610a035750600160a060020a038316600090815260176020526040902054828101115b15610a7e57600160a060020a03808516600081815260176020818152604080842080548990039055601882528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190936000805160206115bc83398151915292908290030190a3506001610a82565b5060005b5b9392505050565b60105481565b60135481565b601281565b60045433600160a060020a03908116630100000090920416148015610aca575060095460a060020a900460ff16155b8015610af9575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b8015610b225750600554600160a060020a03166000908152601760205260409020546003548101115b8015610b3057506010544211155b8015610b445750600454610100900460ff16155b8015610b52575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546005805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805474ff0000000000000000000000000000000000000000191660a060020a1790556012805460010190555b5b565b60045433600160a060020a03908116630100000090920416148015610c31575060095460b860020a900460ff16155b8015610c60575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b8015610c895750600854600160a060020a03166000908152601760205260409020546003548101115b8015610c9757506010544211155b8015610cab5750600454610100900460ff16155b8015610cb9575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546008805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805477ff0000000000000000000000000000000000000000000000191660b860020a1790556012805460010190555b5b565b60145481565b600e5460c060020a900460ff1681565b600160a060020a0381166000908152601760205260409020545b919050565b600e5460b060020a900460ff1681565b600f5481565b600e5460a860020a900460ff1681565b60045433600160a060020a03908116630100000090920416148015610def575060045460ff16155b15610e385760025460048054600160a060020a03630100000090910416600090815260176020526040902091909155601582905542603c830201601055805460ff191660011790555b5b50565b600e5460a060020a900460ff1681565b60125481565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b505050505081565b60115481565b60045433600160a060020a03908116630100000090920416148015610f15575060095460b060020a900460ff16155b8015610f44575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b8015610f6d5750600754600160a060020a03166000908152601760205260409020546003548101115b8015610f7b57506010544211155b8015610f8f5750600454610100900460ff16155b8015610f9d575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546007805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805476ff00000000000000000000000000000000000000000000191660b060020a1790556012805460010190555b5b565b600160a060020a0333166000908152601760205260408120548290108015906110785750600082115b801561109d5750600160a060020a038316600090815260176020526040902054828101115b156110ff57600160a060020a03338116600081815260176020908152604080832080548890039055938716808352918490208054870190558351868152935191936000805160206115bc833981519152929081900390910190a3506001610975565b506000610975565b5b92915050565b60045433600160a060020a0390811663010000009092041614801561113d575060095460a860020a900460ff16155b801561116c575060035460045463010000009004600160a060020a031660009081526017602052604090205410155b80156111955750600654600160a060020a03166000908152601760205260409020546003548101115b80156111a357506010544211155b80156111b75750600454610100900460ff16155b80156111c5575060045460ff165b15610880576003805460048054600160a060020a036301000000918290048116600090815260176020908152604080832080549790970390965586546006805485168452928790208054909101905590549354955485519081529451938216959290920416926000805160206115bc833981519152929081900390910190a36009805475ff000000000000000000000000000000000000000000191660a860020a1790556012805460010190555b5b565b600160a060020a038083166000908152601860209081526040808320938516835292905220545b92915050565b600e5460b860020a900460ff1681565b6010544211806112e2575060045463010000009004600160a060020a0316600090815260176020526040902054155b156108805760045462010000900460ff16151561131d576005600160a060020a033016315b046014556004805462ff00001916620100001790555b600a5433600160a060020a0390811691161480156113455750600e5460a060020a900460ff16155b1561139f57600a54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561139f57600e805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b600b5433600160a060020a0390811691161480156113c85750600e5460a860020a900460ff16155b1561142357600b54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561142357600e805475ff000000000000000000000000000000000000000000191660a860020a1790555b5b600c5433600160a060020a03908116911614801561144c5750600e5460b060020a900460ff16155b156114a857600c54601454604051600160a060020a039092169181156108fc0291906000818181858888f19350505050156114a857600e805476ff00000000000000000000000000000000000000000000191660b060020a1790555b5b600d5433600160a060020a0390811691161480156114d15750600e5460b860020a900460ff16155b1561152e57600d54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561152e57600e805477ff0000000000000000000000000000000000000000000000191660b860020a1790555b5b600e5433600160a060020a0390811691161480156115575750600e5460c060020a900460ff16155b1561088057600e54601454604051600160a060020a039092169181156108fc0291906000818181858888f193505050501561088057600e805478ff000000000000000000000000000000000000000000000000191660c060020a1790555b5b5b5b5b5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820bb15fb73b5746d382c2858481e63278a2458ae111902c8c9e870ba066a1a8f890029

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

00000000000000000000000028c4d59ddd07b12bead2b287db308e19abfc5891

-----Decoded View---------------
Arg [0] : adr (address): 0x28C4D59Ddd07B12BEAd2b287DB308E19Abfc5891

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000028c4d59ddd07b12bead2b287db308e19abfc5891


Swarm Source

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