ERC-20
Overview
Max Total Supply
70,000,000 ABS
Holders
6
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
57,297,050.195672621764759252 ABSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x54455532...3Dc47a7F8 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AbstraDEX
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-19 */ // File contracts/exchange/factory/IERC20.sol pragma solidity >=0.5.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File contracts/libs/Context.sol pragma solidity ^0.8.18; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File contracts/libs/Ownable.sol pragma solidity ^0.8.18; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; mapping(address => bool) private _operators; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event UpdateOperator(address indexed operator, bool authorized); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor(address initialOwner) { _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev add / remove operators. * `operator`: operator address * `authorized`: authorized or not */ function updateOperator(address operator, bool authorized) public onlyOwner { require(operator != address(0), "Ownable: operator is the zero address"); emit UpdateOperator(operator, authorized); _operators[operator] = authorized; } /** * @dev Throws if called by any account other than the operators. */ modifier onlyOperator() { require(_operators[_msgSender()], "Ownable: caller is not the operator"); _; } } // File contracts/exchange/factory/AbstraDEX.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract AbstraDEX is IERC20, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; constructor(address initialOwner) Ownable(initialOwner) { _name = "AbstraDEX"; _symbol = "ABS"; _decimals = 18; _totalSupply = 70000000 * (10 ** _decimals); _balances[initialOwner] = _totalSupply; } /** * @dev Returns the token owner. */ function getOwner() public view override returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() public view override returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance( address owner, address spender ) public view override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) external override returns (bool) { address spender = _msgSender(); _spendAllowance(sender, spender, amount); _transfer(sender, recipient, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public returns (bool) { address owner = _msgSender(); _approve( owner, spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 fromBalance = _balances[sender]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[recipient] += amount; } emit Transfer(sender, recipient, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); return true; } /** * @dev Burn the token in the sender address */ function _burn(address account, uint256 amount) internal { require(amount > 0, "ERC20: amount is zero"); require(_balances[account] >= amount, "ERC20: insufficient balance"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Burn(account, amount); emit Transfer(account, address(0), amount); } event Burn(address indexed account, uint256 amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"authorized","type":"bool"}],"name":"UpdateOperator","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"authorized","type":"bool"}],"name":"updateOperator","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620011653803806200116583398101604081905262000034916200013d565b806200004081620000ed565b50604080518082019091526009815268082c4e6e8e4c2888ab60bb1b602082015260079062000070908262000214565b5060408051808201909152600381526241425360e81b60208201526006906200009a908262000214565b506005805460ff19166012908117909155620000b890600a620003f5565b620000c89063042c1d8062000406565b60048190556001600160a01b0390911660009081526002602052604090205562000420565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200015057600080fd5b81516001600160a01b03811681146200016857600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019a57607f821691505b602082108103620001bb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020f57600081815260208120601f850160051c81016020861015620001ea5750805b601f850160051c820191505b818110156200020b57828155600101620001f6565b5050505b505050565b81516001600160401b038111156200023057620002306200016f565b620002488162000241845462000185565b84620001c1565b602080601f831160018114620002805760008415620002675750858301515b600019600386901b1c1916600185901b1785556200020b565b600085815260208120601f198616915b82811015620002b15788860151825594840194600190910190840162000290565b5085821015620002d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003375781600019048211156200031b576200031b620002e0565b808516156200032957918102915b93841c9390800290620002fb565b509250929050565b6000826200035057506001620003ef565b816200035f57506000620003ef565b81600181146200037857600281146200038357620003a3565b6001915050620003ef565b60ff841115620003975762000397620002e0565b50506001821b620003ef565b5060208310610133831016604e8410600b8410161715620003c8575081810a620003ef565b620003d48383620002f6565b8060001904821115620003eb57620003eb620002e0565b0290505b92915050565b60006200016860ff8416836200033f565b8082028115828204841417620003ef57620003ef620002e0565b610d3580620004306000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461022d578063a457c2d714610235578063a9059cbb14610248578063dd62ed3e1461025b578063f2fde38b1461026e57600080fd5b806370a08231146101c6578063715018a6146101ef578063893d20e8146101f75780638da5cb5b1461021c57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e5780636d44a3b2146101b157600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610281565b6040516101259190610b2a565b60405180910390f35b61014161013c366004610b94565b610313565b6040519015158152602001610125565b6004545b604051908152602001610125565b610141610171366004610bbe565b61032a565b60055460405160ff9091168152602001610125565b610141610199366004610b94565b61034e565b6101416101ac366004610bfa565b610397565b6101c46101bf366004610c13565b6103ab565b005b6101556101d4366004610c4f565b6001600160a01b031660009081526002602052604090205490565b6101c461048c565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6000546001600160a01b0316610204565b6101186104a0565b610141610243366004610b94565b6104af565b610141610256366004610b94565b61052a565b610155610269366004610c71565b610537565b6101c461027c366004610c4f565b610562565b60606007805461029090610ca4565b80601f01602080910402602001604051908101604052809291908181526020018280546102bc90610ca4565b80156103095780601f106102de57610100808354040283529160200191610309565b820191906000526020600020905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b60006103203384846105a0565b5060015b92915050565b6000336103388582856106c5565b61034385858561073f565b506001949350505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490919061038d9082908690610388908790610cde565b6105a0565b5060019392505050565b60006103a333836108eb565b506001919050565b6103b3610aad565b6001600160a01b03821661041c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c653a206f70657261746f7220697320746865207a65726f206164604482015264647265737360d81b60648201526084015b60405180910390fd5b816001600160a01b03167f2ee52be9d342458b3d25e07faada7ff9bc06723b4aa24edb6321ac1316b8a9dd82604051610459911515815260200190565b60405180910390a26001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b610494610aad565b61049e6000610ada565b565b60606006805461029090610ca4565b600033816104bd8286610537565b90508381101561051d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610413565b61034382868684036105a0565b600061032033848461073f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61056a610aad565b6001600160a01b03811661059457604051631e4fbdf760e01b815260006004820152602401610413565b61059d81610ada565b50565b6001600160a01b0383166106025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610413565b6001600160a01b0382166106635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610413565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106d18484610537565b90506000198114610739578181101561072c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610413565b61073984848484036105a0565b50505050565b6001600160a01b0383166107a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610413565b6001600160a01b0382166108055760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610413565b6001600160a01b0383166000908152600260205260409020548181101561087d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610413565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108dd9086815260200190565b60405180910390a350505050565b600081116109335760405162461bcd60e51b815260206004820152601560248201527445524332303a20616d6f756e74206973207a65726f60581b6044820152606401610413565b6001600160a01b03821660009081526002602052604090205481111561099b5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20696e73756666696369656e742062616c616e636500000000006044820152606401610413565b6001600160a01b03821660009081526002602052604090205481811015610a0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610413565b6001600160a01b038316600081815260026020526040908190208484039055600480548590039055517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca590610a679085815260200190565b60405180910390a26040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106b8565b6000546001600160a01b0316331461049e5760405163118cdaa760e01b8152336004820152602401610413565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610b5757858101830151858201604001528201610b3b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b8f57600080fd5b919050565b60008060408385031215610ba757600080fd5b610bb083610b78565b946020939093013593505050565b600080600060608486031215610bd357600080fd5b610bdc84610b78565b9250610bea60208501610b78565b9150604084013590509250925092565b600060208284031215610c0c57600080fd5b5035919050565b60008060408385031215610c2657600080fd5b610c2f83610b78565b915060208301358015158114610c4457600080fd5b809150509250929050565b600060208284031215610c6157600080fd5b610c6a82610b78565b9392505050565b60008060408385031215610c8457600080fd5b610c8d83610b78565b9150610c9b60208401610b78565b90509250929050565b600181811c90821680610cb857607f821691505b602082108103610cd857634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561032457634e487b7160e01b600052601160045260246000fdfea26469706673582212207dc74f0bc5f5e254187707e6343ac768a021f4abe09402259bff1464f8c49ae464736f6c63430008130033000000000000000000000000c0f762b491cb9b25f8aaa2c6148733a713d8afeb
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461022d578063a457c2d714610235578063a9059cbb14610248578063dd62ed3e1461025b578063f2fde38b1461026e57600080fd5b806370a08231146101c6578063715018a6146101ef578063893d20e8146101f75780638da5cb5b1461021c57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e5780636d44a3b2146101b157600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610281565b6040516101259190610b2a565b60405180910390f35b61014161013c366004610b94565b610313565b6040519015158152602001610125565b6004545b604051908152602001610125565b610141610171366004610bbe565b61032a565b60055460405160ff9091168152602001610125565b610141610199366004610b94565b61034e565b6101416101ac366004610bfa565b610397565b6101c46101bf366004610c13565b6103ab565b005b6101556101d4366004610c4f565b6001600160a01b031660009081526002602052604090205490565b6101c461048c565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6000546001600160a01b0316610204565b6101186104a0565b610141610243366004610b94565b6104af565b610141610256366004610b94565b61052a565b610155610269366004610c71565b610537565b6101c461027c366004610c4f565b610562565b60606007805461029090610ca4565b80601f01602080910402602001604051908101604052809291908181526020018280546102bc90610ca4565b80156103095780601f106102de57610100808354040283529160200191610309565b820191906000526020600020905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b60006103203384846105a0565b5060015b92915050565b6000336103388582856106c5565b61034385858561073f565b506001949350505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490919061038d9082908690610388908790610cde565b6105a0565b5060019392505050565b60006103a333836108eb565b506001919050565b6103b3610aad565b6001600160a01b03821661041c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c653a206f70657261746f7220697320746865207a65726f206164604482015264647265737360d81b60648201526084015b60405180910390fd5b816001600160a01b03167f2ee52be9d342458b3d25e07faada7ff9bc06723b4aa24edb6321ac1316b8a9dd82604051610459911515815260200190565b60405180910390a26001600160a01b03919091166000908152600160205260409020805460ff1916911515919091179055565b610494610aad565b61049e6000610ada565b565b60606006805461029090610ca4565b600033816104bd8286610537565b90508381101561051d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610413565b61034382868684036105a0565b600061032033848461073f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61056a610aad565b6001600160a01b03811661059457604051631e4fbdf760e01b815260006004820152602401610413565b61059d81610ada565b50565b6001600160a01b0383166106025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610413565b6001600160a01b0382166106635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610413565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106d18484610537565b90506000198114610739578181101561072c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610413565b61073984848484036105a0565b50505050565b6001600160a01b0383166107a35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610413565b6001600160a01b0382166108055760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610413565b6001600160a01b0383166000908152600260205260409020548181101561087d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610413565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108dd9086815260200190565b60405180910390a350505050565b600081116109335760405162461bcd60e51b815260206004820152601560248201527445524332303a20616d6f756e74206973207a65726f60581b6044820152606401610413565b6001600160a01b03821660009081526002602052604090205481111561099b5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20696e73756666696369656e742062616c616e636500000000006044820152606401610413565b6001600160a01b03821660009081526002602052604090205481811015610a0f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610413565b6001600160a01b038316600081815260026020526040908190208484039055600480548590039055517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca590610a679085815260200190565b60405180910390a26040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106b8565b6000546001600160a01b0316331461049e5760405163118cdaa760e01b8152336004820152602401610413565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610b5757858101830151858201604001528201610b3b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b8f57600080fd5b919050565b60008060408385031215610ba757600080fd5b610bb083610b78565b946020939093013593505050565b600080600060608486031215610bd357600080fd5b610bdc84610b78565b9250610bea60208501610b78565b9150604084013590509250925092565b600060208284031215610c0c57600080fd5b5035919050565b60008060408385031215610c2657600080fd5b610c2f83610b78565b915060208301358015158114610c4457600080fd5b809150509250929050565b600060208284031215610c6157600080fd5b610c6a82610b78565b9392505050565b60008060408385031215610c8457600080fd5b610c8d83610b78565b9150610c9b60208401610b78565b90509250929050565b600181811c90821680610cb857607f821691505b602082108103610cd857634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561032457634e487b7160e01b600052601160045260246000fdfea26469706673582212207dc74f0bc5f5e254187707e6343ac768a021f4abe09402259bff1464f8c49ae464736f6c63430008130033
Deployed Bytecode Sourcemap
7461:8834:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8548:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9765:186;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9765:186:0;1004:187:1;8704:100:0;8784:12;;8704:100;;;1342:25:1;;;1330:2;1315:18;8704:100:0;1196:177:1;10422:309:0;;;;;;:::i;:::-;;:::i;8232:92::-;8307:9;;8232:92;;8307:9;;;;1853:36:1;;1841:2;1826:18;8232:92:0;1711:184:1;11139:314:0;;;;;;:::i;:::-;;:::i;15397:120::-;;;;;;:::i;:::-;;:::i;6883:249::-;;;;;;:::i;:::-;;:::i;:::-;;8866:119;;;;;;:::i;:::-;-1:-1:-1;;;;;8959:18:0;8932:7;8959:18;;;:9;:18;;;;;;;8866:119;5986:97;;;:::i;8073:92::-;8123:7;5426:6;-1:-1:-1;;;;;5426:6:0;8073:92;;;-1:-1:-1;;;;;2792:32:1;;;2774:51;;2762:2;2747:18;8073:92:0;2628:203:1;5357:81:0;5403:7;5426:6;-1:-1:-1;;;;;5426:6:0;5357:81;;8389:96;;;:::i;11955:488::-;;;;;;:::i;:::-;;:::i;9197:192::-;;;;;;:::i;:::-;;:::i;9451:168::-;;;;;;:::i;:::-;;:::i;6228:200::-;;;;;;:::i;:::-;;:::i;8548:92::-;8594:13;8627:5;8620:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8548:92;:::o;9765:186::-;9865:4;9882:39;3720:10;9905:7;9914:6;9882:8;:39::i;:::-;-1:-1:-1;9939:4:0;9765:186;;;;;:::o;10422:309::-;10556:4;3720:10;10614:40;10630:6;3720:10;10647:6;10614:15;:40::i;:::-;10665:36;10675:6;10683:9;10694:6;10665:9;:36::i;:::-;-1:-1:-1;10719:4:0;;10422:309;-1:-1:-1;;;;10422:309:0:o;11139:314::-;3720:10;11244:4;11365:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11365:34:0;;;;;;;;;;11244:4;;3720:10;11300:123;;3720:10;;11343:7;;11365:47;;11402:10;;11365:47;:::i;:::-;11300:8;:123::i;:::-;-1:-1:-1;11441:4:0;;11139:314;-1:-1:-1;;;11139:314:0:o;15397:120::-;15443:4;15460:27;3720:10;15480:6;15460:5;:27::i;:::-;-1:-1:-1;15505:4:0;;15397:120;-1:-1:-1;15397:120:0:o;6883:249::-;5257:13;:11;:13::i;:::-;-1:-1:-1;;;;;6974:22:0;::::1;6966:72;;;::::0;-1:-1:-1;;;6966:72:0;;3915:2:1;6966:72:0::1;::::0;::::1;3897:21:1::0;3954:2;3934:18;;;3927:30;3993:34;3973:18;;;3966:62;-1:-1:-1;;;4044:18:1;;;4037:35;4089:19;;6966:72:0::1;;;;;;;;;7065:8;-1:-1:-1::0;;;;;7050:36:0::1;;7075:10;7050:36;;;;1169:14:1::0;1162:22;1144:41;;1132:2;1117:18;;1004:187;7050:36:0::1;;;;;;;;-1:-1:-1::0;;;;;7093:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:33;;-1:-1:-1;;7093:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;6883:249::o;5986:97::-;5257:13;:11;:13::i;:::-;6047:30:::1;6074:1;6047:18;:30::i;:::-;5986:97::o:0;8389:96::-;8437:13;8470:7;8463:14;;;;;:::i;11955:488::-;12065:4;3720:10;12065:4;12148:25;3720:10;12165:7;12148:9;:25::i;:::-;12121:52;;12226:15;12206:16;:35;;12184:122;;;;-1:-1:-1;;;12184:122:0;;4321:2:1;12184:122:0;;;4303:21:1;4360:2;4340:18;;;4333:30;4399:34;4379:18;;;4372:62;-1:-1:-1;;;4450:18:1;;;4443:35;4495:19;;12184:122:0;4119:401:1;12184:122:0;12342:60;12351:5;12358:7;12386:15;12367:16;:34;12342:8;:60::i;9197:192::-;9300:4;9317:42;3720:10;9341:9;9352:6;9317:9;:42::i;9451:168::-;-1:-1:-1;;;;;9584:18:0;;;9557:7;9584:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9451:168::o;6228:200::-;5257:13;:11;:13::i;:::-;-1:-1:-1;;;;;6309:22:0;::::1;6305:83;;6349:31;::::0;-1:-1:-1;;;6349:31:0;;6377:1:::1;6349:31;::::0;::::1;2774:51:1::0;2747:18;;6349:31:0::1;2628:203:1::0;6305:83:0::1;6394:28;6413:8;6394:18;:28::i;:::-;6228:200:::0;:::o;14966:338::-;-1:-1:-1;;;;;15060:19:0;;15052:68;;;;-1:-1:-1;;;15052:68:0;;4727:2:1;15052:68:0;;;4709:21:1;4766:2;4746:18;;;4739:30;4805:34;4785:18;;;4778:62;-1:-1:-1;;;4856:18:1;;;4849:34;4900:19;;15052:68:0;4525:400:1;15052:68:0;-1:-1:-1;;;;;15139:21:0;;15131:68;;;;-1:-1:-1;;;15131:68:0;;5132:2:1;15131:68:0;;;5114:21:1;5171:2;5151:18;;;5144:30;5210:34;5190:18;;;5183:62;-1:-1:-1;;;5261:18:1;;;5254:32;5303:19;;15131:68:0;4930:398:1;15131:68:0;-1:-1:-1;;;;;15212:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15264:32;;1342:25:1;;;15264:32:0;;1315:18:1;15264:32:0;;;;;;;;14966:338;;;:::o;12734:494::-;12861:24;12888:25;12898:5;12905:7;12888:9;:25::i;:::-;12861:52;;-1:-1:-1;;12928:16:0;:37;12924:297;;13028:6;13008:16;:26;;12982:117;;;;-1:-1:-1;;;12982:117:0;;5535:2:1;12982:117:0;;;5517:21:1;5574:2;5554:18;;;5547:30;5613:31;5593:18;;;5586:59;5662:18;;12982:117:0;5333:353:1;12982:117:0;13143:51;13152:5;13159:7;13187:6;13168:16;:25;13143:8;:51::i;:::-;12850:378;12734:494;;;:::o;13718:808::-;-1:-1:-1;;;;;13850:20:0;;13842:70;;;;-1:-1:-1;;;13842:70:0;;5893:2:1;13842:70:0;;;5875:21:1;5932:2;5912:18;;;5905:30;5971:34;5951:18;;;5944:62;-1:-1:-1;;;6022:18:1;;;6015:35;6067:19;;13842:70:0;5691:401:1;13842:70:0;-1:-1:-1;;;;;13931:23:0;;13923:71;;;;-1:-1:-1;;;13923:71:0;;6299:2:1;13923:71:0;;;6281:21:1;6338:2;6318:18;;;6311:30;6377:34;6357:18;;;6350:62;-1:-1:-1;;;6428:18:1;;;6421:33;6471:19;;13923:71:0;6097:399:1;13923:71:0;-1:-1:-1;;;;;14029:17:0;;14007:19;14029:17;;;:9;:17;;;;;;14079:21;;;;14057:109;;;;-1:-1:-1;;;14057:109:0;;6703:2:1;14057:109:0;;;6685:21:1;6742:2;6722:18;;;6715:30;6781:34;6761:18;;;6754:62;-1:-1:-1;;;6832:18:1;;;6825:36;6878:19;;14057:109:0;6501:402:1;14057:109:0;-1:-1:-1;;;;;14204:17:0;;;;;;;:9;:17;;;;;;14224:20;;;14204:40;;14424:20;;;;;;;;;;:30;;;;;;14483:35;;;;;;14238:6;1342:25:1;;1330:2;1315:18;;1196:177;14483:35:0;;;;;;;;13831:695;13718:808;;;:::o;15593:639::-;15678:1;15669:6;:10;15661:44;;;;-1:-1:-1;;;15661:44:0;;7110:2:1;15661:44:0;;;7092:21:1;7149:2;7129:18;;;7122:30;-1:-1:-1;;;7168:18:1;;;7161:51;7229:18;;15661:44:0;6908:345:1;15661:44:0;-1:-1:-1;;;;;15724:18:0;;;;;;:9;:18;;;;;;:28;-1:-1:-1;15724:28:0;15716:68;;;;-1:-1:-1;;;15716:68:0;;7460:2:1;15716:68:0;;;7442:21:1;7499:2;7479:18;;;7472:30;7538:29;7518:18;;;7511:57;7585:18;;15716:68:0;7258:351:1;15716:68:0;-1:-1:-1;;;;;15822:18:0;;15797:22;15822:18;;;:9;:18;;;;;;15859:24;;;;15851:71;;;;-1:-1:-1;;;15851:71:0;;7816:2:1;15851:71:0;;;7798:21:1;7855:2;7835:18;;;7828:30;7894:34;7874:18;;;7867:62;-1:-1:-1;;;7945:18:1;;;7938:32;7987:19;;15851:71:0;7614:398:1;15851:71:0;-1:-1:-1;;;;;15960:18:0;;;;;;:9;:18;;;;;;;15981:23;;;15960:44;;16099:12;:22;;;;;;;16150:21;;;;;15998:6;1342:25:1;;1330:2;1315:18;;1196:177;16150:21:0;;;;;;;;16187:37;;1342:25:1;;;16213:1:0;;-1:-1:-1;;;;;16187:37:0;;;;;1330:2:1;1315:18;16187:37:0;1196:177:1;5508:150:0;5403:7;5426:6;-1:-1:-1;;;;;5426:6:0;3720:10;5564:23;5560:93;;5605:40;;-1:-1:-1;;;5605:40:0;;3720:10;5605:40;;;2774:51:1;2747:18;;5605:40:0;2628:203:1;6578:177:0;6648:16;6667:6;;-1:-1:-1;;;;;6680:17:0;;;-1:-1:-1;;;;;;6680:17:0;;;;;;6709:40;;6667:6;;;;;;;6709:40;;6648:16;6709:40;6641:114;6578:177;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:347::-;2150:6;2158;2211:2;2199:9;2190:7;2186:23;2182:32;2179:52;;;2227:1;2224;2217:12;2179:52;2250:29;2269:9;2250:29;:::i;:::-;2240:39;;2329:2;2318:9;2314:18;2301:32;2376:5;2369:13;2362:21;2355:5;2352:32;2342:60;;2398:1;2395;2388:12;2342:60;2421:5;2411:15;;;2085:347;;;;;:::o;2437:186::-;2496:6;2549:2;2537:9;2528:7;2524:23;2520:32;2517:52;;;2565:1;2562;2555:12;2517:52;2588:29;2607:9;2588:29;:::i;:::-;2578:39;2437:186;-1:-1:-1;;;2437:186:1:o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3486:222::-;3551:9;;;3572:10;;;3569:133;;;3624:10;3619:3;3615:20;3612:1;3605:31;3659:4;3656:1;3649:15;3687:4;3684:1;3677:15
Swarm Source
ipfs://7dc74f0bc5f5e254187707e6343ac768a021f4abe09402259bff1464f8c49ae4
[ 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.