Feature Tip: Add private address tag to any address under My Name Tag !
Contract Overview
Balance:
0 Ether
EtherValue:
$0.00
More Info
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x9548b10ac7e680847952a9fa8b20f66e191fc2a43b85ca8b53ddb895feaaa9d4 | Initialize Imple... | 12389027 | 629 days 13 hrs ago | Wilder World: Deployer | IN | 0x67aac030b59d266e754b0b24af9cc77ec2534a37 | 0 Ether | 0.00690825 | |
0xd8d0c0d0f3ccfd140febdcfdeee59dd26dbc88d20ff9b83224f844d1010e5586 | 0x60806040 | 12389018 | 629 days 13 hrs ago | Wilder World: Deployer | IN | Create: ZeroDAOToken | 0 Ether | 0.15309907 |
[ Download CSV Export ]
View more zero value Internal Transactions in Advanced View mode
Contract Name:
ZeroDAOToken
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; // Slight modifiations from base Open Zeppelin Contracts // Consult /oz/README.md for more information import "./oz/ERC20Upgradeable.sol"; import "./oz/ERC20SnapshotUpgradeable.sol"; import "./oz/ERC20PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; contract ZeroDAOToken is OwnableUpgradeable, ERC20Upgradeable, ERC20PausableUpgradeable, ERC20SnapshotUpgradeable { event AuthorizedSnapshotter(address account); event DeauthorizedSnapshotter(address account); // Mapping which stores all addresses allowed to snapshot mapping(address => bool) authorizedToSnapshot; function initialize(string memory name, string memory symbol) public initializer { __Ownable_init(); __ERC20_init(name, symbol); __ERC20Snapshot_init(); __ERC20Pausable_init(); } // Call this on the implementation contract (not the proxy) function initializeImplementation() public initializer { __Ownable_init(); _pause(); } /** * Mints new tokens. * @param account the account to mint the tokens for * @param amount the amount of tokens to mint. */ function mint(address account, uint256 amount) external onlyOwner { _mint(account, amount); } /** * Burns tokens from an address. * @param account the account to mint the tokens for * @param amount the amount of tokens to mint. */ function burn(address account, uint256 amount) external onlyOwner { _burn(account, amount); } /** * Pauses the token contract preventing any token mint/transfer/burn operations. * Can only be called if the contract is unpaused. */ function pause() external onlyOwner { _pause(); } /** * Unpauses the token contract preventing any token mint/transfer/burn operations * Can only be called if the contract is paused. */ function unpause() external onlyOwner { _unpause(); } /** * Creates a token balance snapshot. Ideally this would be called by the * controlling DAO whenever a proposal is made. */ function snapshot() external returns (uint256) { require( authorizedToSnapshot[_msgSender()] || _msgSender() == owner(), "zDAOToken: Not authorized to snapshot" ); return _snapshot(); } /** * Authorizes an account to take snapshots * @param account The account to authorize */ function authorizeSnapshotter(address account) external onlyOwner { require( !authorizedToSnapshot[account], "zDAOToken: Account already authorized" ); authorizedToSnapshot[account] = true; emit AuthorizedSnapshotter(account); } /** * Deauthorizes an account to take snapshots * @param account The account to de-authorize */ function deauthorizeSnapshotter(address account) external onlyOwner { require(authorizedToSnapshot[account], "zDAOToken: Account not authorized"); authorizedToSnapshot[account] = false; emit DeauthorizedSnapshotter(account); } /** * Utility function to transfer tokens to many addresses at once. * @param recipients The addresses to send tokens to * @param amount The amount of tokens to send * @return Boolean if the transfer was a success */ function transferBulk(address[] calldata recipients, uint256 amount) external returns (bool) { address sender = _msgSender(); uint256 total = amount * recipients.length; require( _balances[sender] >= total, "ERC20: transfer amount exceeds balance" ); require(!paused(), "ERC20Pausable: token transfer while paused"); _balances[sender] -= total; _updateAccountSnapshot(sender); for (uint256 i = 0; i < recipients.length; ++i) { address recipient = recipients[i]; require(recipient != address(0), "ERC20: transfer to the zero address"); // Note: _beforeTokenTransfer isn't called here // This function emulates what it would do (paused and snapshot) _balances[recipient] += amount; _updateAccountSnapshot(recipient); emit Transfer(sender, recipient, amount); } return true; } /** * Utility function to transfer tokens to many addresses at once. * @param sender The address to send the tokens from * @param recipients The addresses to send tokens to * @param amount The amount of tokens to send * @return Boolean if the transfer was a success */ function transferFromBulk( address sender, address[] calldata recipients, uint256 amount ) external returns (bool) { require(!paused(), "ERC20Pausable: token transfer while paused"); uint256 total = amount * recipients.length; require( _balances[sender] >= total, "ERC20: transfer amount exceeds balance" ); // Ensure enough allowance uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= total, "ERC20: transfer total exceeds allowance" ); _approve(sender, _msgSender(), currentAllowance - total); _balances[sender] -= total; _updateAccountSnapshot(sender); for (uint256 i = 0; i < recipients.length; ++i) { address recipient = recipients[i]; require(recipient != address(0), "ERC20: transfer to the zero address"); // Note: _beforeTokenTransfer isn't called here // This function emulates what it would do (paused and snapshot) _balances[recipient] += amount; _updateAccountSnapshot(recipient); emit Transfer(sender, recipient, amount); } return true; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override( ERC20PausableUpgradeable, ERC20SnapshotUpgradeable, ERC20Upgradeable ) { super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable { // Diff from Open Zeppelin Standard mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 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 to 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 {} uint256[45] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ArraysUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20SnapshotUpgradeable is Initializable, ERC20Upgradeable { function __ERC20Snapshot_init() internal initializer { __Context_init_unchained(); __ERC20Snapshot_init_unchained(); } function __ERC20Snapshot_init_unchained() internal initializer {} // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using ArraysUpgradeable for uint256[]; using CountersUpgradeable for CountersUpgradeable.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. CountersUpgradeable.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _currentSnapshotId.current(); emit Snapshot(currentId); return currentId; } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); // solhint-disable-next-line max-line-length require( snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id" ); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) internal { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() internal { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _currentSnapshotId.current(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } uint256[46] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20PausableUpgradeable is Initializable, ERC20Upgradeable, PausableUpgradeable { function __ERC20Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); __ERC20Pausable_init_unchained(); } function __ERC20Pausable_init_unchained() internal initializer {} /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "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 { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /* * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev Collection of functions related to array types. */ library ArraysUpgradeable { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = MathUpgradeable.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"AuthorizedSnapshotter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"DeauthorizedSnapshotter","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"authorizeSnapshotter","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"deauthorizeSnapshotter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializeImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferBulk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromBulk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506123f6806100206000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80638456cb59116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610367578063e9825ffa146103a0578063f2fde38b146103b3578063fbc1284f146103c6576101c4565b8063a9059cbb1461032e578063c18e273414610341578063d5adcbe014610354576101c4565b80639711715a116100d35780639711715a146102ed578063981b24d0146102f55780639dc29fac14610308578063a457c2d71461031b576101c4565b80638456cb59146102c25780638da5cb5b146102ca57806395d89b41146102e5576101c4565b806340c10f19116101665780634ee2cd7e116101405780634ee2cd7e146102895780635c975abb1461029c57806370a08231146102a7578063715018a6146102ba576101c4565b806340c10f191461025b5780634c10879d1461026e5780634cd88b7614610276576101c4565b806323b872dd116101a257806323b872dd1461021c578063313ce5671461022f578063395093511461023e5780633f4ba83a14610251576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d16103d9565b6040516101de91906120e9565b60405180910390f35b6101fa6101f5366004611ffd565b61046b565b60405190151581526020016101de565b6067545b6040519081526020016101de565b6101fa61022a366004611f6a565b610482565b604051601281526020016101de565b6101fa61024c366004611ffd565b610538565b61025961056f565b005b610259610269366004611ffd565b6105a3565b6102596105db565b610259610284366004612070565b610657565b61020e610297366004611ffd565b6106e7565b60975460ff166101fa565b61020e6102b5366004611f1e565b610730565b61025961074f565b6102596107c3565b6033546040516001600160a01b0390911681526020016101de565b6101d16107f5565b61020e610804565b61020e6103033660046120d1565b610894565b610259610316366004611ffd565b6108bf565b6101fa610329366004611ffd565b6108f3565b6101fa61033c366004611ffd565b61098e565b6101fa61034f366004612026565b61099b565b6101fa610362366004611fa5565b610b38565b61020e610375366004611f38565b6001600160a01b03918216600090815260666020908152604080832093909416825291909152205490565b6102596103ae366004611f1e565b610d6f565b6102596103c1366004611f1e565b610e65565b6102596103d4366004611f1e565b610f50565b6060606880546103e8906122f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610414906122f4565b80156104615780601f1061043657610100808354040283529160200191610461565b820191906000526020600020905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b6000610478338484611047565b5060015b92915050565b600061048f84848461116c565b6001600160a01b0384166000908152606660209081526040808320338452909152902054828110156105195760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61052d853361052886856122dd565b611047565b506001949350505050565b3360008181526066602090815260408083206001600160a01b03871684529091528120549091610478918590610528908690612292565b6033546001600160a01b031633146105995760405162461bcd60e51b815260040161051090612213565b6105a16112c2565b565b6033546001600160a01b031633146105cd5760405162461bcd60e51b815260040161051090612213565b6105d78282611355565b5050565b600054610100900460ff16806105f4575060005460ff16155b6106105760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff16158015610632576000805461ffff19166101011790555b61063a61142e565b610642611495565b8015610654576000805461ff00191690555b50565b600054610100900460ff1680610670575060005460ff16155b61068c5760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff161580156106ae576000805461ffff19166101011790555b6106b661142e565b6106c08383611510565b6106c8611579565b6106d06115e0565b80156106e2576000805461ff00191690555b505050565b6001600160a01b038216600090815260fb602052604081208190819061070e908590611647565b91509150816107255761072085610730565b610727565b805b95945050505050565b6001600160a01b0381166000908152606560205260409020545b919050565b6033546001600160a01b031633146107795760405162461bcd60e51b815260040161051090612213565b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b6033546001600160a01b031633146107ed5760405162461bcd60e51b815260040161051090612213565b6105a1611495565b6060606980546103e8906122f4565b33600090815261012d602052604081205460ff168061082d57506033546001600160a01b031633145b6108875760405162461bcd60e51b815260206004820152602560248201527f7a44414f546f6b656e3a204e6f7420617574686f72697a656420746f20736e616044820152641c1cda1bdd60da1b6064820152608401610510565b61088f611747565b905090565b60008060006108a48460fc611647565b91509150816108b5576067546108b7565b805b949350505050565b6033546001600160a01b031633146108e95760405162461bcd60e51b815260040161051090612213565b6105d782826117a2565b3360009081526066602090815260408083206001600160a01b0386168452909152812054828110156109755760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610510565b610984338561052886856122dd565b5060019392505050565b600061047833848461116c565b600033816109a985856122be565b6001600160a01b0383166000908152606560205260409020549091508111156109e45760405162461bcd60e51b81526004016105109061217f565b60975460ff1615610a075760405162461bcd60e51b815260040161051090612248565b6001600160a01b03821660009081526065602052604081208054839290610a2f9084906122dd565b90915550610a3e9050826118eb565b60005b85811015610b2b576000878783818110610a6b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610a809190611f1e565b90506001600160a01b038116610aa85760405162461bcd60e51b81526004016105109061213c565b6001600160a01b03811660009081526065602052604081208054889290610ad0908490612292565b90915550610adf9050816118eb565b806001600160a01b0316846001600160a01b03166000805160206123a183398151915288604051610b1291815260200190565b60405180910390a350610b248161232f565b9050610a41565b5060019695505050505050565b6000610b4660975460ff1690565b15610b635760405162461bcd60e51b815260040161051090612248565b6000610b6f84846122be565b6001600160a01b038716600090815260656020526040902054909150811115610baa5760405162461bcd60e51b81526004016105109061217f565b6001600160a01b038616600090815260666020908152604080832033845290915290205481811015610c2e5760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f74616c206578636565647320616c6044820152666c6f77616e636560c81b6064820152608401610510565b610c3d873361052885856122dd565b6001600160a01b03871660009081526065602052604081208054849290610c659084906122dd565b90915550610c749050876118eb565b60005b85811015610d61576000878783818110610ca157634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610cb69190611f1e565b90506001600160a01b038116610cde5760405162461bcd60e51b81526004016105109061213c565b6001600160a01b03811660009081526065602052604081208054889290610d06908490612292565b90915550610d159050816118eb565b806001600160a01b0316896001600160a01b03166000805160206123a183398151915288604051610d4891815260200190565b60405180910390a350610d5a8161232f565b9050610c77565b506001979650505050505050565b6033546001600160a01b03163314610d995760405162461bcd60e51b815260040161051090612213565b6001600160a01b038116600090815261012d602052604090205460ff16610e0c5760405162461bcd60e51b815260206004820152602160248201527f7a44414f546f6b656e3a204163636f756e74206e6f7420617574686f72697a656044820152601960fa1b6064820152608401610510565b6001600160a01b038116600081815261012d6020908152604091829020805460ff1916905590519182527f51f8ef0f426007e7662fabfb0a7d46d2e383ffe4f627aebfac09c2815468773991015b60405180910390a150565b6033546001600160a01b03163314610e8f5760405162461bcd60e51b815260040161051090612213565b6001600160a01b038116610ef45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610510565b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b6033546001600160a01b03163314610f7a5760405162461bcd60e51b815260040161051090612213565b6001600160a01b038116600090815261012d602052604090205460ff1615610ff25760405162461bcd60e51b815260206004820152602560248201527f7a44414f546f6b656e3a204163636f756e7420616c726561647920617574686f6044820152641c9a5e995960da1b6064820152608401610510565b6001600160a01b038116600081815261012d6020908152604091829020805460ff1916600117905590519182527f2e457b8fcc8c01e995f48f89abb9cf6a72dce32622702d6ffa54c372be369ff99101610e5a565b6001600160a01b0383166110a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610510565b6001600160a01b03821661110a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610510565b6001600160a01b0383811660008181526066602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610510565b6001600160a01b0382166111f65760405162461bcd60e51b81526004016105109061213c565b611201838383611915565b6001600160a01b0383166000908152606560205260409020548181101561123a5760405162461bcd60e51b81526004016105109061217f565b61124482826122dd565b6001600160a01b03808616600090815260656020526040808220939093559085168152908120805484929061127a908490612292565b92505081905550826001600160a01b0316846001600160a01b03166000805160206123a1833981519152846040516112b491815260200190565b60405180910390a350505050565b60975460ff1661130b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610510565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166113ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610510565b6113b760008383611915565b80606760008282546113c99190612292565b90915550506001600160a01b038216600090815260656020526040812080548392906113f6908490612292565b90915550506040518181526001600160a01b038316906000906000805160206123a18339815191529060200160405180910390a35050565b600054610100900460ff1680611447575060005460ff16155b6114635760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff16158015611485576000805461ffff19166101011790555b61148d611920565b61064261198a565b60975460ff16156114db5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610510565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113383390565b600054610100900460ff1680611529575060005460ff16155b6115455760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff16158015611567576000805461ffff19166101011790555b61156f611920565b6106d08383611a38565b600054610100900460ff1680611592575060005460ff16155b6115ae5760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff161580156115d0576000805461ffff19166101011790555b6115d8611920565b610642611920565b600054610100900460ff16806115f9575060005460ff16155b6116155760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff16158015611637576000805461ffff19166101011790555b61163f611920565b6115d8611acd565b600080600084116116935760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b6044820152606401610510565b60fe548411156116e55760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152606401610510565b60006116f18486611b42565b845490915081141561170a576000809250925050611740565b600184600101828154811061172f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600061175760fe80546001019055565b600061176260fe5490565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161179591815260200190565b60405180910390a1905090565b6001600160a01b0382166118025760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610510565b61180e82600083611915565b6001600160a01b038216600090815260656020526040902054818110156118825760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610510565b61188c82826122dd565b6001600160a01b038416600090815260656020526040812091909155606780548492906118ba9084906122dd565b90915550506040518281526000906001600160a01b038516906000805160206123a18339815191529060200161115f565b6001600160a01b038116600090815260fb602052604090206106549061191083610730565b611c21565b6106e2838383611c6c565b600054610100900460ff1680611939575060005460ff16155b6119555760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff16158015610642576000805461ffff19166101011790558015610654576000805461ff001916905550565b600054610100900460ff16806119a3575060005460ff16155b6119bf5760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff161580156119e1576000805461ffff19166101011790555b603380546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015610654576000805461ff001916905550565b600054610100900460ff1680611a51575060005460ff16155b611a6d5760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff16158015611a8f576000805461ffff19166101011790555b8251611aa2906068906020860190611da4565b508151611ab6906069906020850190611da4565b5080156106e2576000805461ff0019169055505050565b600054610100900460ff1680611ae6575060005460ff16155b611b025760405162461bcd60e51b8152600401610510906121c5565b600054610100900460ff16158015611b24576000805461ffff19166101011790555b6097805460ff191690558015610654576000805461ff001916905550565b8154600090611b535750600061047c565b82546000905b80821015611bbd576000611b6d8383611cc4565b905084868281548110611b9057634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115611ba957809150611bb7565b611bb4816001612292565b92505b50611b59565b600082118015611c0057508385611bd56001856122dd565b81548110611bf357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b15611c1957611c106001836122dd565b9250505061047c565b50905061047c565b6000611c2c60fe5490565b905080611c3884611d22565b10156106e2578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b611c77838383611d73565b6001600160a01b038316611c9b57611c8e826118eb565b611c96611d96565b6106e2565b6001600160a01b038216611cb257611c8e836118eb565b611cbb836118eb565b6106e2826118eb565b60006002611cd2818461234a565b611cdd60028661234a565b611ce79190612292565b611cf191906122aa565b611cfc6002846122aa565b611d076002866122aa565b611d119190612292565b611d1b9190612292565b9392505050565b8054600090611d335750600061074a565b81548290611d43906001906122dd565b81548110611d6157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905061074a565b60975460ff16156106e25760405162461bcd60e51b815260040161051090612248565b6105a160fc61191060675490565b828054611db0906122f4565b90600052602060002090601f016020900481019282611dd25760008555611e18565b82601f10611deb57805160ff1916838001178555611e18565b82800160010185558215611e18579182015b82811115611e18578251825591602001919060010190611dfd565b50611e24929150611e28565b5090565b5b80821115611e245760008155600101611e29565b80356001600160a01b038116811461074a57600080fd5b60008083601f840112611e65578081fd5b50813567ffffffffffffffff811115611e7c578182fd5b6020830191508360208260051b850101111561174057600080fd5b600082601f830112611ea7578081fd5b813567ffffffffffffffff80821115611ec257611ec261238a565b604051601f8301601f19908116603f01168101908282118183101715611eea57611eea61238a565b81604052838152866020858801011115611f02578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611f2f578081fd5b611d1b82611e3d565b60008060408385031215611f4a578081fd5b611f5383611e3d565b9150611f6160208401611e3d565b90509250929050565b600080600060608486031215611f7e578081fd5b611f8784611e3d565b9250611f9560208501611e3d565b9150604084013590509250925092565b60008060008060608587031215611fba578081fd5b611fc385611e3d565b9350602085013567ffffffffffffffff811115611fde578182fd5b611fea87828801611e54565b9598909750949560400135949350505050565b6000806040838503121561200f578182fd5b61201883611e3d565b946020939093013593505050565b60008060006040848603121561203a578283fd5b833567ffffffffffffffff811115612050578384fd5b61205c86828701611e54565b909790965060209590950135949350505050565b60008060408385031215612082578182fd5b823567ffffffffffffffff80821115612099578384fd5b6120a586838701611e97565b935060208501359150808211156120ba578283fd5b506120c785828601611e97565b9150509250929050565b6000602082840312156120e2578081fd5b5035919050565b6000602080835283518082850152825b81811015612115578581018301518582016040015282016120f9565b818111156121265783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686040820152691a5b19481c185d5cd95960b21b606082015260800190565b600082198211156122a5576122a561235e565b500190565b6000826122b9576122b9612374565b500490565b60008160001904831182151516156122d8576122d861235e565b500290565b6000828210156122ef576122ef61235e565b500390565b600181811c9082168061230857607f821691505b6020821081141561232957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123435761234361235e565b5060010190565b60008261235957612359612374565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c6995e4d25865b0a8880fcbdd63922bcdce15fa1ed8b188f73ec3115854d7ad664736f6c63430008030033
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
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.