Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 768 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20687275 | 61 days ago | IN | 0 ETH | 0.00014425 | ||||
Approve | 20388120 | 102 days ago | IN | 0 ETH | 0.00041935 | ||||
Approve | 20091017 | 144 days ago | IN | 0 ETH | 0.00063841 | ||||
Approve | 20090269 | 144 days ago | IN | 0 ETH | 0.00074234 | ||||
Approve | 20090255 | 144 days ago | IN | 0 ETH | 0.00142918 | ||||
Approve | 20090245 | 144 days ago | IN | 0 ETH | 0.00064833 | ||||
Approve | 20090245 | 144 days ago | IN | 0 ETH | 0.00064833 | ||||
Approve | 19938727 | 165 days ago | IN | 0 ETH | 0.00040827 | ||||
Approve | 18907730 | 310 days ago | IN | 0 ETH | 0.00057343 | ||||
Approve | 18905902 | 310 days ago | IN | 0 ETH | 0.00063734 | ||||
Approve | 18512975 | 365 days ago | IN | 0 ETH | 0.00058904 | ||||
Approve | 18092580 | 424 days ago | IN | 0 ETH | 0.00039582 | ||||
Approve | 18013806 | 435 days ago | IN | 0 ETH | 0.00071301 | ||||
Approve | 17755111 | 471 days ago | IN | 0 ETH | 0.00078279 | ||||
Approve | 17682459 | 481 days ago | IN | 0 ETH | 0.00035302 | ||||
Approve | 17671253 | 483 days ago | IN | 0 ETH | 0.00221875 | ||||
Approve | 17652377 | 485 days ago | IN | 0 ETH | 0.00074333 | ||||
Approve | 17551717 | 500 days ago | IN | 0 ETH | 0.000625 | ||||
Transfer | 17551704 | 500 days ago | IN | 0 ETH | 0.00073052 | ||||
Approve | 17482801 | 509 days ago | IN | 0 ETH | 0.00074456 | ||||
Approve | 17262567 | 540 days ago | IN | 0 ETH | 0.00189431 | ||||
Approve | 17137110 | 558 days ago | IN | 0 ETH | 0.00084395 | ||||
Approve | 16944089 | 585 days ago | IN | 0 ETH | 0.00060327 | ||||
Approve | 16907362 | 591 days ago | IN | 0 ETH | 0.00045334 | ||||
Approve | 16721846 | 617 days ago | IN | 0 ETH | 0.00178688 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MFLY
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-30 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC20 { /** * @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); /** * @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); } 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); } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_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(), "Ownable: 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract MFLY is Context, IERC20, IERC20Metadata, Ownable { // Openzeppelin variables mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; // My variables mapping(address => bool) public isPauseExempt; bool isPaused; // Openzeppelin functions /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() { // Editable _name = "Monarch Butterfly"; _symbol = "MFLY"; uint e_totalSupply = 1_000_000_000_000 ether; isPaused = true; // End editable isPauseExempt[msg.sender] = true; _mint(msg.sender, e_totalSupply); } /** * @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 value {ERC20} uses, unless this function is * 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]; } /** * @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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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); // My implementation require(!isPaused || isPauseExempt[from], "Transactions are paused."); // End my implementation uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; 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; _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; } _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 Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} // My functions function setPauseExempt(address account, bool value) external onlyOwner { isPauseExempt[account] = value; } function setPaused(bool value) external onlyOwner { isPaused = value; } }
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":"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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"isPauseExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setPauseExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPaused","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200001d33620000cc565b6040805180820190915260118152704d6f6e6172636820427574746572666c7960781b6020820152600490620000549082620002ad565b506040805180820190915260048152634d464c5960e01b60208201526005906200007f9082620002ad565b5060078054600160ff199182168117909255336000818152600660205260409020805490921690921790556c0c9f2c9cd04674edea4000000090620000c590826200011c565b50620003a1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001775760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018b919062000379565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ba90849062000379565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023457607f821691505b6020821081036200025557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020457600081815260208120601f850160051c81016020861015620002845750805b601f850160051c820191505b81811015620002a55782815560010162000290565b505050505050565b81516001600160401b03811115620002c957620002c962000209565b620002e181620002da84546200021f565b846200025b565b602080601f831160018114620003195760008415620003005750858301515b600019600386901b1c1916600185901b178555620002a5565b600085815260208120601f198616915b828110156200034a5788860151825594840194600190910190840162000329565b5085821015620003695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039b57634e487b7160e01b600052601160045260246000fd5b92915050565b610c5d80620003b16000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806343afb798116100a257806395d89b411161007157806395d89b411461022f578063a457c2d714610237578063a9059cbb1461024a578063dd62ed3e1461025d578063f2fde38b1461029657600080fd5b806343afb798146101d057806370a08231146101e3578063715018a61461020c5780638da5cb5b1461021457600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063395093511461019a5780634294dd2a146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806316c38b3c1461015157806318160ddd14610166575b600080fd5b6101186102a9565b6040516101259190610a1d565b60405180910390f35b61014161013c366004610a87565b61033b565b6040519015158152602001610125565b61016461015f366004610ac1565b610355565b005b6003545b604051908152602001610125565b610141610186366004610ae3565b61039b565b60405160128152602001610125565b6101416101a8366004610a87565b6103bf565b6101416101bb366004610b1f565b60066020526000908152604090205460ff1681565b6101646101de366004610b3a565b6103fe565b61016a6101f1366004610b1f565b6001600160a01b031660009081526001602052604090205490565b610164610453565b6000546040516001600160a01b039091168152602001610125565b610118610489565b610141610245366004610a87565b610498565b610141610258366004610a87565b61052a565b61016a61026b366004610b6d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101646102a4366004610b1f565b610538565b6060600480546102b890610b97565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610b97565b80156103315780601f1061030657610100808354040283529160200191610331565b820191906000526020600020905b81548152906001019060200180831161031457829003601f168201915b5050505050905090565b6000336103498185856105d3565b60019150505b92915050565b6000546001600160a01b031633146103885760405162461bcd60e51b815260040161037f90610bd1565b60405180910390fd5b6007805460ff1916911515919091179055565b6000336103a98582856106f7565b6103b4858585610789565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919061034990829086906103f9908790610c06565b6105d3565b6000546001600160a01b031633146104285760405162461bcd60e51b815260040161037f90610bd1565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461047d5760405162461bcd60e51b815260040161037f90610bd1565b61048760006109cd565b565b6060600580546102b890610b97565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091908381101561051d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b6103b482868684036105d3565b600033610349818585610789565b6000546001600160a01b031633146105625760405162461bcd60e51b815260040161037f90610bd1565b6001600160a01b0381166105c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161037f565b6105d0816109cd565b50565b6001600160a01b0383166106355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b0382166106965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461078357818110156107765760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037f565b61078384848484036105d3565b50505050565b6001600160a01b0383166107ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b03821661084f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b60075460ff16158061087957506001600160a01b03831660009081526006602052604090205460ff165b6108c55760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e7320617265207061757365642e0000000000000000604482015260640161037f565b6001600160a01b0383166000908152600160205260409020548181101561093d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610974908490610c06565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c091815260200190565b60405180910390a3610783565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610a4a57858101830151858201604001528201610a2e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a8257600080fd5b919050565b60008060408385031215610a9a57600080fd5b610aa383610a6b565b946020939093013593505050565b80358015158114610a8257600080fd5b600060208284031215610ad357600080fd5b610adc82610ab1565b9392505050565b600080600060608486031215610af857600080fd5b610b0184610a6b565b9250610b0f60208501610a6b565b9150604084013590509250925092565b600060208284031215610b3157600080fd5b610adc82610a6b565b60008060408385031215610b4d57600080fd5b610b5683610a6b565b9150610b6460208401610ab1565b90509250929050565b60008060408385031215610b8057600080fd5b610b8983610a6b565b9150610b6460208401610a6b565b600181811c90821680610bab57607f821691505b602082108103610bcb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561034f57634e487b7160e01b600052601160045260246000fdfea26469706673582212201d88d29131ae53ca7ccc79a6515ea808d8e3c801e322e4faba17500610893bb564736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806343afb798116100a257806395d89b411161007157806395d89b411461022f578063a457c2d714610237578063a9059cbb1461024a578063dd62ed3e1461025d578063f2fde38b1461029657600080fd5b806343afb798146101d057806370a08231146101e3578063715018a61461020c5780638da5cb5b1461021457600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063395093511461019a5780634294dd2a146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806316c38b3c1461015157806318160ddd14610166575b600080fd5b6101186102a9565b6040516101259190610a1d565b60405180910390f35b61014161013c366004610a87565b61033b565b6040519015158152602001610125565b61016461015f366004610ac1565b610355565b005b6003545b604051908152602001610125565b610141610186366004610ae3565b61039b565b60405160128152602001610125565b6101416101a8366004610a87565b6103bf565b6101416101bb366004610b1f565b60066020526000908152604090205460ff1681565b6101646101de366004610b3a565b6103fe565b61016a6101f1366004610b1f565b6001600160a01b031660009081526001602052604090205490565b610164610453565b6000546040516001600160a01b039091168152602001610125565b610118610489565b610141610245366004610a87565b610498565b610141610258366004610a87565b61052a565b61016a61026b366004610b6d565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101646102a4366004610b1f565b610538565b6060600480546102b890610b97565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610b97565b80156103315780601f1061030657610100808354040283529160200191610331565b820191906000526020600020905b81548152906001019060200180831161031457829003601f168201915b5050505050905090565b6000336103498185856105d3565b60019150505b92915050565b6000546001600160a01b031633146103885760405162461bcd60e51b815260040161037f90610bd1565b60405180910390fd5b6007805460ff1916911515919091179055565b6000336103a98582856106f7565b6103b4858585610789565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919061034990829086906103f9908790610c06565b6105d3565b6000546001600160a01b031633146104285760405162461bcd60e51b815260040161037f90610bd1565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461047d5760405162461bcd60e51b815260040161037f90610bd1565b61048760006109cd565b565b6060600580546102b890610b97565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091908381101561051d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b6103b482868684036105d3565b600033610349818585610789565b6000546001600160a01b031633146105625760405162461bcd60e51b815260040161037f90610bd1565b6001600160a01b0381166105c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161037f565b6105d0816109cd565b50565b6001600160a01b0383166106355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b0382166106965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260026020908152604080832093861683529290522054600019811461078357818110156107765760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037f565b61078384848484036105d3565b50505050565b6001600160a01b0383166107ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b03821661084f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b60075460ff16158061087957506001600160a01b03831660009081526006602052604090205460ff165b6108c55760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e7320617265207061757365642e0000000000000000604482015260640161037f565b6001600160a01b0383166000908152600160205260409020548181101561093d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610974908490610c06565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c091815260200190565b60405180910390a3610783565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610a4a57858101830151858201604001528201610a2e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a8257600080fd5b919050565b60008060408385031215610a9a57600080fd5b610aa383610a6b565b946020939093013593505050565b80358015158114610a8257600080fd5b600060208284031215610ad357600080fd5b610adc82610ab1565b9392505050565b600080600060608486031215610af857600080fd5b610b0184610a6b565b9250610b0f60208501610a6b565b9150604084013590509250925092565b600060208284031215610b3157600080fd5b610adc82610a6b565b60008060408385031215610b4d57600080fd5b610b5683610a6b565b9150610b6460208401610ab1565b90509250929050565b60008060408385031215610b8057600080fd5b610b8983610a6b565b9150610b6460208401610a6b565b600181811c90821680610bab57607f821691505b602082108103610bcb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561034f57634e487b7160e01b600052601160045260246000fdfea26469706673582212201d88d29131ae53ca7ccc79a6515ea808d8e3c801e322e4faba17500610893bb564736f6c63430008100033
Deployed Bytecode Sourcemap
5252:12325:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6391:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8742:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8742:201:0;1004:187:1;17489:85:0;;;;;;:::i;:::-;;:::i;:::-;;7511:108;7599:12;;7511:108;;;1692:25:1;;;1680:2;1665:18;7511:108:0;1546:177:1;9523:295:0;;;;;;:::i;:::-;;:::i;7353:93::-;;;7436:2;2203:36:1;;2191:2;2176:18;7353:93:0;2061:184:1;10227:240:0;;;;;;:::i;:::-;;:::i;5594:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17356:121;;;;;;:::i;:::-;;:::i;7682:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7783:18:0;7756:7;7783:18;;;:9;:18;;;;;;;7682:127;4435:103;;;:::i;3784:87::-;3830:7;3857:6;3784:87;;-1:-1:-1;;;;;3857:6:0;;;2846:51:1;;2834:2;2819:18;3784:87:0;2700:203:1;6610:104:0;;;:::i;10970:438::-;;;;;;:::i;:::-;;:::i;8015:193::-;;;;;;:::i;:::-;;:::i;8271:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8387:18:0;;;8360:7;8387:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8271:151;4693:201;;;;;;:::i;:::-;;:::i;6391:100::-;6445:13;6478:5;6471:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6391:100;:::o;8742:201::-;8825:4;173:10;8881:32;173:10;8897:7;8906:6;8881:8;:32::i;:::-;8931:4;8924:11;;;8742:201;;;;;:::o;17489:85::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;;;;;;;;;17550:8:::1;:16:::0;;-1:-1:-1;;17550:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;17489:85::o;9523:295::-;9654:4;173:10;9712:38;9728:4;173:10;9743:6;9712:15;:38::i;:::-;9761:27;9771:4;9777:2;9781:6;9761:9;:27::i;:::-;-1:-1:-1;9806:4:0;;9523:295;-1:-1:-1;;;;9523:295:0:o;10227:240::-;173:10;10315:4;10396:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10396:27:0;;;;;;;;;;10315:4;;173:10;10371:66;;173:10;;10396:27;;:40;;10426:10;;10396:40;:::i;:::-;10371:8;:66::i;17356:121::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17439:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;17439:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;17356:121::o;4435:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;6610:104::-;6666:13;6699:7;6692:14;;;;;:::i;10970:438::-;173:10;11063:4;11146:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11146:27:0;;;;;;;;;;11063:4;;173:10;11192:35;;;;11184:85;;;;-1:-1:-1;;;11184:85:0;;4348:2:1;11184:85:0;;;4330:21:1;4387:2;4367:18;;;4360:30;4426:34;4406:18;;;4399:62;-1:-1:-1;;;4477:18:1;;;4470:35;4522:19;;11184:85:0;4146:401:1;11184:85:0;11305:60;11314:5;11321:7;11349:15;11330:16;:34;11305:8;:60::i;8015:193::-;8094:4;173:10;8150:28;173:10;8167:2;8171:6;8150:9;:28::i;4693:201::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4782:22:0;::::1;4774:73;;;::::0;-1:-1:-1;;;4774:73:0;;4754:2:1;4774:73:0::1;::::0;::::1;4736:21:1::0;4793:2;4773:18;;;4766:30;4832:34;4812:18;;;4805:62;-1:-1:-1;;;4883:18:1;;;4876:36;4929:19;;4774:73:0::1;4552:402:1::0;4774:73:0::1;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;14752:380::-;-1:-1:-1;;;;;14888:19:0;;14880:68;;;;-1:-1:-1;;;14880:68:0;;5161:2:1;14880:68:0;;;5143:21:1;5200:2;5180:18;;;5173:30;5239:34;5219:18;;;5212:62;-1:-1:-1;;;5290:18:1;;;5283:34;5334:19;;14880:68:0;4959:400:1;14880:68:0;-1:-1:-1;;;;;14967:21:0;;14959:68;;;;-1:-1:-1;;;14959:68:0;;5566:2:1;14959:68:0;;;5548:21:1;5605:2;5585:18;;;5578:30;5644:34;5624:18;;;5617:62;-1:-1:-1;;;5695:18:1;;;5688:32;5737:19;;14959:68:0;5364:398:1;14959:68:0;-1:-1:-1;;;;;15040:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15092:32;;1692:25:1;;;15092:32:0;;1665:18:1;15092:32:0;;;;;;;14752:380;;;:::o;15419:453::-;-1:-1:-1;;;;;8387:18:0;;;15554:24;8387:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15621:37:0;;15617:248;;15703:6;15683:16;:26;;15675:68;;;;-1:-1:-1;;;15675:68:0;;5969:2:1;15675:68:0;;;5951:21:1;6008:2;5988:18;;;5981:30;6047:31;6027:18;;;6020:59;6096:18;;15675:68:0;5767:353:1;15675:68:0;15787:51;15796:5;15803:7;15831:6;15812:16;:25;15787:8;:51::i;:::-;15543:329;15419:453;;;:::o;11887:817::-;-1:-1:-1;;;;;12018:18:0;;12010:68;;;;-1:-1:-1;;;12010:68:0;;6327:2:1;12010:68:0;;;6309:21:1;6366:2;6346:18;;;6339:30;6405:34;6385:18;;;6378:62;-1:-1:-1;;;6456:18:1;;;6449:35;6501:19;;12010:68:0;6125:401:1;12010:68:0;-1:-1:-1;;;;;12097:16:0;;12089:64;;;;-1:-1:-1;;;12089:64:0;;6733:2:1;12089:64:0;;;6715:21:1;6772:2;6752:18;;;6745:30;6811:34;6791:18;;;6784:62;-1:-1:-1;;;6862:18:1;;;6855:33;6905:19;;12089:64:0;6531:399:1;12089:64:0;12256:8;;;;12255:9;;:32;;-1:-1:-1;;;;;;12268:19:0;;;;;;:13;:19;;;;;;;;12255:32;12247:69;;;;-1:-1:-1;;;12247:69:0;;7137:2:1;12247:69:0;;;7119:21:1;7176:2;7156:18;;;7149:30;7215:26;7195:18;;;7188:54;7259:18;;12247:69:0;6935:348:1;12247:69:0;-1:-1:-1;;;;;12385:15:0;;12363:19;12385:15;;;:9;:15;;;;;;12419:21;;;;12411:72;;;;-1:-1:-1;;;12411:72:0;;7490:2:1;12411:72:0;;;7472:21:1;7529:2;7509:18;;;7502:30;7568:34;7548:18;;;7541:62;-1:-1:-1;;;7619:18:1;;;7612:36;7665:19;;12411:72:0;7288:402:1;12411:72:0;-1:-1:-1;;;;;12519:15:0;;;;;;;:9;:15;;;;;;12537:20;;;12519:38;;12579:13;;;;;;;;:23;;12551:6;;12519:15;12579:23;;12551:6;;12579:23;:::i;:::-;;;;;;;;12635:2;-1:-1:-1;;;;;12620:26:0;12629:4;-1:-1:-1;;;;;12620:26:0;;12639:6;12620:26;;;;1692:25:1;;1680:2;1665:18;;1546:177;12620:26:0;;;;;;;;12659:37;16472:125;5054:191;5128:16;5147:6;;-1:-1:-1;;;;;5164:17:0;;;-1:-1:-1;;;;;;5164:17:0;;;;;;5197:40;;5147:6;;;;;;;5197:40;;5128:16;5197:40;5117:128;5054:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:160::-;1261:20;;1317:13;;1310:21;1300:32;;1290:60;;1346:1;1343;1336:12;1361:180;1417:6;1470:2;1458:9;1449:7;1445:23;1441:32;1438:52;;;1486:1;1483;1476:12;1438:52;1509:26;1525:9;1509:26;:::i;:::-;1499:36;1361:180;-1:-1:-1;;;1361:180:1:o;1728:328::-;1805:6;1813;1821;1874:2;1862:9;1853:7;1849:23;1845:32;1842:52;;;1890:1;1887;1880:12;1842:52;1913:29;1932:9;1913:29;:::i;:::-;1903:39;;1961:38;1995:2;1984:9;1980:18;1961:38;:::i;:::-;1951:48;;2046:2;2035:9;2031:18;2018:32;2008:42;;1728:328;;;;;:::o;2250:186::-;2309:6;2362:2;2350:9;2341:7;2337:23;2333:32;2330:52;;;2378:1;2375;2368:12;2330:52;2401:29;2420:9;2401:29;:::i;2441:254::-;2506:6;2514;2567:2;2555:9;2546:7;2542:23;2538:32;2535:52;;;2583:1;2580;2573:12;2535:52;2606:29;2625:9;2606:29;:::i;:::-;2596:39;;2654:35;2685:2;2674:9;2670:18;2654:35;:::i;:::-;2644:45;;2441:254;;;;;:::o;2908:260::-;2976:6;2984;3037:2;3025:9;3016:7;3012:23;3008:32;3005:52;;;3053:1;3050;3043:12;3005:52;3076:29;3095:9;3076:29;:::i;:::-;3066:39;;3124:38;3158:2;3147:9;3143:18;3124:38;:::i;3173:380::-;3252:1;3248:12;;;;3295;;;3316:61;;3370:4;3362:6;3358:17;3348:27;;3316:61;3423:2;3415:6;3412:14;3392:18;3389:38;3386:161;;3469:10;3464:3;3460:20;3457:1;3450:31;3504:4;3501:1;3494:15;3532:4;3529:1;3522:15;3386:161;;3173:380;;;:::o;3558:356::-;3760:2;3742:21;;;3779:18;;;3772:30;3838:34;3833:2;3818:18;;3811:62;3905:2;3890:18;;3558:356::o;3919:222::-;3984:9;;;4005:10;;;4002:133;;;4057:10;4052:3;4048:20;4045:1;4038:31;4092:4;4089:1;4082:15;4120:4;4117:1;4110:15
Swarm Source
ipfs://1d88d29131ae53ca7ccc79a6515ea808d8e3c801e322e4faba17500610893bb5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.