ETH Price: $2,509.95 (+12.62%)
 

Overview

Max Total Supply

50,000,000 AOT

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
77.850615876456016967 AOT

Value
$0.00
0xBdf59d84e393cC0728409144512D2cd62C3278f3
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:
ANTv3

Compiler Version
v0.4.17+commit.bdeb9e52

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 1 : token.sol
/**

       ▄████████  ▄██████▄  ▀█████████▄
      ███    ███ ███    ███   ▀▀███▀▀██ 
      ███    ███ ███    ███     ███   ▀ 
      ███    ███ ███    ███     ███
    ▀███████████ ███    ███     ███     
      ███    ███ ███    ███     ███     
      ███    ███ ███    ███     ███     
      ███    █▀   ▀██████▀     ▄████▀   
                                    
*/

pragma solidity ^0.4.17;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    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;
    }

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

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

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;

    /**
      * @dev The Ownable constructor sets the original `owner` of the contract to the sender
      * account.
      */
    function Ownable() public {
        owner = 0x9c188e0682D140659f6d3b62dc5e439294c6FaF8;
    }

    /**
      * @dev Throws if called by any account other than the owner.
      */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
    uint public _totalSupply;
    function totalSupply() public constant returns (uint);
    function balanceOf(address who) public constant returns (uint);
    function transfer(address to, uint value) public;
    event Transfer(address indexed from, address indexed to, uint value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint);
    function transferFrom(address from, address to, uint value) public;
    function approve(address spender, uint value) public;
    event Approval(address indexed owner, address indexed spender, uint value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is Ownable, ERC20Basic {
    using SafeMath for uint;

    mapping(address => uint) public balances;

    // additional variables for use if transaction fees ever became necessary
    uint public basisPointsRate = 0;
    uint public maximumFee = 0;

    /**
    * @dev Fix for the ERC20 short address attack.
    */
    modifier onlyPayloadSize(uint size) {
        require(!(msg.data.length < size + 4));
        _;
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint _value) public onlyPayloadSize(2 * 32) {
        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        uint sendAmount = _value.sub(fee);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(msg.sender, owner, fee);
        }
        Transfer(msg.sender, _to, sendAmount);
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public constant returns (uint balance) {
        return balances[_owner];
    }

}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is BasicToken, ERC20 {

    mapping (address => mapping (address => uint)) public allowed;

    uint public constant MAX_UINT = 2**256 - 1;

    /**
    * @dev Transfer tokens from one address to another
    * @param _from address The address which you want to send tokens from
    * @param _to address The address which you want to transfer to
    * @param _value uint the amount of tokens to be transferred
    */
    function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) {
        var _allowance = allowed[_from][msg.sender];

        // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
        // if (_value > _allowance) throw;

        uint fee = (_value.mul(basisPointsRate)).div(10000);
        if (fee > maximumFee) {
            fee = maximumFee;
        }
        if (_allowance < MAX_UINT) {
            allowed[_from][msg.sender] = _allowance.sub(_value);
        }
        uint sendAmount = _value.sub(fee);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(_from, owner, fee);
        }
        Transfer(_from, _to, sendAmount);
    }

    /**
    * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
    * @param _spender The address which will spend the funds.
    * @param _value The amount of tokens to be spent.
    */
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {

        // To change the approve amount you first have to reduce the addresses`
        //  allowance to zero by calling `approve(_spender, 0)` if it is not
        //  already 0 to mitigate the race condition described here:
        //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        require(!((_value != 0) && (allowed[msg.sender][_spender] != 0)));

        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
    }

    /**
    * @dev Function to check the amount of tokens than an owner allowed to a spender.
    * @param _owner address The address which owns the funds.
    * @param _spender address The address which will spend the funds.
    * @return A uint specifying the amount of tokens still available for the spender.
    */
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        return allowed[_owner][_spender];
    }

}

contract UpgradedStandardToken is StandardToken{
    // those methods are called by the legacy contract
    // and they must ensure msg.sender to be the contract address
    function transferByLegacy(address from, address to, uint value) public;
    function transferFromByLegacy(address sender, address from, address spender, uint value) public;
    function approveByLegacy(address from, address spender, uint value) public;
}

contract Log {
    mapping (address => mapping (address => mapping(uint => uint))) public history;
    function record(address _from, address _to, uint _value) public {
        history[_from][_to][now] = _value;
    }
}

/**
 * @title ANTv3 Token
 * @dev The official token for Aragon
 * ERC-20 with supply controls + add-ons to allow for offchain signing
 * See EIP-712, EIP-2612, and EIP-3009 for details
 */
contract ANTv3 is StandardToken {

    string public name;
    string public symbol;
    uint public decimals;
    address public upgradedAddress;
    bool public deprecated;
    Log public log;
    
    function ANTv3(uint _initialSupply, string _name, string _symbol, uint _decimals, address _log) public {
        _totalSupply = _initialSupply;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        balances[owner] = _initialSupply;
        deprecated = false;
        log = Log(_log);
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint _value) public {
        log.record(msg.sender, _to, _value);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        } else {
            return super.transfer(_to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transferFrom(address _from, address _to, uint _value) public {
        log.record(_from, _to, _value);
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
        } else {
            return super.transferFrom(_from, _to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function balanceOf(address who) public constant returns (uint) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).balanceOf(who);
        } else {
            return super.balanceOf(who);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) {
        if (deprecated) {
            return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
        } else {
            return super.approve(_spender, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function allowance(address _owner, address _spender) public constant returns (uint remaining) {
        if (deprecated) {
            return StandardToken(upgradedAddress).allowance(_owner, _spender);
        } else {
            return super.allowance(_owner, _spender);
        }
    }

    // deprecate current contract in favour of a new one
    function deprecate(address _upgradedAddress) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        Deprecate(_upgradedAddress);
    }

    // deprecate current contract if favour of a new one
    function totalSupply() public constant returns (uint) {
        if (deprecated) {
            return StandardToken(upgradedAddress).totalSupply();
        } else {
            return _totalSupply;
        }
    }

    // this history config is setted by the owner
    function setLog(address _log) public onlyOwner {
        log = Log(_log);
    }
    
    function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner {
        // Ensure transparency by hardcoding limit beyond which fees can never be added
        require(newBasisPoints < 20);
        require(newMaxFee < 50);

        basisPointsRate = newBasisPoints;
        maximumFee = newMaxFee.mul(10**decimals);

        Params(basisPointsRate, maximumFee);
    }

    // Called when contract is deprecated
    event Deprecate(address newAddress);

    // Called if contract ever adds fees
    event Params(uint feeBasisPoints, uint maxFee);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_log","type":"address"}],"name":"setLog","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"log","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","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"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"},{"name":"_log","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60606040526000600355600060045534156200001a57600080fd5b604051620017fb380380620017fb83398101604052808051919060200180518201919060200180518201919060200180519190602001805160008054600160a060020a031916739c188e0682d140659f6d3b62dc5e439294c6faf817905560018790559150600690508480516200009692916020019062000103565b506007838051620000ac92916020019062000103565b5060089190915560008054600160a060020a03908116825260026020526040909120949094556009805460a060020a60ff0219169055600a805491909416600160a060020a03199091161790925550620001a89050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014657805160ff191683800117855562000176565b8280016001018555821562000176579182015b828111156200017657825182559160200191906001019062000159565b506200018492915062000188565b5090565b620001a591905b808211156200018457600081556001016200018f565b90565b61164380620001b86000396000f300606060405236156101305763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101355780630753c30c146101bf578063095ea7b3146101ed5780630e136b191461021c57806318160ddd1461024357806323b872dd1461026857806326976e3f1461029d57806327e235e3146102d9578063313ce5671461030557806335390714146103185780633eaaf86b1461032b5780634797f21b1461033e57806351973ec91461036a5780635c6581651461037d57806370a08231146103af5780638da5cb5b146103db57806395d89b41146103ee578063a9059cbb14610401578063c0324c7714610430578063dd62ed3e14610449578063dd644f721461047b578063e5b5019a1461048e578063f2fde38b146104a1575b600080fd5b341561014057600080fd5b6101486104cd565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561018457808201518382015260200161016c565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ca57600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff6004351661056b565b005b34156101f857600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff6004351660243561065b565b341561022757600080fd5b61022f61074c565b604051901515815260200160405180910390f35b341561024e57600080fd5b61025661076d565b60405190815260200160405180910390f35b341561027357600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff6004358116906024351660443561082b565b34156102a857600080fd5b6102b06109a1565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34156102e457600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff600435166109bd565b341561031057600080fd5b6102566109cf565b341561032357600080fd5b6102566109d5565b341561033657600080fd5b6102566109db565b341561034957600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff600435166109e1565b341561037557600080fd5b6102b0610a50565b341561038857600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff60043581169060243516610a6c565b34156103ba57600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff60043516610a89565b34156103e657600080fd5b6102b0610b6e565b34156103f957600080fd5b610148610b8a565b341561040c57600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff60043516602435610bf5565b341561043b57600080fd5b6101eb600435602435610d80565b341561045457600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff60043581169060243516610e23565b341561048657600080fd5b610256610f12565b341561049957600080fd5b610256610f18565b34156104ac57600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff60043516610f3c565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105635780601f1061053857610100808354040283529160200191610563565b820191906000526020600020905b81548152906001019060200180831161054657829003601f168201915b505050505081565b6000543373ffffffffffffffffffffffffffffffffffffffff90811691161461059357600080fd5b60098054740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909116177fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e8160405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a150565b6040604436101561066b57600080fd5b60095474010000000000000000000000000000000000000000900460ff161561073d5760095473ffffffffffffffffffffffffffffffffffffffff1663aee92d333385856040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b151561072457600080fd5b6102c65a03f1151561073557600080fd5b505050610747565b6107478383610fc4565b505050565b60095474010000000000000000000000000000000000000000900460ff1681565b60095460009074010000000000000000000000000000000000000000900460ff16156108235760095473ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561080157600080fd5b6102c65a03f1151561081257600080fd5b505050604051805190509050610828565b506001545b90565b600a5473ffffffffffffffffffffffffffffffffffffffff1663172a93fb8484846040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156108c157600080fd5b6102c65a03f115156108d257600080fd5b505060095474010000000000000000000000000000000000000000900460ff161590506109965760095473ffffffffffffffffffffffffffffffffffffffff16638b477adb338585856040517c010000000000000000000000000000000000000000000000000000000063ffffffff871602815273ffffffffffffffffffffffffffffffffffffffff94851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b151561072457600080fd5b610747838383611090565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60026020526000908152604090205481565b60085481565b60045481565b60015481565b6000543373ffffffffffffffffffffffffffffffffffffffff908116911614610a0957600080fd5b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1681565b600560209081526000928352604080842090915290825290205481565b60095460009074010000000000000000000000000000000000000000900460ff1615610b5d5760095473ffffffffffffffffffffffffffffffffffffffff166370a08231836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff841602815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381600087803b1515610b3b57600080fd5b6102c65a03f11515610b4c57600080fd5b505050604051805190509050610b69565b610b6682611346565b90505b919050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105635780601f1061053857610100808354040283529160200191610563565b600a5473ffffffffffffffffffffffffffffffffffffffff1663172a93fb3384846040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610c8b57600080fd5b6102c65a03f11515610c9c57600080fd5b505060095474010000000000000000000000000000000000000000900460ff16159050610d725760095473ffffffffffffffffffffffffffffffffffffffff16636e18980a3384846040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610d5957600080fd5b6102c65a03f11515610d6a57600080fd5b505050610d7c565b610d7c828261136e565b5050565b6000543373ffffffffffffffffffffffffffffffffffffffff908116911614610da857600080fd5b60148210610db557600080fd5b60328110610dc257600080fd5b6003829055600854610dde908290600a0a63ffffffff61157116565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60095460009074010000000000000000000000000000000000000000900460ff1615610eff5760095473ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84846000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff851602815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381600087803b1515610edd57600080fd5b6102c65a03f11515610eee57600080fd5b505050604051805190509050610f0c565b610f0983836115a7565b90505b92915050565b60035481565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6000543373ffffffffffffffffffffffffffffffffffffffff908116911614610f6457600080fd5b73ffffffffffffffffffffffffffffffffffffffff811615610fc157600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555b50565b60406044361015610fd457600080fd5b8115801590611014575073ffffffffffffffffffffffffffffffffffffffff33811660009081526005602090815260408083209387168352929052205415155b1561101e57600080fd5b73ffffffffffffffffffffffffffffffffffffffff338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b60008080606060643610156110a457600080fd5b73ffffffffffffffffffffffffffffffffffffffff8088166000908152600560209081526040808320339094168352929052205460035490945061110390612710906110f790889063ffffffff61157116565b9063ffffffff6115df16565b92506004548311156111155760045492505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8410156111825761114d848663ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff808916600090815260056020908152604080832033909416835292905220555b611192858463ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600260205260409020549092506111cb908663ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff808916600090815260026020526040808220939093559088168152205461120d908363ffffffff61160816565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600260205260408120919091558311156112dc576000805473ffffffffffffffffffffffffffffffffffffffff16815260026020526040902054611273908463ffffffff61160816565b6000805473ffffffffffffffffffffffffffffffffffffffff908116825260026020526040808320939093559054811691908916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350505050505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b6000806040604436101561138157600080fd5b61139c6127106110f76003548761157190919063ffffffff16565b92506004548311156113ae5760045492505b6113be848463ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff33166000908152600260205260409020549092506113f7908563ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff3381166000908152600260205260408082209390935590871681522054611439908363ffffffff61160816565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260026020526040812091909155831115611509576000805473ffffffffffffffffffffffffffffffffffffffff1681526002602052604090205461149f908463ffffffff61160816565b6000805473ffffffffffffffffffffffffffffffffffffffff90811682526002602052604080832093909355905481169133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35050505050565b60008083151561158457600091506115a0565b5082820282848281151561159457fe5b041461159c57fe5b8091505b5092915050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b60008082848115156115ed57fe5b04949350505050565b60008282111561160257fe5b50900390565b60008282018381101561159c57fe00a165627a7a72305820875af8abb831a32d3e6078e50ae1b22badcf0e07c09038ceef6b515a1f6a14a80029000000000000000000000000000000000000000000295be96e6406697200000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000699c3a1581795c223d1c81e7a25763310ab4a2e10000000000000000000000000000000000000000000000000000000000000015417261676f6e204f6666696369616c20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000003414f540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x606060405236156101305763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101355780630753c30c146101bf578063095ea7b3146101ed5780630e136b191461021c57806318160ddd1461024357806323b872dd1461026857806326976e3f1461029d57806327e235e3146102d9578063313ce5671461030557806335390714146103185780633eaaf86b1461032b5780634797f21b1461033e57806351973ec91461036a5780635c6581651461037d57806370a08231146103af5780638da5cb5b146103db57806395d89b41146103ee578063a9059cbb14610401578063c0324c7714610430578063dd62ed3e14610449578063dd644f721461047b578063e5b5019a1461048e578063f2fde38b146104a1575b600080fd5b341561014057600080fd5b6101486104cd565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561018457808201518382015260200161016c565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ca57600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff6004351661056b565b005b34156101f857600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff6004351660243561065b565b341561022757600080fd5b61022f61074c565b604051901515815260200160405180910390f35b341561024e57600080fd5b61025661076d565b60405190815260200160405180910390f35b341561027357600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff6004358116906024351660443561082b565b34156102a857600080fd5b6102b06109a1565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34156102e457600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff600435166109bd565b341561031057600080fd5b6102566109cf565b341561032357600080fd5b6102566109d5565b341561033657600080fd5b6102566109db565b341561034957600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff600435166109e1565b341561037557600080fd5b6102b0610a50565b341561038857600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff60043581169060243516610a6c565b34156103ba57600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff60043516610a89565b34156103e657600080fd5b6102b0610b6e565b34156103f957600080fd5b610148610b8a565b341561040c57600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff60043516602435610bf5565b341561043b57600080fd5b6101eb600435602435610d80565b341561045457600080fd5b61025673ffffffffffffffffffffffffffffffffffffffff60043581169060243516610e23565b341561048657600080fd5b610256610f12565b341561049957600080fd5b610256610f18565b34156104ac57600080fd5b6101eb73ffffffffffffffffffffffffffffffffffffffff60043516610f3c565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105635780601f1061053857610100808354040283529160200191610563565b820191906000526020600020905b81548152906001019060200180831161054657829003601f168201915b505050505081565b6000543373ffffffffffffffffffffffffffffffffffffffff90811691161461059357600080fd5b60098054740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909116177fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e8160405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a150565b6040604436101561066b57600080fd5b60095474010000000000000000000000000000000000000000900460ff161561073d5760095473ffffffffffffffffffffffffffffffffffffffff1663aee92d333385856040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b151561072457600080fd5b6102c65a03f1151561073557600080fd5b505050610747565b6107478383610fc4565b505050565b60095474010000000000000000000000000000000000000000900460ff1681565b60095460009074010000000000000000000000000000000000000000900460ff16156108235760095473ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561080157600080fd5b6102c65a03f1151561081257600080fd5b505050604051805190509050610828565b506001545b90565b600a5473ffffffffffffffffffffffffffffffffffffffff1663172a93fb8484846040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156108c157600080fd5b6102c65a03f115156108d257600080fd5b505060095474010000000000000000000000000000000000000000900460ff161590506109965760095473ffffffffffffffffffffffffffffffffffffffff16638b477adb338585856040517c010000000000000000000000000000000000000000000000000000000063ffffffff871602815273ffffffffffffffffffffffffffffffffffffffff94851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b151561072457600080fd5b610747838383611090565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60026020526000908152604090205481565b60085481565b60045481565b60015481565b6000543373ffffffffffffffffffffffffffffffffffffffff908116911614610a0957600080fd5b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1681565b600560209081526000928352604080842090915290825290205481565b60095460009074010000000000000000000000000000000000000000900460ff1615610b5d5760095473ffffffffffffffffffffffffffffffffffffffff166370a08231836000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff841602815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381600087803b1515610b3b57600080fd5b6102c65a03f11515610b4c57600080fd5b505050604051805190509050610b69565b610b6682611346565b90505b919050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105635780601f1061053857610100808354040283529160200191610563565b600a5473ffffffffffffffffffffffffffffffffffffffff1663172a93fb3384846040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610c8b57600080fd5b6102c65a03f11515610c9c57600080fd5b505060095474010000000000000000000000000000000000000000900460ff16159050610d725760095473ffffffffffffffffffffffffffffffffffffffff16636e18980a3384846040517c010000000000000000000000000000000000000000000000000000000063ffffffff861602815273ffffffffffffffffffffffffffffffffffffffff93841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610d5957600080fd5b6102c65a03f11515610d6a57600080fd5b505050610d7c565b610d7c828261136e565b5050565b6000543373ffffffffffffffffffffffffffffffffffffffff908116911614610da857600080fd5b60148210610db557600080fd5b60328110610dc257600080fd5b6003829055600854610dde908290600a0a63ffffffff61157116565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60095460009074010000000000000000000000000000000000000000900460ff1615610eff5760095473ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84846000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff851602815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381600087803b1515610edd57600080fd5b6102c65a03f11515610eee57600080fd5b505050604051805190509050610f0c565b610f0983836115a7565b90505b92915050565b60035481565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6000543373ffffffffffffffffffffffffffffffffffffffff908116911614610f6457600080fd5b73ffffffffffffffffffffffffffffffffffffffff811615610fc157600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790555b50565b60406044361015610fd457600080fd5b8115801590611014575073ffffffffffffffffffffffffffffffffffffffff33811660009081526005602090815260408083209387168352929052205415155b1561101e57600080fd5b73ffffffffffffffffffffffffffffffffffffffff338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b60008080606060643610156110a457600080fd5b73ffffffffffffffffffffffffffffffffffffffff8088166000908152600560209081526040808320339094168352929052205460035490945061110390612710906110f790889063ffffffff61157116565b9063ffffffff6115df16565b92506004548311156111155760045492505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8410156111825761114d848663ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff808916600090815260056020908152604080832033909416835292905220555b611192858463ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600260205260409020549092506111cb908663ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff808916600090815260026020526040808220939093559088168152205461120d908363ffffffff61160816565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600260205260408120919091558311156112dc576000805473ffffffffffffffffffffffffffffffffffffffff16815260026020526040902054611273908463ffffffff61160816565b6000805473ffffffffffffffffffffffffffffffffffffffff908116825260026020526040808320939093559054811691908916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350505050505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b6000806040604436101561138157600080fd5b61139c6127106110f76003548761157190919063ffffffff16565b92506004548311156113ae5760045492505b6113be848463ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff33166000908152600260205260409020549092506113f7908563ffffffff6115f616565b73ffffffffffffffffffffffffffffffffffffffff3381166000908152600260205260408082209390935590871681522054611439908363ffffffff61160816565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260026020526040812091909155831115611509576000805473ffffffffffffffffffffffffffffffffffffffff1681526002602052604090205461149f908463ffffffff61160816565b6000805473ffffffffffffffffffffffffffffffffffffffff90811682526002602052604080832093909355905481169133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35050505050565b60008083151561158457600091506115a0565b5082820282848281151561159457fe5b041461159c57fe5b8091505b5092915050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205490565b60008082848115156115ed57fe5b04949350505050565b60008282111561160257fe5b50900390565b60008282018381101561159c57fe00a165627a7a72305820875af8abb831a32d3e6078e50ae1b22badcf0e07c09038ceef6b515a1f6a14a80029

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

000000000000000000000000000000000000000000295be96e6406697200000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000699c3a1581795c223d1c81e7a25763310ab4a2e10000000000000000000000000000000000000000000000000000000000000015417261676f6e204f6666696369616c20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000003414f540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 50000000000000000000000000
Arg [1] : _name (string): Aragon Official Token
Arg [2] : _symbol (string): AOT
Arg [3] : _decimals (uint256): 18
Arg [4] : _log (address): 0x699C3A1581795c223d1c81e7a25763310aB4a2e1

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000699c3a1581795c223d1c81e7a25763310ab4a2e1
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [6] : 417261676f6e204f6666696369616c20546f6b656e0000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 414f540000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8926:3724:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8967:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11459:181:0;;;;;;;;;;;;;;;;;;10713:302;;;;;;;;;;;;;;;;;;9083:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11706:218;;;;;;;;;;;;;;;;;;;;;;;;;;;9951:348;;;;;;;;;;;;;;;;;;;;;;;9046:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3664:40;;;;;;;;;;;;;;;;9019:20;;;;;;;;;;;;3830:26;;;;;;;;;;;;2766:24;;;;;;;;;;;;11983:81;;;;;;;;;;;;;;;;9112:14;;;;;;;;;;;;5454:61;;;;;;;;;;;;;;;;;;;;;10384:244;;;;;;;;;;;;;;;;1843:20;;;;;;;;;;;;8992;;;;;;;;;;;;9554:312;;;;;;;;;;;;;;;;;;12076:387;;;;;;;;;;;;;;;;11100:293;;;;;;;;;;;;;;;;;;;;;3792:31;;;;;;;;;;;;5524:42;;;;;;;;;;;;2447:151;;;;;;;;;;;;;;;;8967:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11459:181::-;2247:5;;2233:10;2247:5;2233:19;;;2247:5;;2233:19;2225:28;;;;;;11532:10;:17;;;;;;;;11560:34;;;;;;;;11605:27;11560:34;11605:27;;;;;;;;;;;;;;;;;11459:181;:::o;10713:302::-;10784:6;4009:8;3991;:26;3989:29;3981:38;;;;;;10807:10;;;;;;;10803:205;;;10863:15;;;;10841:54;10896:10;10908:8;10918:6;10841:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10841:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10834:91;;10803:205;10965:31;10979:8;10989:6;10965:13;:31::i;:::-;10713:302;;;:::o;9083:22::-;;;;;;;;;:::o;11706:218::-;11775:10;;11754:4;;11775:10;;;;;11771:146;;;11823:15;;;;11809:42;11823:15;11809:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11802:51;;;;11771:146;-1:-1:-1;11893:12:0;;11771:146;11706:218;:::o;9951:348::-;10032:3;;;;:10;10043:5;10050:3;10055:6;10032:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10032:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10077:10:0;;;;;;;10073:219;;-1:-1:-1;10073:219:0;;10133:15;;;;10111:59;10171:10;10183:5;10190:3;10195:6;10111:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10111:91:0;;;;;;;;;;;;;;;;;10073:219;10242:38;10261:5;10268:3;10273:6;10242:18;:38::i;9046:30::-;;;;;;:::o;3664:40::-;;;;;;;;;;;;;:::o;9019:20::-;;;;:::o;3830:26::-;;;;:::o;2766:24::-;;;;:::o;11983:81::-;2247:5;;2233:10;2247:5;2233:19;;;2247:5;;2233:19;2225:28;;;;;;12041:3;:15;;;;;;;;;;;;;;;11983:81::o;9112:14::-;;;;;;:::o;5454:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;10384:244::-;10462:10;;10441:4;;10462:10;;;;;10458:163;;;10518:15;;;;10496:48;10545:3;10518:15;10496:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10489:60;;;;10458:163;10589:20;10605:3;10589:15;:20::i;:::-;10582:27;;10458:163;10384:244;;;:::o;1843:20::-;;;;;;:::o;8992:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9554:312;9616:3;;;;:10;9627;9639:3;9644:6;9616:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9616:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9666:10:0;;;;;;;9662:197;;-1:-1:-1;9662:197:0;;9722:15;;;;9700:55;9756:10;9768:3;9773:6;9700:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9700:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9693:87;;9662:197;9820:27;9835:3;9840:6;9820:14;:27::i;:::-;9554:312;;:::o;12076:387::-;2247:5;;2233:10;2247:5;2233:19;;;2247:5;;2233:19;2225:28;;;;;;12274:2;12257:19;;12249:28;;;;;;12308:2;12296:14;;12288:23;;;;;;12324:15;:32;;;12398:8;;12380:27;;:9;;12394:2;:12;12380:27;:13;:27;:::i;:::-;12367:10;:40;;;12427:15;;12420:35;;;;;;;;;;;;;;;;;;;;;;12076:387;;:::o;11100:293::-;11209:10;;11178:14;;11209:10;;;;;11205:181;;;11257:15;;;;11243:40;11284:6;11292:8;11257:15;11243:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11236:65;;;;11205:181;11341:33;11357:6;11365:8;11341:15;:33::i;:::-;11334:40;;11205:181;11100:293;;;;:::o;3792:31::-;;;;:::o;5524:42::-;5556:10;5524:42;:::o;2447:151::-;2247:5;;2233:10;2247:5;2233:19;;;2247:5;;2233:19;2225:28;;;;;;2524:22;;;;2520:71;;2563:5;:16;;;;;;;;;;2520:71;2447:151;:::o;7004:573::-;7075:6;4009:8;3991;:26;3989:29;3981:38;;;;;;7415:11;;;;;7414:53;;-1:-1:-1;7432:19:0;7440:10;7432:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;7414:53;7412:56;7404:65;;;;;;7482:19;7490:10;7482:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:38;;;7531;;7514:6;;7531:38;;;;;;;;;;;;;7004:573;;;:::o;5856:901::-;5961:14;;;5942:6;4009:8;3991;:26;3989:29;3981:38;;;;;;5978:14;;;;;;;;:7;:14;;;;;;;;5993:10;5978:26;;;;;;;;;;6198:15;;5978:26;;-1:-1:-1;6186:40:0;;6220:5;;6187:27;;:6;;:27;:10;:27;:::i;:::-;6186:33;:40;:33;:40;:::i;:::-;6175:51;;6247:10;;6241:3;:16;6237:65;;;6280:10;;6274:16;;6237:65;5556:10;6316;:21;6312:105;;;6383:22;:10;6398:6;6383:22;:14;:22;:::i;:::-;6354:14;;;;;;;;:7;:14;;;;;;;;6369:10;6354:26;;;;;;;;;:51;6312:105;6445:15;:6;6456:3;6445:15;:10;:15;:::i;:::-;6489;;;;;;;:8;:15;;;;;;6427:33;;-1:-1:-1;6489:27:0;;6509:6;6489:27;:19;:27;:::i;:::-;6471:15;;;;;;;;:8;:15;;;;;;:45;;;;6543:13;;;;;;;:29;;6561:10;6543:29;:17;:29;:::i;:::-;6527:13;;;;;;;:8;:13;;;;;:45;;;;6587:7;;6583:124;;;6629:15;6638:5;;;;6629:15;;:8;:15;;;;;;:24;;6649:3;6629:24;:19;:24;:::i;:::-;6611:15;6620:5;;;;;;6611:15;;:8;:15;;;;;;:42;;;;6684:5;;;;;6668:27;;;;;;6691:3;;6668:27;;;;;;;;;;;;;6583:124;6733:3;6717:32;;6726:5;6717:32;;;6738:10;6717:32;;;;;;;;;;;;;;5856:901;;;;;;;:::o;5003:116::-;5095:16;;5063:12;5095:16;;;:8;:16;;;;;;;5003:116::o;4212:573::-;4298:8;;4279:6;4009:8;3991;:26;3989:29;3981:38;;;;;;4309:40;4343:5;4310:27;4321:15;;4310:6;:10;;:27;;;;:::i;4309:40::-;4298:51;;4370:10;;4364:3;:16;4360:65;;;4403:10;;4397:16;;4360:65;4453:15;:6;4464:3;4453:15;:10;:15;:::i;:::-;4502:20;4511:10;4502:20;;;;;:8;:20;;;;;;4435:33;;-1:-1:-1;4502:32:0;;4527:6;4502:32;:24;:32;:::i;:::-;4479:20;4488:10;4479:20;;;;;;:8;:20;;;;;;:55;;;;4561:13;;;;;;;:29;;4579:10;4561:29;:17;:29;:::i;:::-;4545:13;;;;;;;:8;:13;;;;;:45;;;;4605:7;;4601:129;;;4647:15;4656:5;;;;4647:15;;:8;:15;;;;;;:24;;4667:3;4647:24;:19;:24;:::i;:::-;4629:15;4638:5;;;;;;4629:15;;:8;:15;;;;;;:42;;;;4707:5;;;;;4695:10;4686:32;;;;;;4714:3;;4686:32;;;;;;;;;;;;;4601:129;4761:3;4740:37;;4749:10;4740:37;;;4766:10;4740:37;;;;;;;;;;;;;;4212:573;;;;;:::o;827:208::-;885:7;;909:6;;905:47;;;939:1;932:8;;;;905:47;-1:-1:-1;974:5:0;;;978:1;974;:5;997;;;;;;;;:10;990:18;;;;1026:1;1019:8;;827:208;;;;;;:::o;7910:145::-;8022:15;;;;7988:14;8022:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7910:145::o;1043:288::-;1101:7;1200:9;1216:1;1212;:5;;;;;;;;;1043:288;-1:-1:-1;;;;1043:288:0:o;1339:123::-;1397:7;1424:6;;;;1417:14;;;;-1:-1:-1;1449:5:0;;;1339:123::o;1470:147::-;1528:7;1560:5;;;1583:6;;;;1576:14;;

Swarm Source

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