ERC-20
Overview
Max Total Supply
498,634.555570740120922369 TIC
Holders
86
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,589.168988311935763629 TICValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Ticket
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 10 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import {ERC20, IERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /** * @title Ticket Token Contract * @dev This contract implements an ERC20 token named Ticket (TIC) with functionality * for managing minters who can create new tokens. */ contract Ticket is ERC20, Ownable { using EnumerableSet for EnumerableSet.AddressSet; // Set to hold addresses authorized to mint tokens EnumerableSet.AddressSet private _minters; // Event emitted when new tokens are minted event Minted(address indexed to, uint256 value); // Event emitted when a new minter is added event MinterAdded(address indexed addedMinters); // Event emitted when a minter is removed event MinterRemoved(address indexed removedMinters); // Error thrown when a mint operation is called by an unauthorized address error MintCallerNotMinter(address caller); // Error thrown when the mint amount is zero error MintAmountZero(); /** * @dev Constructor to initialize the Ticket contract and set authorized minters. * @param minters_ An array of addresses to be authorized as minters. */ constructor( address[] memory minters_ ) ERC20("Ticket", "TIC") { for (uint256 i = 0; i < minters_.length; i++) { _minters.add(minters_[i]); // Add each minter to the set } } /** * @dev Allows authorized minters to create new tokens. * @param to The address to which the newly minted tokens will be sent. * @param amount The amount of tokens to mint. * @return bool Returns true if the minting was successful. * @notice The caller must be an authorized minter and the amount must be greater than zero. */ function mint(address to, uint256 amount) external returns (bool) { if (!_minters.contains(msg.sender)) revert MintCallerNotMinter(msg.sender); // Check for valid caller if (amount == 0) revert MintAmountZero(); // Check for zero mint amount _mint(to, amount); // Mint the specified amount to the `to` address emit Minted(to, amount); // Emit minting event return true; // Indicate successful minting } /** * @dev Adds a list of addresses as authorized minters. * @param minters_ An array of addresses to be added as minters. * @return bool Returns true if the operation was successful. * @notice Only the contract owner can call this function. * Emits a {MinterAdded} event for each address successfully added. */ function addMinters( address[] memory minters_ ) external onlyOwner returns (bool) { for (uint256 i = 0; i < minters_.length; i++) { address minter_ = minters_[i]; if (_minters.add(minter_)) emit MinterAdded(minter_); // Emit event if minter is added } return true; // Indicate successful addition of minters } /** * @dev Removes a list of addresses from the authorized minters. * @param minters_ An array of addresses to be removed as minters. * @return bool Returns true if the operation was successful. * @notice Only the contract owner can call this function. * Emits a {MinterRemoved} event for each address successfully removed. */ function removeMinters( address[] memory minters_ ) external onlyOwner returns (bool) { for (uint256 i = 0; i < minters_.length; i++) { address minter_ = minters_[i]; if (_minters.remove(minter_)) emit MinterRemoved(minter_); // Emit event if minter is removed } return true; // Indicate successful removal of minters } /** * @dev Allows the owner to recover foreign ERC20 tokens sent to this contract. * @param token_ The address of the ERC20 token contract to recover. * @param amount_ The amount of tokens to recover. * @param to_ The address to which the recovered tokens will be sent. * @return bool Returns true if the operation was successful. * @notice Only the contract owner can call this function. */ function foreignTokensRecover( IERC20 token_, uint256 amount_, address to_ ) external onlyOwner returns (bool) { token_.transfer(to_, amount_); // Transfer the specified amount of tokens to the given address return true; // Indicate successful recovery of tokens } /** * @dev Returns the count of authorized minters. * @return uint256 The number of minters. */ function mintersCount() external view returns (uint256) { return _minters.length(); } /** * @dev Returns the address of a minter at a specific index. * @param index The index of the minter to retrieve. * @return address The address of the minter. * @notice Will revert if the index is out of bounds. */ function minters(uint256 index) external view returns (address) { return _minters.at(index); } /** * @dev Checks if a specific address is an authorized minter. * @param minter The address to check. * @return bool Returns true if the address is a minter, false otherwise. */ function mintersContains(address minter) external view returns (bool) { return _minters.contains(minter); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 10 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"minters_","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MintAmountZero","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"MintCallerNotMinter","type":"error"},{"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addedMinters","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"removedMinters","type":"address"}],"name":"MinterRemoved","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":"minters_","type":"address[]"}],"name":"addMinters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"contract IERC20","name":"token_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"foreignTokensRecover","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"mintersContains","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintersCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"minters_","type":"address[]"}],"name":"removeMinters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052346200041057620015bf803803806200001d8162000435565b9283398101906020918282820312620004105781516001600160401b039283821162000410570190601f938185840112156200041057825191848311620002f15760059383851b9083806200007481850162000435565b80978152019282010192831162000410578301905b828210620003ef575050506200009e62000415565b936006855265151a58dad95d60d21b82860152620000bb62000415565b9060038083526254494360e81b848401528651828111620002f15781546001988982811c92168015620003e4575b87831014620003ce57818b8493116200037a575b5086908b8311600114620003135760009262000307575b505060001982841b1c191690881b1781555b8251918211620002f15760049283548881811c91168015620002e6575b86821014620002d15789811162000288575b50849883116001146200021b5790879883926000936200020f575b505082881b92600019911b1c19161790555b8254336001600160a01b03198216811785556001600160a01b03939184167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36000945b620001df575b6040516110c39081620004fc8239f35b8051851015620002095785856200020085858499891b86010151166200045b565b500194620001c9565b620001cf565b01519150388062000170565b9197601f1989169284600052856000209360005b818110620002725750918a93918a9b8b96941062000257575b50505050811b01905562000182565b01519060f884600019921b161c191690553880808062000248565b828401518655948a01949287019287016200022f565b84600052856000208a8086018a1c820192888710620002c7575b01891c019089905b828110620002ba57505062000155565b60008155018990620002aa565b92508192620002a2565b602285634e487b7160e01b6000525260246000fd5b90607f169062000143565b634e487b7160e01b600052604160045260246000fd5b01519050388062000114565b908a9350601f1983169185600052886000209260005b8a8282106200036357505084116200034a575b505050811b01815562000126565b015160001983861b60f8161c191690553880806200033c565b8385015186558e9790950194938401930162000329565b90915083600052866000208b8085018b1c820192898610620003c4575b918c9186959493018c1c01915b828110620003b4575050620000fd565b600081558594508c9101620003a4565b9250819262000397565b634e487b7160e01b600052602260045260246000fd5b91607f1691620000e9565b81516001600160a01b03811681036200041057815290830190830162000089565b600080fd5b60408051919082016001600160401b03811183821017620002f157604052565b6040519190601f01601f191682016001600160401b03811183821017620002f157604052565b600081815260076020526040812054620004f65760065468010000000000000000811015620004e2576001810180600655811015620004ce577ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0182905560065491815260076020526040902055600190565b634e487b7160e01b82526032600452602482fd5b634e487b7160e01b82526041600452602482fd5b90509056fe6080604081815260048036101561001557600080fd5b600092833560e01c90816306fdde03146109ab57508063095ea7b31461098157806312891240146108c357806318160ddd146108a457806323b872dd146107da578063313ce567146107be578063395093511461076e57806340c10f191461064b5780635fc1964f146105d15780636f48dbc41461058b57806370a0823114610554578063715018a61461050957806371e2a657146104855780638623ec7b146104165780638da5cb5b146103ed57806395d89b4114610304578063a457c2d71461025d578063a9059cbb1461022c578063dd62ed3e146101e3578063e0993a7e146101c05763f2fde38b1461010a57600080fd5b346101bc5760203660031901126101bc57610123610acc565b9061012c610d17565b6001600160a01b0391821692831561016a575050600580546001600160a01b0319811684179091551660008051602061104e8339815191528380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b5050346101df57816003193601126101df576020906006549051908152f35b5080fd5b5050346101df57806003193601126101df5780602092610201610acc565b610209610ae7565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5050346101df57806003193601126101df5760209061025661024c610acc565b6024359033610d6f565b5160018152f35b508234610301578260031936011261030157610277610acc565b918360243592338152600160205281812060018060a01b03861682526020522054908282106102b0576020856102568585038733610c15565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b509190346101df57816003193601126101df5780519180938054916001908360011c92600185169485156103e3575b60209586861081146103d0578589529081156103ac5750600114610371575b61036d8787610363828c0383610afd565b5191829182610a83565b0390f35b9080949750528583205b828410610399575050508261036d9461036392820101943880610352565b805486850188015292860192810161037b565b60ff19168887015250505050151560051b83010192506103638261036d3880610352565b634e487b7160e01b845260228352602484fd5b93607f1693610333565b5050346101df57816003193601126101df5760055490516001600160a01b039091168152602090f35b5091346103015760203660031901126103015782356006548110156104725760069091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f015490516001600160a01b03909116815260209150f35b634e487b7160e01b825260328452602482fd5b8284346103015761049536610b36565b9061049e610d17565b805b82518110156104ff576001906001600160a01b036104be8286610beb565b51166104c981610fe7565b6104d5575b50016104a0565b7f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f68480a2856104ce565b6020845160018152f35b8334610301578060031936011261030157610522610d17565b600580546001600160a01b0319811690915581906001600160a01b031660008051602061104e8339815191528280a380f35b5050346101df5760203660031901126101df5760209181906001600160a01b0361057c610acc565b16815280845220549051908152f35b5050346101df5760203660031901126101df576020906105c86001600160a01b036105b4610acc565b166000526007602052604060002054151590565b90519015158152f35b828434610301576105e136610b36565b906105ea610d17565b805b82518110156104ff576001906001600160a01b0361060a8286610beb565b511661061581610ee6565b610621575b50016105ec565b7fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb666928480a28561061a565b509134610301578160031936011261030157610665610acc565b60243590610680336000526007602052604060002054151590565b15610758578115610748576001600160a01b03169182156107055760209450818386926106d07f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe95600254610bc8565b60025581815280845286812083815401905560008051602061106e833981519152848851858152a38451908152a25160018152f35b835162461bcd60e51b8152602081870152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b50505051631cebf66f60e11b8152fd5b835163c6bebdcd60e01b81523381870152602490fd5b5050346101df57806003193601126101df576102566020926107b7610791610acc565b338352600186528483206001600160a01b03821684528652918490205460243590610bc8565b9033610c15565b5050346101df57816003193601126101df576020905160128152f35b508290346101df5760603660031901126101df576107f6610acc565b6107fe610ae7565b91846044359460018060a01b038416815260016020528181203382526020522054906000198203610838575b602086610256878787610d6f565b84821061086157509183916108566020969561025695033383610c15565b91939481935061082a565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346101df57816003193601126101df576020906002549051908152f35b50346101bc5760603660031901126101bc5780356001600160a01b03818116929183900361097d5760443590811680910361097d576044602092610905610d17565b868651958694859363a9059cbb60e01b855284015260243560248401525af1801561097157610939575b6020825160018152f35b6020813d602011610969575b8161095260209383610afd565b810103126101bc5751801515036101df578161092f565b3d9150610945565b505051903d90823e3d90fd5b8480fd5b5050346101df57806003193601126101df576020906102566109a1610acc565b6024359033610c15565b9291905034610a7f5783600319360112610a7f57600354600181811c9186908281168015610a75575b6020958686108214610a625750848852908115610a405750600114610a05575b61036d8686610363828b0383610afd565b929550600383528583205b828410610a2d575050508261036d946103639282010194386109f4565b8054868501880152928601928101610a10565b60ff191687860152505050151560051b83010192506103638261036d386109f4565b634e487b7160e01b845260229052602483fd5b93607f16936109d4565b8380fd5b6020808252825181830181905290939260005b828110610ab857505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610a96565b600435906001600160a01b0382168203610ae257565b600080fd5b602435906001600160a01b0382168203610ae257565b601f909101601f19168101906001600160401b03821190821017610b2057604052565b634e487b7160e01b600052604160045260246000fd5b602080600319830112610ae2576001600160401b0391600435838111610ae25781602382011215610ae2578060040135938411610b20578360051b9060405194610b836020840187610afd565b855260246020860192820101928311610ae257602401905b828210610ba9575050505090565b81356001600160a01b0381168103610ae2578152908301908301610b9b565b91908201809211610bd557565b634e487b7160e01b600052601160045260246000fd5b8051821015610bff5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03908116918215610cc65716918215610c765760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b6005546001600160a01b03163303610d2b57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b03908116918215610e785716918215610e2757600082815280602052604081205491808310610dd3576040828260008051602061106e833981519152958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b600654811015610bff57600660005260206000200190600090565b6000818152600760205260408120549091908015610fe25760001990808201818111610fce5760065490838201918211610fba57808203610f6f575b5050506006548015610f5b57810190610f3a82610ecb565b909182549160031b1b19169055600655815260076020526040812055600190565b634e487b7160e01b84526031600452602484fd5b610fa4610f7e610f8d93610ecb565b90549060031b1c928392610ecb565b819391549060031b91821b91600019901b19161790565b9055845260076020526040842055388080610f22565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b85526011600452602485fd5b505090565b60008181526007602052604081205461104857600654600160401b811015611034579082611020610f8d84600160409601600655610ecb565b905560065492815260076020522055600190565b634e487b7160e01b82526041600452602482fd5b90509056fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c400c2611414744eb29dc63986a1044af37511b835d1320385b4576c93a0436764736f6c6343000818003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604081815260048036101561001557600080fd5b600092833560e01c90816306fdde03146109ab57508063095ea7b31461098157806312891240146108c357806318160ddd146108a457806323b872dd146107da578063313ce567146107be578063395093511461076e57806340c10f191461064b5780635fc1964f146105d15780636f48dbc41461058b57806370a0823114610554578063715018a61461050957806371e2a657146104855780638623ec7b146104165780638da5cb5b146103ed57806395d89b4114610304578063a457c2d71461025d578063a9059cbb1461022c578063dd62ed3e146101e3578063e0993a7e146101c05763f2fde38b1461010a57600080fd5b346101bc5760203660031901126101bc57610123610acc565b9061012c610d17565b6001600160a01b0391821692831561016a575050600580546001600160a01b0319811684179091551660008051602061104e8339815191528380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b5050346101df57816003193601126101df576020906006549051908152f35b5080fd5b5050346101df57806003193601126101df5780602092610201610acc565b610209610ae7565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5050346101df57806003193601126101df5760209061025661024c610acc565b6024359033610d6f565b5160018152f35b508234610301578260031936011261030157610277610acc565b918360243592338152600160205281812060018060a01b03861682526020522054908282106102b0576020856102568585038733610c15565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b509190346101df57816003193601126101df5780519180938054916001908360011c92600185169485156103e3575b60209586861081146103d0578589529081156103ac5750600114610371575b61036d8787610363828c0383610afd565b5191829182610a83565b0390f35b9080949750528583205b828410610399575050508261036d9461036392820101943880610352565b805486850188015292860192810161037b565b60ff19168887015250505050151560051b83010192506103638261036d3880610352565b634e487b7160e01b845260228352602484fd5b93607f1693610333565b5050346101df57816003193601126101df5760055490516001600160a01b039091168152602090f35b5091346103015760203660031901126103015782356006548110156104725760069091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f015490516001600160a01b03909116815260209150f35b634e487b7160e01b825260328452602482fd5b8284346103015761049536610b36565b9061049e610d17565b805b82518110156104ff576001906001600160a01b036104be8286610beb565b51166104c981610fe7565b6104d5575b50016104a0565b7f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f68480a2856104ce565b6020845160018152f35b8334610301578060031936011261030157610522610d17565b600580546001600160a01b0319811690915581906001600160a01b031660008051602061104e8339815191528280a380f35b5050346101df5760203660031901126101df5760209181906001600160a01b0361057c610acc565b16815280845220549051908152f35b5050346101df5760203660031901126101df576020906105c86001600160a01b036105b4610acc565b166000526007602052604060002054151590565b90519015158152f35b828434610301576105e136610b36565b906105ea610d17565b805b82518110156104ff576001906001600160a01b0361060a8286610beb565b511661061581610ee6565b610621575b50016105ec565b7fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb666928480a28561061a565b509134610301578160031936011261030157610665610acc565b60243590610680336000526007602052604060002054151590565b15610758578115610748576001600160a01b03169182156107055760209450818386926106d07f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe95600254610bc8565b60025581815280845286812083815401905560008051602061106e833981519152848851858152a38451908152a25160018152f35b835162461bcd60e51b8152602081870152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b50505051631cebf66f60e11b8152fd5b835163c6bebdcd60e01b81523381870152602490fd5b5050346101df57806003193601126101df576102566020926107b7610791610acc565b338352600186528483206001600160a01b03821684528652918490205460243590610bc8565b9033610c15565b5050346101df57816003193601126101df576020905160128152f35b508290346101df5760603660031901126101df576107f6610acc565b6107fe610ae7565b91846044359460018060a01b038416815260016020528181203382526020522054906000198203610838575b602086610256878787610d6f565b84821061086157509183916108566020969561025695033383610c15565b91939481935061082a565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346101df57816003193601126101df576020906002549051908152f35b50346101bc5760603660031901126101bc5780356001600160a01b03818116929183900361097d5760443590811680910361097d576044602092610905610d17565b868651958694859363a9059cbb60e01b855284015260243560248401525af1801561097157610939575b6020825160018152f35b6020813d602011610969575b8161095260209383610afd565b810103126101bc5751801515036101df578161092f565b3d9150610945565b505051903d90823e3d90fd5b8480fd5b5050346101df57806003193601126101df576020906102566109a1610acc565b6024359033610c15565b9291905034610a7f5783600319360112610a7f57600354600181811c9186908281168015610a75575b6020958686108214610a625750848852908115610a405750600114610a05575b61036d8686610363828b0383610afd565b929550600383528583205b828410610a2d575050508261036d946103639282010194386109f4565b8054868501880152928601928101610a10565b60ff191687860152505050151560051b83010192506103638261036d386109f4565b634e487b7160e01b845260229052602483fd5b93607f16936109d4565b8380fd5b6020808252825181830181905290939260005b828110610ab857505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610a96565b600435906001600160a01b0382168203610ae257565b600080fd5b602435906001600160a01b0382168203610ae257565b601f909101601f19168101906001600160401b03821190821017610b2057604052565b634e487b7160e01b600052604160045260246000fd5b602080600319830112610ae2576001600160401b0391600435838111610ae25781602382011215610ae2578060040135938411610b20578360051b9060405194610b836020840187610afd565b855260246020860192820101928311610ae257602401905b828210610ba9575050505090565b81356001600160a01b0381168103610ae2578152908301908301610b9b565b91908201809211610bd557565b634e487b7160e01b600052601160045260246000fd5b8051821015610bff5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03908116918215610cc65716918215610c765760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b6005546001600160a01b03163303610d2b57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b03908116918215610e785716918215610e2757600082815280602052604081205491808310610dd3576040828260008051602061106e833981519152958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b600654811015610bff57600660005260206000200190600090565b6000818152600760205260408120549091908015610fe25760001990808201818111610fce5760065490838201918211610fba57808203610f6f575b5050506006548015610f5b57810190610f3a82610ecb565b909182549160031b1b19169055600655815260076020526040812055600190565b634e487b7160e01b84526031600452602484fd5b610fa4610f7e610f8d93610ecb565b90549060031b1c928392610ecb565b819391549060031b91821b91600019901b19161790565b9055845260076020526040842055388080610f22565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b85526011600452602485fd5b505090565b60008181526007602052604081205461104857600654600160401b811015611034579082611020610f8d84600160409601600655610ecb565b905560065492815260076020522055600190565b634e487b7160e01b82526041600452602482fd5b90509056fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220c400c2611414744eb29dc63986a1044af37511b835d1320385b4576c93a0436764736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.