ERC-20
Payments
Overview
Max Total Supply
9,999,999,999.99998777 ACH
Holders
31,353 (0.00%)
Market
Price
$0.02 @ 0.000008 ETH (-6.42%)
Onchain Market Cap
$197,641,600.00
Circulating Supply Market Cap
$97,695,277.00
Other Info
Token Contract (WITH 8 Decimals)
Balance
0.07305867 ACHValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ACH
Compiler Version
v0.5.2+commit.1df8f40c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-09-04 */ pragma solidity ^0.5.2; 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); } 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; } } 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(account != address(0)); 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(account != address(0)); 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 ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; 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 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); } /** * @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); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _burn(account, value); _approve(account, msg.sender, _allowed[account][msg.sender].sub(value)); } } 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; } } library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param account address of the account to check * @return whether the target address is a contract */ function isContract(address account) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require((value == 0) || (token.allowance(address(this), spender) == 0)); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. require(address(token).isContract()); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool))); } } } contract TokenTimelock { using SafeERC20 for IERC20; // ERC20 basic token contract being held IERC20 private _token; // beneficiary of tokens after they are released address private _beneficiary; // timestamp when token release is enabled uint256 private _releaseTime; constructor (IERC20 token, address beneficiary, uint256 releaseTime) public { // solhint-disable-next-line not-rely-on-time require(releaseTime > block.timestamp); _token = token; _beneficiary = beneficiary; _releaseTime = releaseTime; } /** * @return the token being held. */ function token() public view returns (IERC20) { return _token; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the time when the tokens are released. */ function releaseTime() public view returns (uint256) { return _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public { // solhint-disable-next-line not-rely-on-time require(block.timestamp >= _releaseTime); uint256 amount = _token.balanceOf(address(this)); require(amount > 0); _token.safeTransfer(_beneficiary, amount); } } contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender)); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } contract ERC20Mintable is ERC20, MinterRole { /** * @dev Function to mint tokens * @param to The address that will receive the minted tokens. * @param value The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address to, uint256 value) public onlyMinter returns (bool) { _mint(to, value); return true; } } contract ERC20Burnable is ERC20 { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The account whose tokens will be burned. * @param value uint256 The amount of token to be burned. */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } } 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); } } 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 the owner to pause, triggers stopped state */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } contract ACH is ERC20, ERC20Detailed, ERC20Mintable, ERC20Burnable,ERC20Pausable { uint private INITIAL_SUPPLY = 100e16; constructor () public ERC20Detailed("Alchemy", "ACH", 8) { _mint(msg.sender, INITIAL_SUPPLY); } }
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":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"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":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","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"}]
Contract Creation Code
6080604052670de0b6b3a76400006009553480156200001d57600080fd5b50604080518082018252600781527f416c6368656d79000000000000000000000000000000000000000000000000006020808301918252835180850190945260038085527f41434800000000000000000000000000000000000000000000000000000000009185019190915282519293926008926200009d92916200032c565b508151620000b39060049060208501906200032c565b506005805460ff191660ff9290921691909117905550620000df9050336401000000006200011c810204565b620000f3336401000000006200016e810204565b6008805460ff1916905560095462000116903390640100000000620001c0810204565b620003d1565b6200013760068264010000000062000dd36200027f82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200018960078264010000000062000dd36200027f82021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a0382161515620001d657600080fd5b600254620001f3908264010000000062000d75620002da82021704565b600255600160a060020a03821660009081526020819052604090205462000229908264010000000062000d75620002da82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156200029557600080fd5b620002aa8282640100000000620002f4810204565b15620002b557600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620002ed57600080fd5b9392505050565b6000600160a060020a03821615156200030c57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200036f57805160ff19168380011785556200039f565b828001600101855582156200039f579182015b828111156200039f57825182559160200191906001019062000382565b50620003ad929150620003b1565b5090565b620003ce91905b80821115620003ad5760008155600101620003b8565b90565b610e4d80620003e16000396000f3fe608060405234801561001057600080fd5b506004361061016a576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d116100e0578063983b2d5611610099578063983b2d56146103d757806398650275146103fd578063a457c2d714610405578063a9059cbb14610431578063aa271e1a1461045d578063dd62ed3e146104835761016a565b80636ef8d66d1461034757806370a082311461034f57806379cc67901461037557806382dc1ec4146103a15780638456cb59146103c757806395d89b41146103cf5761016a565b80633950935111610132578063395093511461029a5780633f4ba83a146102c657806340c10f19146102d057806342966c68146102fc57806346fbf68e146103195780635c975abb1461033f5761016a565b806306fdde031461016f578063095ea7b3146101ec57806318160ddd1461022c57806323b872dd14610246578063313ce5671461027c575b600080fd5b6101776104b1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102186004803603604081101561020257600080fd5b50600160a060020a038135169060200135610547565b604080519115158252519081900360200190f35b61023461056b565b60408051918252519081900360200190f35b6102186004803603606081101561025c57600080fd5b50600160a060020a03813581169160208101359091169060400135610571565b610284610597565b6040805160ff9092168252519081900360200190f35b610218600480360360408110156102b057600080fd5b50600160a060020a0381351690602001356105a0565b6102ce6105bd565b005b610218600480360360408110156102e657600080fd5b50600160a060020a038135169060200135610621565b6102ce6004803603602081101561031257600080fd5b503561064a565b6102186004803603602081101561032f57600080fd5b5035600160a060020a0316610657565b610218610670565b6102ce610679565b6102346004803603602081101561036557600080fd5b5035600160a060020a0316610684565b6102ce6004803603604081101561038b57600080fd5b50600160a060020a03813516906020013561069f565b6102ce600480360360208110156103b757600080fd5b5035600160a060020a03166106ad565b6102ce6106ca565b610177610730565b6102ce600480360360208110156103ed57600080fd5b5035600160a060020a0316610791565b6102ce6107ae565b6102186004803603604081101561041b57600080fd5b50600160a060020a0381351690602001356107b7565b6102186004803603604081101561044757600080fd5b50600160a060020a0381351690602001356107d4565b6102186004803603602081101561047357600080fd5b5035600160a060020a03166107f1565b6102346004803603604081101561049957600080fd5b50600160a060020a0381358116916020013516610804565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561053d5780601f106105125761010080835404028352916020019161053d565b820191906000526020600020905b81548152906001019060200180831161052057829003601f168201915b5050505050905090565b60085460009060ff161561055a57600080fd5b610564838361082f565b9392505050565b60025490565b60085460009060ff161561058457600080fd5b61058f84848461083c565b949350505050565b60055460ff1690565b60085460009060ff16156105b357600080fd5b6105648383610893565b6105c633610657565b15156105d157600080fd5b60085460ff1615156105e257600080fd5b6008805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061062c336107f1565b151561063757600080fd5b61064183836108cf565b50600192915050565b6106543382610979565b50565b600061066a60078363ffffffff610a2216565b92915050565b60085460ff1690565b61068233610a59565b565b600160a060020a031660009081526020819052604090205490565b6106a98282610aa1565b5050565b6106b633610657565b15156106c157600080fd5b61065481610ae6565b6106d333610657565b15156106de57600080fd5b60085460ff16156106ee57600080fd5b6008805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561053d5780601f106105125761010080835404028352916020019161053d565b61079a336107f1565b15156107a557600080fd5b61065481610b2e565b61068233610b76565b60085460009060ff16156107ca57600080fd5b6105648383610bbe565b60085460009060ff16156107e757600080fd5b6105648383610bfa565b600061066a60068363ffffffff610a2216565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000610641338484610c07565b6000610849848484610c93565b600160a060020a038416600090815260016020908152604080832033808552925290912054610889918691610884908663ffffffff610d6016565b610c07565b5060019392505050565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610641918590610884908663ffffffff610d7516565b600160a060020a03821615156108e457600080fd5b6002546108f7908263ffffffff610d7516565b600255600160a060020a038216600090815260208190526040902054610923908263ffffffff610d7516565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561098e57600080fd5b6002546109a1908263ffffffff610d6016565b600255600160a060020a0382166000908152602081905260409020546109cd908263ffffffff610d6016565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515610a3957600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610a6a60078263ffffffff610d8716565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610aab8282610979565b600160a060020a0382166000908152600160209081526040808320338085529252909120546106a9918491610884908563ffffffff610d6016565b610af760078263ffffffff610dd316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b3f60068263ffffffff610dd316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610b8760068263ffffffff610d8716565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610641918590610884908663ffffffff610d6016565b6000610641338484610c93565b600160a060020a0382161515610c1c57600080fd5b600160a060020a0383161515610c3157600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0382161515610ca857600080fd5b600160a060020a038316600090815260208190526040902054610cd1908263ffffffff610d6016565b600160a060020a038085166000908152602081905260408082209390935590841681522054610d06908263ffffffff610d7516565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610d6f57600080fd5b50900390565b60008282018381101561056457600080fd5b600160a060020a0381161515610d9c57600080fd5b610da68282610a22565b1515610db157600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610de857600080fd5b610df28282610a22565b15610dfc57600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fea165627a7a723058205a7c048297c1394779bb6bd6ec1ce17bbd621e9900b1a716df8da4f4fdb4d4080029
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016a576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d116100e0578063983b2d5611610099578063983b2d56146103d757806398650275146103fd578063a457c2d714610405578063a9059cbb14610431578063aa271e1a1461045d578063dd62ed3e146104835761016a565b80636ef8d66d1461034757806370a082311461034f57806379cc67901461037557806382dc1ec4146103a15780638456cb59146103c757806395d89b41146103cf5761016a565b80633950935111610132578063395093511461029a5780633f4ba83a146102c657806340c10f19146102d057806342966c68146102fc57806346fbf68e146103195780635c975abb1461033f5761016a565b806306fdde031461016f578063095ea7b3146101ec57806318160ddd1461022c57806323b872dd14610246578063313ce5671461027c575b600080fd5b6101776104b1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102186004803603604081101561020257600080fd5b50600160a060020a038135169060200135610547565b604080519115158252519081900360200190f35b61023461056b565b60408051918252519081900360200190f35b6102186004803603606081101561025c57600080fd5b50600160a060020a03813581169160208101359091169060400135610571565b610284610597565b6040805160ff9092168252519081900360200190f35b610218600480360360408110156102b057600080fd5b50600160a060020a0381351690602001356105a0565b6102ce6105bd565b005b610218600480360360408110156102e657600080fd5b50600160a060020a038135169060200135610621565b6102ce6004803603602081101561031257600080fd5b503561064a565b6102186004803603602081101561032f57600080fd5b5035600160a060020a0316610657565b610218610670565b6102ce610679565b6102346004803603602081101561036557600080fd5b5035600160a060020a0316610684565b6102ce6004803603604081101561038b57600080fd5b50600160a060020a03813516906020013561069f565b6102ce600480360360208110156103b757600080fd5b5035600160a060020a03166106ad565b6102ce6106ca565b610177610730565b6102ce600480360360208110156103ed57600080fd5b5035600160a060020a0316610791565b6102ce6107ae565b6102186004803603604081101561041b57600080fd5b50600160a060020a0381351690602001356107b7565b6102186004803603604081101561044757600080fd5b50600160a060020a0381351690602001356107d4565b6102186004803603602081101561047357600080fd5b5035600160a060020a03166107f1565b6102346004803603604081101561049957600080fd5b50600160a060020a0381358116916020013516610804565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561053d5780601f106105125761010080835404028352916020019161053d565b820191906000526020600020905b81548152906001019060200180831161052057829003601f168201915b5050505050905090565b60085460009060ff161561055a57600080fd5b610564838361082f565b9392505050565b60025490565b60085460009060ff161561058457600080fd5b61058f84848461083c565b949350505050565b60055460ff1690565b60085460009060ff16156105b357600080fd5b6105648383610893565b6105c633610657565b15156105d157600080fd5b60085460ff1615156105e257600080fd5b6008805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b600061062c336107f1565b151561063757600080fd5b61064183836108cf565b50600192915050565b6106543382610979565b50565b600061066a60078363ffffffff610a2216565b92915050565b60085460ff1690565b61068233610a59565b565b600160a060020a031660009081526020819052604090205490565b6106a98282610aa1565b5050565b6106b633610657565b15156106c157600080fd5b61065481610ae6565b6106d333610657565b15156106de57600080fd5b60085460ff16156106ee57600080fd5b6008805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561053d5780601f106105125761010080835404028352916020019161053d565b61079a336107f1565b15156107a557600080fd5b61065481610b2e565b61068233610b76565b60085460009060ff16156107ca57600080fd5b6105648383610bbe565b60085460009060ff16156107e757600080fd5b6105648383610bfa565b600061066a60068363ffffffff610a2216565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000610641338484610c07565b6000610849848484610c93565b600160a060020a038416600090815260016020908152604080832033808552925290912054610889918691610884908663ffffffff610d6016565b610c07565b5060019392505050565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610641918590610884908663ffffffff610d7516565b600160a060020a03821615156108e457600080fd5b6002546108f7908263ffffffff610d7516565b600255600160a060020a038216600090815260208190526040902054610923908263ffffffff610d7516565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561098e57600080fd5b6002546109a1908263ffffffff610d6016565b600255600160a060020a0382166000908152602081905260409020546109cd908263ffffffff610d6016565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a0382161515610a3957600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610a6a60078263ffffffff610d8716565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610aab8282610979565b600160a060020a0382166000908152600160209081526040808320338085529252909120546106a9918491610884908563ffffffff610d6016565b610af760078263ffffffff610dd316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610b3f60068263ffffffff610dd316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610b8760068263ffffffff610d8716565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600160209081526040808320600160a060020a03871684529091528120549091610641918590610884908663ffffffff610d6016565b6000610641338484610c93565b600160a060020a0382161515610c1c57600080fd5b600160a060020a0383161515610c3157600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0382161515610ca857600080fd5b600160a060020a038316600090815260208190526040902054610cd1908263ffffffff610d6016565b600160a060020a038085166000908152602081905260408082209390935590841681522054610d06908263ffffffff610d7516565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610d6f57600080fd5b50900390565b60008282018381101561056457600080fd5b600160a060020a0381161515610d9c57600080fd5b610da68282610a22565b1515610db157600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610de857600080fd5b610df28282610a22565b15610dfc57600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fea165627a7a723058205a7c048297c1394779bb6bd6ec1ce17bbd621e9900b1a716df8da4f4fdb4d4080029
Deployed Bytecode Sourcemap
21598:260:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21598:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10937:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10937:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21091:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21091:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3678:91;;;:::i;:::-;;;;;;;;;;;;;;;;20923:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20923:160:0;;;;;;;;;;;;;;;;;:::i;11253:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21239:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21239:167:0;;;;;;;;:::i;20607:118::-;;;:::i;:::-;;17900:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17900:131:0;;;;;;;;:::i;18198:79::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18198:79:0;;:::i;18996:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18996:109:0;-1:-1:-1;;;;;18996:109:0;;:::i;19860:78::-;;;:::i;19213:77::-;;;:::i;3988:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3988:106:0;-1:-1:-1;;;;;3988:106:0;;:::i;18531:95::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18531:95:0;;;;;;;;:::i;19113:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19113:92:0;-1:-1:-1;;;;;19113:92:0;;:::i;20396:116::-;;;:::i;11087:87::-;;;:::i;17150:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17150:92:0;-1:-1:-1;;;;;17150:92:0;;:::i;17250:77::-;;;:::i;21414:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21414:177:0;;;;;;;;:::i;20783:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20783:132:0;;;;;;;;:::i;17033:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17033:109:0;-1:-1:-1;;;;;17033:109:0;;:::i;4433:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4433:131:0;;;;;;;;;;:::i;10937:83::-;11007:5;11000:12;;;;;;;;-1:-1:-1;;11000:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10974:13;;11000:12;;11007:5;;11000:12;;11007:5;11000:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10937:83;:::o;21091:140::-;20097:7;;21170:4;;20097:7;;20096:8;20088:17;;;;;;21194:29;21208:7;21217:5;21194:13;:29::i;:::-;21187:36;21091:140;-1:-1:-1;;;21091:140:0:o;3678:91::-;3749:12;;3678:91;:::o;20923:160::-;20097:7;;21016:4;;20097:7;;20096:8;20088:17;;;;;;21040:35;21059:4;21065:2;21069:5;21040:18;:35::i;:::-;21033:42;20923:160;-1:-1:-1;;;;20923:160:0:o;11253:83::-;11319:9;;;;11253:83;:::o;21239:167::-;20097:7;;21330:4;;20097:7;;20096:8;20088:17;;;;;;21354:44;21378:7;21387:10;21354:23;:44::i;20607:118::-;18947:20;18956:10;18947:8;:20::i;:::-;18939:29;;;;;;;;20276:7;;;;20268:16;;;;;;;;20666:7;:15;;-1:-1:-1;;20666:15:0;;;20697:20;;;20706:10;20697:20;;;;;;;;;;;;;20607:118::o;17900:131::-;17968:4;16984:20;16993:10;16984:8;:20::i;:::-;16976:29;;;;;;;;17985:16;17991:2;17995:5;17985;:16::i;:::-;-1:-1:-1;18019:4:0;17900:131;;;;:::o;18198:79::-;18245:24;18251:10;18263:5;18245;:24::i;:::-;18198:79;:::o;18996:109::-;19052:4;19076:21;:8;19089:7;19076:21;:12;:21;:::i;:::-;19069:28;18996:109;-1:-1:-1;;18996:109:0:o;19860:78::-;19923:7;;;;19860:78;:::o;19213:77::-;19257:25;19271:10;19257:13;:25::i;:::-;19213:77::o;3988:106::-;-1:-1:-1;;;;;4070:16:0;4043:7;4070:16;;;;;;;;;;;;3988:106::o;18531:95::-;18596:22;18606:4;18612:5;18596:9;:22::i;:::-;18531:95;;:::o;19113:92::-;18947:20;18956:10;18947:8;:20::i;:::-;18939:29;;;;;;;;19178:19;19189:7;19178:10;:19::i;20396:116::-;18947:20;18956:10;18947:8;:20::i;:::-;18939:29;;;;;;;;20097:7;;;;20096:8;20088:17;;;;;;20456:7;:14;;-1:-1:-1;;20456:14:0;20466:4;20456:14;;;20486:18;;;20493:10;20486:18;;;;;;;;;;;;;20396:116::o;11087:87::-;11159:7;11152:14;;;;;;;;-1:-1:-1;;11152:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11126:13;;11152:14;;11159:7;;11152:14;;11159:7;11152:14;;;;;;;;;;;;;;;;;;;;;;;;17150:92;16984:20;16993:10;16984:8;:20::i;:::-;16976:29;;;;;;;;17215:19;17226:7;17215:10;:19::i;17250:77::-;17294:25;17308:10;17294:13;:25::i;21414:177::-;20097:7;;21510:4;;20097:7;;20096:8;20088:17;;;;;;21534:49;21558:7;21567:15;21534:23;:49::i;20783:132::-;20097:7;;20858:4;;20097:7;;20096:8;20088:17;;;;;;20882:25;20897:2;20901:5;20882:14;:25::i;17033:109::-;17089:4;17113:21;:8;17126:7;17113:21;:12;:21;:::i;4433:131::-;-1:-1:-1;;;;;4532:15:0;;;4505:7;4532:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4433:131::o;5525:148::-;5590:4;5607:36;5616:10;5628:7;5637:5;5607:8;:36::i;6146:228::-;6225:4;6242:26;6252:4;6258:2;6262:5;6242:9;:26::i;:::-;-1:-1:-1;;;;;6306:14:0;;;;;;:8;:14;;;;;;;;6294:10;6306:26;;;;;;;;;6279:65;;6288:4;;6306:37;;6337:5;6306:37;:30;:37;:::i;:::-;6279:8;:65::i;:::-;-1:-1:-1;6362:4:0;6146:228;;;;;:::o;6900:203::-;7006:10;6980:4;7027:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7027:29:0;;;;;;;;;;6980:4;;6997:76;;7018:7;;7027:45;;7061:10;7027:45;:33;:45;:::i;8688:269::-;-1:-1:-1;;;;;8763:21:0;;;;8755:30;;;;;;8813:12;;:23;;8830:5;8813:23;:16;:23;:::i;:::-;8798:12;:38;-1:-1:-1;;;;;8868:18:0;;:9;:18;;;;;;;;;;;:29;;8891:5;8868:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8847:18:0;;:9;:18;;;;;;;;;;;:50;;;;8913:36;;;;;;;8847:18;;:9;;8913:36;;;;;;;;;;8688:269;;:::o;9191:::-;-1:-1:-1;;;;;9266:21:0;;;;9258:30;;;;;;9316:12;;:23;;9333:5;9316:23;:16;:23;:::i;:::-;9301:12;:38;-1:-1:-1;;;;;9371:18:0;;:9;:18;;;;;;;;;;;:29;;9394:5;9371:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;9350:18:0;;:9;:18;;;;;;;;;;;:50;;;;9416:36;;;;;;;9350:9;;9416:36;;;;;;;;;;;9191:269;;:::o;3205:165::-;3277:4;-1:-1:-1;;;;;3302:21:0;;;;3294:30;;;;;;-1:-1:-1;;;;;;3342:20:0;:11;:20;;;;;;;;;;;;;;;3205:165::o;19428:130::-;19488:24;:8;19504:7;19488:24;:15;:24;:::i;:::-;19528:22;;-1:-1:-1;;;;;19528:22:0;;;;;;;;19428:130;:::o;10386:182::-;10457:21;10463:7;10472:5;10457;:21::i;:::-;-1:-1:-1;;;;;10519:17:0;;;;;;:8;:17;;;;;;;;10507:10;10519:29;;;;;;;;;10489:71;;10498:7;;10519:40;;10553:5;10519:40;:33;:40;:::i;19298:122::-;19355:21;:8;19368:7;19355:21;:12;:21;:::i;:::-;19392:20;;-1:-1:-1;;;;;19392:20:0;;;;;;;;19298:122;:::o;17335:::-;17392:21;:8;17405:7;17392:21;:12;:21;:::i;:::-;17429:20;;-1:-1:-1;;;;;17429:20:0;;;;;;;;17335:122;:::o;17465:130::-;17525:24;:8;17541:7;17525:24;:15;:24;:::i;:::-;17565:22;;-1:-1:-1;;;;;17565:22:0;;;;;;;;17465:130;:::o;7634:213::-;7745:10;7719:4;7766:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7766:29:0;;;;;;;;;;7719:4;;7736:81;;7757:7;;7766:50;;7800:15;7766:50;:33;:50;:::i;4738:140::-;4799:4;4816:32;4826:10;4838:2;4842:5;4816:9;:32::i;9733:254::-;-1:-1:-1;;;;;9826:21:0;;;;9818:30;;;;;;-1:-1:-1;;;;;9867:19:0;;;;9859:28;;;;;;-1:-1:-1;;;;;9900:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;9948:31;;;;;;;;;;;;;;;;;9733:254;;;:::o;8074:262::-;-1:-1:-1;;;;;8162:16:0;;;;8154:25;;;;;;-1:-1:-1;;;;;8210:15:0;;:9;:15;;;;;;;;;;;:26;;8230:5;8210:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;8192:15:0;;;:9;:15;;;;;;;;;;;:44;;;;8263:13;;;;;;;:24;;8281:5;8263:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;8247:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;8303:25;;;;;;;8247:13;;8303:25;;;;;;;;;;;;;8074:262;;;:::o;1818:150::-;1876:7;1904:6;;;;1896:15;;;;;;-1:-1:-1;1934:5:0;;;1818:150::o;2056:::-;2114:7;2146:5;;;2170:6;;;;2162:15;;;;;2922:189;-1:-1:-1;;;;;3002:21:0;;;;2994:30;;;;;;3043:18;3047:4;3053:7;3043:3;:18::i;:::-;3035:27;;;;;;;;-1:-1:-1;;;;;3075:20:0;3098:5;3075:20;;;;;;;;;;;:28;;-1:-1:-1;;3075:28:0;;;2922:189::o;2657:186::-;-1:-1:-1;;;;;2734:21:0;;;;2726:30;;;;;;2776:18;2780:4;2786:7;2776:3;:18::i;:::-;2775:19;2767:28;;;;;;-1:-1:-1;;;;;2808:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;2808:27:0;2831:4;2808:27;;;2657:186::o
Swarm Source
bzzr://5a7c048297c1394779bb6bd6ec1ce17bbd621e9900b1a716df8da4f4fdb4d408
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.