ERC-20
Overview
Max Total Supply
600,000,000 AGT
Holders
6,647
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 4 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AGT
Compiler Version
v0.5.7+commit.6da8b019
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-10-13 */ /** *Submitted for verification at Etherscan.io on 2019-07-18 */ /** * Source Code first verified at https://etherscan.io on Sunday, April 28, 2019 (UTC) */ pragma solidity ^0.5.7; /** * @title ERC20 interface * @dev see https://eips.ethereum.org/EIPS/eip-20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); event Freeze(address indexed from, uint256 value); event Unfreeze(address indexed from, uint256 value); } /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error. */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://eips.ethereum.org/EIPS/eip-20 * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; mapping (address => uint256) private _freezeOf; uint256 private _totalSupply; /** * @dev Total number of tokens in existence. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return A uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Gets the balance of the specified freeze address. * @param owner The address to query the balance of. * @return A uint256 representing the amount owned by the freeze address. */ function freezeOf(address owner) public view returns (uint256) { return _freezeOf[owner]; } /** * @dev Function to check the amount of tokens that 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 uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token to a specified address. * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @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 uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _transfer(from, to, value); _approve(from, msg.sender, _allowed[from][msg.sender].sub(value)); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when _allowed[msg.sender][spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue)); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when _allowed[msg.sender][spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Transfer token for a specified addresses. * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } function _freeze(uint256 value) internal { require(_balances[msg.sender]>=value); // Check if the sender has enough require(value > 0); _balances[msg.sender] = _balances[msg.sender].sub(value); _freezeOf[msg.sender] = _freezeOf[msg.sender].add(value); emit Freeze(msg.sender, value); } function _unfreeze(uint256 value) internal{ require(_freezeOf[msg.sender]>=value); require(value > 0); _freezeOf[msg.sender] = _freezeOf[msg.sender].sub(value); _balances[msg.sender] = _balances[msg.sender].add(value); emit Unfreeze(msg.sender, value); } /** * @dev Approve an address to spend another addresses' tokens. * @param owner The address that owns the tokens. * @param spender The address that will spend the tokens. * @param value The number of tokens that can be spent. */ function _approve(address owner, address spender, uint256 value) internal { require(spender != address(0)); require(owner != address(0)); _allowed[owner][spender] = value; emit Approval(owner, spender, value); } } /** * @title ERC20Detailed token * @dev The decimals are only for visualization purposes. * All the operations are done using the smallest and indivisible token unit, * just as on Ethereum all the operations are done in wei. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account)); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account)); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } } contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender)); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is PauserRole { event Paused(address account); event Unpaused(address account); bool private _paused; constructor () internal { _paused = false; } /** * @return True if the contract is paused, false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Lockable is PauserRole{ mapping (address => bool) private lockers; event LockAccount(address account, bool islock); /** * @dev Check if the account is locked. * @param account specific account address. */ function isLock(address account) public view returns (bool) { return lockers[account]; } /** * @dev Lock or thaw account address * @param account specific account address. * @param islock true lock, false thaw. */ function lock(address account, bool islock) public onlyPauser { lockers[account] = islock; emit LockAccount(account, islock); } } /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC20Pausable is ERC20, Pausable,Lockable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { require(!isLock(msg.sender)); require(!isLock(to)); return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { require(!isLock(msg.sender)); require(!isLock(from)); require(!isLock(to)); return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { require(!isLock(msg.sender)); require(!isLock(spender)); return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { require(!isLock(msg.sender)); require(!isLock(spender)); return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { require(!isLock(msg.sender)); require(!isLock(spender)); return super.decreaseAllowance(spender, subtractedValue); } } contract AGT is ERC20, ERC20Detailed, ERC20Pausable { constructor(string memory name, string memory symbol, uint8 decimals,uint256 _totalSupply) ERC20Pausable() ERC20Detailed(name, symbol, decimals) ERC20() public { require(_totalSupply > 0); _mint(msg.sender, _totalSupply); } /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public whenNotPaused { require(!isLock(msg.sender)); _burn(msg.sender, value); } /** * @dev Freeze a specific amount of tokens. * @param value The amount of token to be Freeze. */ function freeze(uint256 value) public whenNotPaused { require(!isLock(msg.sender)); _freeze(value); } /** * @dev unFreeze a specific amount of tokens. * @param value The amount of token to be unFreeze. */ function unfreeze(uint256 value) public whenNotPaused { require(!isLock(msg.sender)); _unfreeze(value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"islock","type":"bool"}],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"unfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"freeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"},{"indexed":false,"name":"islock","type":"bool"}],"name":"LockAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","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"},{"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":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620021e7380380620021e7833981018060405260808110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b828101905060208101848111156200006757600080fd5b81518560018202830111640100000000821117156200008557600080fd5b50509291906020018051640100000000811115620000a257600080fd5b82810190506020810184811115620000b957600080fd5b8151856001820283011164010000000082111715620000d757600080fd5b505092919060200180519060200190929190805190602001909291905050508383838260049080519060200190620001119291906200048f565b5081600590805190602001906200012a9291906200048f565b5080600660006101000a81548160ff021916908360ff1602179055505050506200015a336200019f60201b60201c565b6000600860006101000a81548160ff021916908315150217905550600081116200018357600080fd5b6200019533826200020060201b60201c565b505050506200053e565b620001ba8160076200036160201b62001bfb1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200023b57600080fd5b6200025781600354620003dc60201b62001b6b1790919060201c565b600381905550620002b5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003dc60201b62001b6b1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620003738282620003fc60201b60201c565b156200037e57600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015620003f257600080fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200043857600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004d257805160ff191683800117855562000503565b8280016001018555821562000503579182015b8281111562000502578251825591602001919060010190620004e5565b5b50905062000512919062000516565b5090565b6200053b91905b80821115620005375760008160009055506001016200051d565b5090565b90565b611c99806200054e6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80635f8f9c5d116100c357806395d89b411161007c57806395d89b41146105a9578063a457c2d71461062c578063a9059cbb14610692578063cd4217c1146106f8578063d7a78db814610750578063dd62ed3e1461077e5761014d565b80635f8f9c5d1461047b5780636623fc46146104cb5780636ef8d66d146104f957806370a082311461050357806382dc1ec41461055b5780638456cb591461059f5761014d565b8063395093511161011557806339509351146103035780633f4ba83a1461036957806342966c681461037357806346fbf68e146103a15780635016128e146103fd5780635c975abb146104595761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b57806323b872dd14610259578063313ce567146102df575b600080fd5b61015a6107f6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610898565b604051808215151515815260200191505060405180910390f35b6102436108ec565b6040518082815260200191505060405180910390f35b6102c56004803603606081101561026f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108f6565b604051808215151515815260200191505060405180910390f35b6102e761095f565b604051808260ff1660ff16815260200191505060405180910390f35b61034f6004803603604081101561031957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610976565b604051808215151515815260200191505060405180910390f35b6103716109ca565b005b61039f6004803603602081101561038957600080fd5b8101908080359060200190929190505050610a75565b005b6103e3600480360360208110156103b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aaf565b604051808215151515815260200191505060405180910390f35b61043f6004803603602081101561041357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610acc565b604051808215151515815260200191505060405180910390f35b610461610b22565b604051808215151515815260200191505060405180910390f35b6104c96004803603604081101561049157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610b39565b005b6104f7600480360360208110156104e157600080fd5b8101908080359060200190929190505050610c15565b005b610501610c4e565b005b6105456004803603602081101561051957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c59565b6040518082815260200191505060405180910390f35b61059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca1565b005b6105a7610cbf565b005b6105b1610d6b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105f15780820151818401526020810190506105d6565b50505050905090810190601f16801561061e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106786004803603604081101561064257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0d565b604051808215151515815260200191505060405180910390f35b6106de600480360360408110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e61565b604051808215151515815260200191505060405180910390f35b61073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610eb5565b6040518082815260200191505060405180910390f35b61077c6004803603602081101561076657600080fd5b8101908080359060200190929190505050610efe565b005b6107e06004803603604081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f37565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff16156108b457600080fd5b6108bd33610acc565b156108c757600080fd5b6108d083610acc565b156108da57600080fd5b6108e48383610fbe565b905092915050565b6000600354905090565b6000600860009054906101000a900460ff161561091257600080fd5b61091b33610acc565b1561092557600080fd5b61092e84610acc565b1561093857600080fd5b61094183610acc565b1561094b57600080fd5b610956848484610fd5565b90509392505050565b6000600660009054906101000a900460ff16905090565b6000600860009054906101000a900460ff161561099257600080fd5b61099b33610acc565b156109a557600080fd5b6109ae83610acc565b156109b857600080fd5b6109c28383611086565b905092915050565b6109d333610aaf565b6109dc57600080fd5b600860009054906101000a900460ff166109f557600080fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600860009054906101000a900460ff1615610a8f57600080fd5b610a9833610acc565b15610aa257600080fd5b610aac338261112b565b50565b6000610ac582600761127d90919063ffffffff16565b9050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860009054906101000a900460ff16905090565b610b4233610aaf565b610b4b57600080fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44470762d57decc756f36bb9c7381b522388c21b7b48a4b012357d29611386128282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001821515151581526020019250505060405180910390a15050565b600860009054906101000a900460ff1615610c2f57600080fd5b610c3833610acc565b15610c4257600080fd5b610c4b8161130f565b50565b610c57336114e1565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caa33610aaf565b610cb357600080fd5b610cbc8161153b565b50565b610cc833610aaf565b610cd157600080fd5b600860009054906101000a900460ff1615610ceb57600080fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff1615610e2957600080fd5b610e3233610acc565b15610e3c57600080fd5b610e4583610acc565b15610e4f57600080fd5b610e598383611595565b905092915050565b6000600860009054906101000a900460ff1615610e7d57600080fd5b610e8633610acc565b15610e9057600080fd5b610e9983610acc565b15610ea357600080fd5b610ead838361163a565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860009054906101000a900460ff1615610f1857600080fd5b610f2133610acc565b15610f2b57600080fd5b610f3481611651565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610fcb338484611822565b6001905092915050565b6000610fe2848484611981565b61107b843361107685600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b600190509392505050565b6000611121338461111c85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b611822565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116557600080fd5b61117a81600354611b4b90919063ffffffff16565b6003819055506111d1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b857600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561135b57600080fd5b6000811161136857600080fd5b6113ba81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144e816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f826040518082815260200191505060405180910390a250565b6114f5816007611b8a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61154f816007611bfb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000611630338461162b85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b6001905092915050565b6000611647338484611981565b6001905092915050565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561169c57600080fd5b600081116116a957600080fd5b6116fa816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061178e81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e0826040518082815260200191505060405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561189657600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bb57600080fd5b611a0c816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611b5a57600080fd5b600082840390508091505092915050565b600080828401905083811015611b8057600080fd5b8091505092915050565b611b94828261127d565b611b9d57600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611c05828261127d565b15611c0f57600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a723058200d164eccca1896a5247053eb4f324fff4183a5eac727b57602e1a8ca7f48162c0029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000574fbde600000000000000000000000000000000000000000000000000000000000000000174167677265676174652054726164696e6720546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000034147540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80635f8f9c5d116100c357806395d89b411161007c57806395d89b41146105a9578063a457c2d71461062c578063a9059cbb14610692578063cd4217c1146106f8578063d7a78db814610750578063dd62ed3e1461077e5761014d565b80635f8f9c5d1461047b5780636623fc46146104cb5780636ef8d66d146104f957806370a082311461050357806382dc1ec41461055b5780638456cb591461059f5761014d565b8063395093511161011557806339509351146103035780633f4ba83a1461036957806342966c681461037357806346fbf68e146103a15780635016128e146103fd5780635c975abb146104595761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b57806323b872dd14610259578063313ce567146102df575b600080fd5b61015a6107f6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610898565b604051808215151515815260200191505060405180910390f35b6102436108ec565b6040518082815260200191505060405180910390f35b6102c56004803603606081101561026f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108f6565b604051808215151515815260200191505060405180910390f35b6102e761095f565b604051808260ff1660ff16815260200191505060405180910390f35b61034f6004803603604081101561031957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610976565b604051808215151515815260200191505060405180910390f35b6103716109ca565b005b61039f6004803603602081101561038957600080fd5b8101908080359060200190929190505050610a75565b005b6103e3600480360360208110156103b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aaf565b604051808215151515815260200191505060405180910390f35b61043f6004803603602081101561041357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610acc565b604051808215151515815260200191505060405180910390f35b610461610b22565b604051808215151515815260200191505060405180910390f35b6104c96004803603604081101561049157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050610b39565b005b6104f7600480360360208110156104e157600080fd5b8101908080359060200190929190505050610c15565b005b610501610c4e565b005b6105456004803603602081101561051957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c59565b6040518082815260200191505060405180910390f35b61059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca1565b005b6105a7610cbf565b005b6105b1610d6b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105f15780820151818401526020810190506105d6565b50505050905090810190601f16801561061e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106786004803603604081101561064257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e0d565b604051808215151515815260200191505060405180910390f35b6106de600480360360408110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e61565b604051808215151515815260200191505060405180910390f35b61073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610eb5565b6040518082815260200191505060405180910390f35b61077c6004803603602081101561076657600080fd5b8101908080359060200190929190505050610efe565b005b6107e06004803603604081101561079457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f37565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff16156108b457600080fd5b6108bd33610acc565b156108c757600080fd5b6108d083610acc565b156108da57600080fd5b6108e48383610fbe565b905092915050565b6000600354905090565b6000600860009054906101000a900460ff161561091257600080fd5b61091b33610acc565b1561092557600080fd5b61092e84610acc565b1561093857600080fd5b61094183610acc565b1561094b57600080fd5b610956848484610fd5565b90509392505050565b6000600660009054906101000a900460ff16905090565b6000600860009054906101000a900460ff161561099257600080fd5b61099b33610acc565b156109a557600080fd5b6109ae83610acc565b156109b857600080fd5b6109c28383611086565b905092915050565b6109d333610aaf565b6109dc57600080fd5b600860009054906101000a900460ff166109f557600080fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600860009054906101000a900460ff1615610a8f57600080fd5b610a9833610acc565b15610aa257600080fd5b610aac338261112b565b50565b6000610ac582600761127d90919063ffffffff16565b9050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860009054906101000a900460ff16905090565b610b4233610aaf565b610b4b57600080fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44470762d57decc756f36bb9c7381b522388c21b7b48a4b012357d29611386128282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001821515151581526020019250505060405180910390a15050565b600860009054906101000a900460ff1615610c2f57600080fd5b610c3833610acc565b15610c4257600080fd5b610c4b8161130f565b50565b610c57336114e1565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caa33610aaf565b610cb357600080fd5b610cbc8161153b565b50565b610cc833610aaf565b610cd157600080fd5b600860009054906101000a900460ff1615610ceb57600080fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b5050505050905090565b6000600860009054906101000a900460ff1615610e2957600080fd5b610e3233610acc565b15610e3c57600080fd5b610e4583610acc565b15610e4f57600080fd5b610e598383611595565b905092915050565b6000600860009054906101000a900460ff1615610e7d57600080fd5b610e8633610acc565b15610e9057600080fd5b610e9983610acc565b15610ea357600080fd5b610ead838361163a565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860009054906101000a900460ff1615610f1857600080fd5b610f2133610acc565b15610f2b57600080fd5b610f3481611651565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610fcb338484611822565b6001905092915050565b6000610fe2848484611981565b61107b843361107685600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b600190509392505050565b6000611121338461111c85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b611822565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116557600080fd5b61117a81600354611b4b90919063ffffffff16565b6003819055506111d1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b857600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561135b57600080fd5b6000811161136857600080fd5b6113ba81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144e816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f826040518082815260200191505060405180910390a250565b6114f5816007611b8a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61154f816007611bfb90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000611630338461162b85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b611822565b6001905092915050565b6000611647338484611981565b6001905092915050565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561169c57600080fd5b600081116116a957600080fd5b6116fa816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061178e81600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e0826040518082815260200191505060405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561189657600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bb57600080fd5b611a0c816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4b90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b6b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611b5a57600080fd5b600082840390508091505092915050565b600080828401905083811015611b8057600080fd5b8091505092915050565b611b94828261127d565b611b9d57600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611c05828261127d565b15611c0f57600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a723058200d164eccca1896a5247053eb4f324fff4183a5eac727b57602e1a8ca7f48162c0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000574fbde600000000000000000000000000000000000000000000000000000000000000000174167677265676174652054726164696e6720546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000034147540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Aggregate Trading Token
Arg [1] : symbol (string): AGT
Arg [2] : decimals (uint8): 4
Arg [3] : _totalSupply (uint256): 6000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 00000000000000000000000000000000000000000000000000000574fbde6000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [5] : 4167677265676174652054726164696e6720546f6b656e000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4147540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
17544:1114:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17544:1114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11831:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11831:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16810:215;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16810:215:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3910:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16539:263;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16539:263:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12147:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17033:242;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17033:242:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15219:118;;;:::i;:::-;;17989:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17989:132:0;;;;;;;;;;;;;;;;;:::i;:::-;;13489:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13489:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15741:102;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15741:102:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14472:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16009:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16009:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18521:128;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18521:128:0;;;;;;;;;;;;;;;;;:::i;:::-;;13706:77;;;:::i;:::-;;4220:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4220:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13606:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13606:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15008:116;;;:::i;:::-;;11981:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11981:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17283:252;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17283:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16329:202;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16329:202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4556:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4556:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18255:124;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18255:124:0;;;;;;;;;;;;;;;;;:::i;:::-;;5000:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5000:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11831:83;11868:13;11901:5;11894:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11831:83;:::o;16810:215::-;16889:4;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;16915:18;16922:10;16915:6;:18::i;:::-;16914:19;16906:28;;;;;;16954:15;16961:7;16954:6;:15::i;:::-;16953:16;16945:25;;;;;;16988:29;17002:7;17011:5;16988:13;:29::i;:::-;16981:36;;16810:215;;;;:::o;3910:91::-;3954:7;3981:12;;3974:19;;3910:91;:::o;16539:263::-;16632:4;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;16658:18;16665:10;16658:6;:18::i;:::-;16657:19;16649:28;;;;;;16697:12;16704:4;16697:6;:12::i;:::-;16696:13;16688:22;;;;;;16730:10;16737:2;16730:6;:10::i;:::-;16729:11;16721:20;;;;;;16759:35;16778:4;16784:2;16788:5;16759:18;:35::i;:::-;16752:42;;16539:263;;;;;:::o;12147:83::-;12188:5;12213:9;;;;;;;;;;;12206:16;;12147:83;:::o;17033:242::-;17124:4;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;17150:18;17157:10;17150:6;:18::i;:::-;17149:19;17141:28;;;;;;17189:15;17196:7;17189:6;:15::i;:::-;17188:16;17180:25;;;;;;17223:44;17247:7;17256:10;17223:23;:44::i;:::-;17216:51;;17033:242;;;;:::o;15219:118::-;13440:20;13449:10;13440:8;:20::i;:::-;13432:29;;;;;;14888:7;;;;;;;;;;;14880:16;;;;;;15288:5;15278:7;;:15;;;;;;;;;;;;;;;;;;15309:20;15318:10;15309:20;;;;;;;;;;;;;;;;;;;;;;15219:118::o;17989:132::-;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;18059:18;18066:10;18059:6;:18::i;:::-;18058:19;18050:28;;;;;;18089:24;18095:10;18107:5;18089;:24::i;:::-;17989:132;:::o;13489:109::-;13545:4;13569:21;13582:7;13569:8;:12;;:21;;;;:::i;:::-;13562:28;;13489:109;;;:::o;15741:102::-;15795:4;15819:7;:16;15827:7;15819:16;;;;;;;;;;;;;;;;;;;;;;;;;15812:23;;15741:102;;;:::o;14472:78::-;14511:4;14535:7;;;;;;;;;;;14528:14;;14472:78;:::o;16009:151::-;13440:20;13449:10;13440:8;:20::i;:::-;13432:29;;;;;;16102:6;16083:7;:16;16091:7;16083:16;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;16124:28;16136:7;16145:6;16124:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16009:151;;:::o;18521:128::-;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;18595:18;18602:10;18595:6;:18::i;:::-;18594:19;18586:28;;;;;;18625:16;18635:5;18625:9;:16::i;:::-;18521:128;:::o;13706:77::-;13750:25;13764:10;13750:13;:25::i;:::-;13706:77::o;4220:106::-;4275:7;4302:9;:16;4312:5;4302:16;;;;;;;;;;;;;;;;4295:23;;4220:106;;;:::o;13606:92::-;13440:20;13449:10;13440:8;:20::i;:::-;13432:29;;;;;;13671:19;13682:7;13671:10;:19::i;:::-;13606:92;:::o;15008:116::-;13440:20;13449:10;13440:8;:20::i;:::-;13432:29;;;;;;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;15078:4;15068:7;;:14;;;;;;;;;;;;;;;;;;15098:18;15105:10;15098:18;;;;;;;;;;;;;;;;;;;;;;15008:116::o;11981:87::-;12020:13;12053:7;12046:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11981:87;:::o;17283:252::-;17379:4;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;17405:18;17412:10;17405:6;:18::i;:::-;17404:19;17396:28;;;;;;17444:15;17451:7;17444:6;:15::i;:::-;17443:16;17435:25;;;;;;17478:49;17502:7;17511:15;17478:23;:49::i;:::-;17471:56;;17283:252;;;;:::o;16329:202::-;16404:4;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;16430:18;16437:10;16430:6;:18::i;:::-;16429:19;16421:28;;;;;;16469:10;16476:2;16469:6;:10::i;:::-;16468:11;16460:20;;;;;;16498:25;16513:2;16517:5;16498:14;:25::i;:::-;16491:32;;16329:202;;;;:::o;4556:105::-;4610:7;4637:9;:16;4647:5;4637:16;;;;;;;;;;;;;;;;4630:23;;4556:105;;;:::o;18255:124::-;14709:7;;;;;;;;;;;14708:8;14700:17;;;;;;18327:18;18334:10;18327:6;:18::i;:::-;18326:19;18318:28;;;;;;18357:14;18365:5;18357:7;:14::i;:::-;18255:124;:::o;5000:131::-;5072:7;5099:8;:15;5108:5;5099:15;;;;;;;;;;;;;;;:24;5115:7;5099:24;;;;;;;;;;;;;;;;5092:31;;5000:131;;;;:::o;6093:148::-;6158:4;6175:36;6184:10;6196:7;6205:5;6175:8;:36::i;:::-;6229:4;6222:11;;6093:148;;;;:::o;6714:228::-;6793:4;6810:26;6820:4;6826:2;6830:5;6810:9;:26::i;:::-;6847:65;6856:4;6862:10;6874:37;6905:5;6874:8;:14;6883:4;6874:14;;;;;;;;;;;;;;;:26;6889:10;6874:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6847:8;:65::i;:::-;6930:4;6923:11;;6714:228;;;;;:::o;7468:203::-;7548:4;7565:76;7574:10;7586:7;7595:45;7629:10;7595:8;:20;7604:10;7595:20;;;;;;;;;;;;;;;:29;7616:7;7595:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7565:8;:76::i;:::-;7659:4;7652:11;;7468:203;;;;:::o;9758:277::-;9852:1;9833:21;;:7;:21;;;;9825:30;;;;;;9891:23;9908:5;9891:12;;:16;;:23;;;;:::i;:::-;9876:12;:38;;;;9946:29;9969:5;9946:9;:18;9956:7;9946:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;9925:9;:18;9935:7;9925:18;;;;;;;;;;;;;;;:50;;;;10017:1;9991:36;;10000:7;9991:36;;;10021:5;9991:36;;;;;;;;;;;;;;;;;;9758:277;;:::o;12952:165::-;13024:4;13068:1;13049:21;;:7;:21;;;;13041:30;;;;;;13089:4;:11;;:20;13101:7;13089:20;;;;;;;;;;;;;;;;;;;;;;;;;13082:27;;12952:165;;;;:::o;10394:296::-;10478:5;10455:9;:21;10465:10;10455:21;;;;;;;;;;;;;;;;:28;;10447:37;;;;;;10506:1;10498:5;:9;10490:18;;;;;;10543:32;10569:5;10543:9;:21;10553:10;10543:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10519:9;:21;10529:10;10519:21;;;;;;;;;;;;;;;:56;;;;10605:32;10631:5;10605:9;:21;10615:10;10605:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10581:9;:21;10591:10;10581:21;;;;;;;;;;;;;;;:56;;;;10662:10;10653:27;;;10674:5;10653:27;;;;;;;;;;;;;;;;;;10394:296;:::o;13921:130::-;13981:24;13997:7;13981:8;:15;;:24;;;;:::i;:::-;14035:7;14021:22;;;;;;;;;;;;13921:130;:::o;13791:122::-;13848:21;13861:7;13848:8;:12;;:21;;;;:::i;:::-;13897:7;13885:20;;;;;;;;;;;;13791:122;:::o;8202:213::-;8287:4;8304:81;8313:10;8325:7;8334:50;8368:15;8334:8;:20;8343:10;8334:20;;;;;;;;;;;;;;;:29;8355:7;8334:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;8304:8;:81::i;:::-;8403:4;8396:11;;8202:213;;;;:::o;5306:140::-;5367:4;5384:32;5394:10;5406:2;5410:5;5384:9;:32::i;:::-;5434:4;5427:11;;5306:140;;;;:::o;10047:335::-;10130:5;10107:9;:21;10117:10;10107:21;;;;;;;;;;;;;;;;:28;;10099:37;;;;;;10197:1;10189:5;:9;10181:18;;;;;;10234:32;10260:5;10234:9;:21;10244:10;10234:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10210:9;:21;10220:10;10210:21;;;;;;;;;;;;;;;:56;;;;10301:32;10327:5;10301:9;:21;10311:10;10301:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;10277:9;:21;10287:10;10277:21;;;;;;;;;;;;;;;:56;;;;10356:10;10349:25;;;10368:5;10349:25;;;;;;;;;;;;;;;;;;10047:335;:::o;10967:254::-;11079:1;11060:21;;:7;:21;;;;11052:30;;;;;;11118:1;11101:19;;:5;:19;;;;11093:28;;;;;;11161:5;11134:8;:15;11143:5;11134:15;;;;;;;;;;;;;;;:24;11150:7;11134:24;;;;;;;;;;;;;;;:32;;;;11198:7;11182:31;;11191:5;11182:31;;;11207:5;11182:31;;;;;;;;;;;;;;;;;;10967:254;;;:::o;8643:262::-;8745:1;8731:16;;:2;:16;;;;8723:25;;;;;;8779:26;8799:5;8779:9;:15;8789:4;8779:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8761:9;:15;8771:4;8761:15;;;;;;;;;;;;;;;:44;;;;8832:24;8850:5;8832:9;:13;8842:2;8832:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8816:9;:13;8826:2;8816:13;;;;;;;;;;;;;;;:40;;;;8887:2;8872:25;;8881:4;8872:25;;;8891:5;8872:25;;;;;;;;;;;;;;;;;;8643:262;;;:::o;2309:150::-;2367:7;2400:1;2395;:6;;2387:15;;;;;;2413:9;2429:1;2425;:5;2413:17;;2450:1;2443:8;;;2309:150;;;;:::o;2547:::-;2605:7;2625:9;2641:1;2637;:5;2625:17;;2666:1;2661;:6;;2653:15;;;;;;2688:1;2681:8;;;2547:150;;;;:::o;12709:148::-;12789:18;12793:4;12799:7;12789:3;:18::i;:::-;12781:27;;;;;;12844:5;12821:4;:11;;:20;12833:7;12821:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;12709:148;;:::o;12484:145::-;12562:18;12566:4;12572:7;12562:3;:18::i;:::-;12561:19;12553:28;;;;;;12617:4;12594;:11;;:20;12606:7;12594:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;12484:145;;:::o
Swarm Source
bzzr://0d164eccca1896a5247053eb4f324fff4183a5eac727b57602e1a8ca7f48162c
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.