ETH Price: $3,420.18 (-1.05%)
Gas: 6 Gwei

Token

CPROP (CPROP)
 

Overview

Max Total Supply

2,125,365,557 CPROP

Holders

27,396

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 CPROP

Value
$0.00
0x66d3279C3F3F7bfA4fde877E06FA4005BBC73563
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:
CPROPToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.21;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}

contract admined is owned {
    address public admin;

    function admined() public {
        admin = msg.sender;
    }

    modifier onlyAdmin {
        require(msg.sender == admin || msg.sender == owner);
        _;
    }

    function transferAdmin(address newAdmin) onlyOwner public {
        admin = newAdmin;
    }
}

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

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

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

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

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

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }

contract TokenERC20 {
    using SafeMath for uint256;
    // Public variables of the token
    string public name;
    string public symbol;
    uint256 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20(
        uint256 initialSupply,
        string tokenName,
        uint256 decimalsToken,
        string tokenSymbol
    ) public {
        decimals = decimalsToken;
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        emit Transfer(0, msg.sender, totalSupply);
        balanceOf[msg.sender] = totalSupply;                // Give the contract itself all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Subtract from the sender
        balanceOf[_from] = balanceOf[_from].sub(_value);
        // Add the same to the recipient
        balanceOf[_to] = balanceOf[_to].add(_value);
        emit Transfer(_from, _to, _value);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_value);
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        _burn(msg.sender, _value);
        return true;
    }
    
    function _burn(address _who, uint256 _value) internal {
        balanceOf[_who] = balanceOf[_who].sub(_value);  // Subtract from the sender
        totalSupply = totalSupply.sub(_value);                      // Updates totalSupply
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_value); // Subtract from the sender's allowance
        _burn(_from, _value);
        return true;
    }

    function getBalance(address _to) view public returns(uint res) {
        return balanceOf[_to];
    }

}

contract CPROPToken is admined, TokenERC20  {
    function CPROPToken(
        uint256 initialSupply,
        string tokenName,
        uint256 decimalsToken,
        string tokenSymbol
    ) TokenERC20(initialSupply, tokenName, decimalsToken, tokenSymbol) public {
    }
}

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":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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"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":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","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":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_to","type":"address"}],"name":"getBalance","outputs":[{"name":"res","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalsToken","type":"uint256"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]

60606040526012600455341561001457600080fd5b604051610c36380380610c3683398101604052808051919060200180518201919060200180519190602001805160008054600160a060020a033316600160a060020a0319918216811783556001805490921681179091556004869055600a86900a880260058190559290940193879350869286928692917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060405190815260200160405180910390a3600554600160a060020a03331660009081526006602052604090205560028380516100ed92916020019061010f565b50600381805161010192916020019061010f565b5050505050505050506101aa565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015057805160ff191683800117855561017d565b8280016001018555821561017d579182015b8281111561017d578251825591602001919060010190610162565b5061018992915061018d565b5090565b6101a791905b808211156101895760008155600101610193565b90565b610a7d806101b96000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce5671461020257806342966c681461021557806370a082311461022b57806375829def1461024a57806379cc67901461026b5780638da5cb5b1461028d57806395d89b41146102bc578063a9059cbb146102cf578063cae9ca51146102f1578063dd62ed3e14610356578063f2fde38b1461037b578063f851a4401461039a578063f8b2cb4f146103ad575b600080fd5b341561010057600080fd5b6101086103cc565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a036004351660243561046a565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c86104d6565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a03600435811690602435166044356104dc565b341561020d57600080fd5b6101c8610551565b341561022057600080fd5b6101a1600435610557565b341561023657600080fd5b6101c8600160a060020a036004351661056b565b341561025557600080fd5b610269600160a060020a036004351661057d565b005b341561027657600080fd5b6101a1600160a060020a03600435166024356105c7565b341561029857600080fd5b6102a061063a565b604051600160a060020a03909116815260200160405180910390f35b34156102c757600080fd5b610108610649565b34156102da57600080fd5b610269600160a060020a03600435166024356106b4565b34156102fc57600080fd5b6101a160048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506106c395505050505050565b341561036157600080fd5b6101c8600160a060020a03600435811690602435166107f1565b341561038657600080fd5b610269600160a060020a036004351661080e565b34156103a557600080fd5b6102a0610858565b34156103b857600080fd5b6101c8600160a060020a0360043516610867565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b505050505081565b600160a060020a03338116600081815260076020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a03808416600090815260076020908152604080832033909416835292905290812054610515908363ffffffff61088216565b600160a060020a0380861660009081526007602090815260408083203390941683529290522055610547848484610894565b5060019392505050565b60045481565b60006105633383610963565b506001919050565b60066020526000908152604090205481565b60005433600160a060020a0390811691161461059857600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03808316600090815260076020908152604080832033909416835292905290812054610600908363ffffffff61088216565b600160a060020a03808516600090815260076020908152604080832033909416835292905220556106318383610963565b50600192915050565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104625780601f1061043757610100808354040283529160200191610462565b6106bf338383610894565b5050565b6000836106d0818561046a565b156107e95780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561078657808201518382015260200161076e565b50505050905090810190601f1680156107b35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15156107d457600080fd5b5af115156107e157600080fd5b505050600191505b509392505050565b600760209081526000928352604080842090915290825290205481565b60005433600160a060020a0390811691161461082957600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600154600160a060020a031681565b600160a060020a031660009081526006602052604090205490565b60008282111561088e57fe5b50900390565b600160a060020a03821615156108a957600080fd5b600160a060020a0383166000908152600660205260409020546108d2908263ffffffff61088216565b600160a060020a038085166000908152600660205260408082209390935590841681522054610907908263ffffffff610a3b16565b600160a060020a03808416600081815260066020526040908190209390935591908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a3505050565b600160a060020a03821660009081526006602052604090205461098c908263ffffffff61088216565b600160a060020a0383166000908152600660205260409020556005546109b8908263ffffffff61088216565b600555600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a0383167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600082820183811015610a4a57fe5b93925050505600a165627a7a72305820c7b4adb287ec3697d260ba6db16b6fe1d19f649e873eb59a5b3c0fc5dd195c640029000000000000000000000000000000000000000000000000000000016d6060800000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000054350524f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054350524f50000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce5671461020257806342966c681461021557806370a082311461022b57806375829def1461024a57806379cc67901461026b5780638da5cb5b1461028d57806395d89b41146102bc578063a9059cbb146102cf578063cae9ca51146102f1578063dd62ed3e14610356578063f2fde38b1461037b578063f851a4401461039a578063f8b2cb4f146103ad575b600080fd5b341561010057600080fd5b6101086103cc565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a036004351660243561046a565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c86104d6565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a03600435811690602435166044356104dc565b341561020d57600080fd5b6101c8610551565b341561022057600080fd5b6101a1600435610557565b341561023657600080fd5b6101c8600160a060020a036004351661056b565b341561025557600080fd5b610269600160a060020a036004351661057d565b005b341561027657600080fd5b6101a1600160a060020a03600435166024356105c7565b341561029857600080fd5b6102a061063a565b604051600160a060020a03909116815260200160405180910390f35b34156102c757600080fd5b610108610649565b34156102da57600080fd5b610269600160a060020a03600435166024356106b4565b34156102fc57600080fd5b6101a160048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506106c395505050505050565b341561036157600080fd5b6101c8600160a060020a03600435811690602435166107f1565b341561038657600080fd5b610269600160a060020a036004351661080e565b34156103a557600080fd5b6102a0610858565b34156103b857600080fd5b6101c8600160a060020a0360043516610867565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b505050505081565b600160a060020a03338116600081815260076020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a03808416600090815260076020908152604080832033909416835292905290812054610515908363ffffffff61088216565b600160a060020a0380861660009081526007602090815260408083203390941683529290522055610547848484610894565b5060019392505050565b60045481565b60006105633383610963565b506001919050565b60066020526000908152604090205481565b60005433600160a060020a0390811691161461059857600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03808316600090815260076020908152604080832033909416835292905290812054610600908363ffffffff61088216565b600160a060020a03808516600090815260076020908152604080832033909416835292905220556106318383610963565b50600192915050565b600054600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104625780601f1061043757610100808354040283529160200191610462565b6106bf338383610894565b5050565b6000836106d0818561046a565b156107e95780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561078657808201518382015260200161076e565b50505050905090810190601f1680156107b35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15156107d457600080fd5b5af115156107e157600080fd5b505050600191505b509392505050565b600760209081526000928352604080842090915290825290205481565b60005433600160a060020a0390811691161461082957600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600154600160a060020a031681565b600160a060020a031660009081526006602052604090205490565b60008282111561088e57fe5b50900390565b600160a060020a03821615156108a957600080fd5b600160a060020a0383166000908152600660205260409020546108d2908263ffffffff61088216565b600160a060020a038085166000908152600660205260408082209390935590841681522054610907908263ffffffff610a3b16565b600160a060020a03808416600081815260066020526040908190209390935591908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a3505050565b600160a060020a03821660009081526006602052604090205461098c908263ffffffff61088216565b600160a060020a0383166000908152600660205260409020556005546109b8908263ffffffff61088216565b600555600160a060020a0382167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405190815260200160405180910390a26000600160a060020a0383167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600082820183811015610a4a57fe5b93925050505600a165627a7a72305820c7b4adb287ec3697d260ba6db16b6fe1d19f649e873eb59a5b3c0fc5dd195c640029

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

000000000000000000000000000000000000000000000000000000016d6060800000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000054350524f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054350524f50000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 6130000000
Arg [1] : tokenName (string): CPROP
Arg [2] : decimalsToken (uint256): 18
Arg [3] : tokenSymbol (string): CPROP

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000016d606080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4350524f50000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4350524f50000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

7460:281:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2070:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2070:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5217:225;;;;;;;;;;-1:-1:-1;;;;;5217:225:0;;;;;;;;;;;;;;;;;;;;;;;;2230:26;;;;;;;;;;;;;;;;;;;;;;;;;;;4700:248;;;;;;;;;;-1:-1:-1;;;;;4700:248:0;;;;;;;;;;;;2122:28;;;;;;;;;;;;6354:126;;;;;;;;;;;;;;2313:45;;;;;;;;;;-1:-1:-1;;;;;2313:45:0;;;;;580:93;;;;;;;;;;-1:-1:-1;;;;;580:93:0;;;;;;;7078:262;;;;;;;;;;-1:-1:-1;;;;;7078:262:0;;;;;;;50:20;;;;;;;;;;;;;;;-1:-1:-1;;;;;50:20:0;;;;;;;;;;;;;;2095;;;;;;;;;;;;4313:107;;;;;;;;;;-1:-1:-1;;;;;4313:107:0;;;;;;;5841:338;;;;;;;;;;;;;-1:-1:-1;;;;;5841:338:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5841:338:0;;-1:-1:-1;5841:338:0;;-1:-1:-1;;;;;;5841:338:0;2365:66;;;;;;;;;;-1:-1:-1;;;;;2365:66:0;;;;;;;;;;234:97;;;;;;;;;;-1:-1:-1;;;;;234:97:0;;;;;371:20;;;;;;;;;;;;7348:103;;;;;;;;;;-1:-1:-1;;;;;7348:103:0;;;;;2070:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5217:225::-;-1:-1:-1;;;;;5328:10:0;5318:21;;5293:12;5318:21;;;:9;:21;;;;;;;;:31;;;;;;;;;;;;;:40;;;5293:12;;5318:31;:21;5374:38;;5352:6;;5374:38;;;;;;;;;;;;;-1:-1:-1;5430:4:0;5217:225;;;;:::o;2230:26::-;;;;:::o;4700:248::-;-1:-1:-1;;;;;4838:16:0;;;4782:12;4838:16;;;:9;:16;;;;;;;;4855:10;4838:28;;;;;;;;;;;;:40;;4871:6;4838:40;:32;:40;:::i;:::-;-1:-1:-1;;;;;4807:16:0;;;;;;;:9;:16;;;;;;;;4824:10;4807:28;;;;;;;;;:71;4889:29;4817:5;4906:3;4911:6;4889:9;:29::i;:::-;-1:-1:-1;4936:4:0;4700:248;;;;;:::o;2122:28::-;;;;:::o;6354:126::-;6400:12;6425:25;6431:10;6443:6;6425:5;:25::i;:::-;-1:-1:-1;6468:4:0;6354:126;;;:::o;2313:45::-;;;;;;;;;;;;;:::o;580:93::-;200:5;;186:10;-1:-1:-1;;;;;186:19:0;;;200:5;;186:19;178:28;;;;;;649:5;:16;;-1:-1:-1;;649:16:0;-1:-1:-1;;;;;649:16:0;;;;;;;;;;580:93::o;7078:262::-;-1:-1:-1;;;;;7199:16:0;;;7143:12;7199:16;;;:9;:16;;;;;;;;7216:10;7199:28;;;;;;;;;;;;:40;;7232:6;7199:40;:32;:40;:::i;:::-;-1:-1:-1;;;;;7168:16:0;;;;;;;:9;:16;;;;;;;;7185:10;7168:28;;;;;;;;;:71;7290:20;7178:5;7303:6;7290:5;:20::i;:::-;-1:-1:-1;7328:4:0;7078:262;;;;:::o;50:20::-;;;-1:-1:-1;;;;;50:20:0;;:::o;2095:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4313:107;4378:34;4388:10;4400:3;4405:6;4378:9;:34::i;:::-;4313:107;;:::o;5841:338::-;5942:12;6007:8;6031:25;6007:8;6049:6;6031:7;:25::i;:::-;6027:145;;;6073:7;-1:-1:-1;;;;;6073:23:0;;6097:10;6109:6;6117:4;6123:10;6073:61;;;;;;;;;;;;;-1:-1:-1;;;;;6073:61:0;-1:-1:-1;;;;;6073:61:0;;;;;;;;;;;-1:-1:-1;;;;;6073:61:0;-1:-1:-1;;;;;6073:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6073:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6156:4;6149:11;;6027:145;5841:338;;;;;;:::o;2365:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;234:97::-;200:5;;186:10;-1:-1:-1;;;;;186:19:0;;;200:5;;186:19;178:28;;;;;;307:5;:16;;-1:-1:-1;;307:16:0;-1:-1:-1;;;;;307:16:0;;;;;;;;;;234:97::o;371:20::-;;;-1:-1:-1;;;;;371:20:0;;:::o;7348:103::-;-1:-1:-1;;;;;7429:14:0;7401:8;7429:14;;;:9;:14;;;;;;;7348:103::o;1520:113::-;1578:7;1601:6;;;;1594:14;;;;-1:-1:-1;1622:5:0;;;1520:113::o;3696:406::-;-1:-1:-1;;;;;3848:10:0;;;;3840:19;;;;;;-1:-1:-1;;;;;3926:16:0;;;;;;:9;:16;;;;;;:28;;3947:6;3926:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;3907:16:0;;;;;;;:9;:16;;;;;;:47;;;;4024:14;;;;;;;:26;;4043:6;4024:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;4007:14:0;;;;;;;:9;:14;;;;;;;:43;;;;:14;4066:28;;;;;;4087:6;;4066:28;;;;;;;;;;;;;3696:406;;;:::o;6492:323::-;-1:-1:-1;;;;;6575:15:0;;;;;;:9;:15;;;;;;:27;;6595:6;6575:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6557:15:0;;;;;;:9;:15;;;;;:45;6656:11;;:23;;6672:6;6656:23;:15;:23;:::i;:::-;6642:11;:37;-1:-1:-1;;;;;6739:18:0;;;6750:6;6739:18;;;;;;;;;;;;;;6796:1;-1:-1:-1;;;;;6773:34:0;;;6800:6;6773:34;;;;;;;;;;;;;;6492:323;;:::o;1700:133::-;1758:7;1786:5;;;1805:6;;;;1798:14;;;;1826:1;1700:133;-1:-1:-1;;;1700:133:0:o

Swarm Source

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