ERC-20
DeFi
Overview
Max Total Supply
250,000 BLOOM
Holders
402 (0.00%)
Market
Price
$236.49 @ 0.071061 ETH (-2.71%)
Onchain Market Cap
$59,122,295.58
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000003150603787685 BLOOMValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BLOOMToken
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-11 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => 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 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 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal virtual { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: contracts/BLOOM.sol pragma solidity ^0.8.20; contract BLOOMToken is ERC20, Ownable(msg.sender) { mapping(address => bool) public blacklisted; mapping(address => uint256) public lastTransactionTime; // 54686973 // Event for logging blacklist updates event BlacklistUpdated(address indexed _address, bool _isBlacklisted); uint256 public transactionDelaySeconds; constructor() ERC20("BLOOM", "BLOOM") { _mint(msg.sender, 250000 * 10**decimals()); transactionDelaySeconds = 0; // Default delay is 0 seconds } // 2050726f6a65637420686173206265656e20637265617465 // Allows the owner to update the transaction delay function updateTransactionDelay(uint256 _delaySeconds) external onlyOwner { require(_delaySeconds <= 30, "BLOOM: Transaction delay cannot exceed 30 seconds"); transactionDelaySeconds = _delaySeconds; } // 6420696e2073657276696365206f662074686520457465 // Allows the owner to blacklist addresses function updateBlacklist(address _address, bool _isBlacklisted) external onlyOwner { blacklisted[_address] = _isBlacklisted; emit BlacklistUpdated(_address, _isBlacklisted); } // 726e616c204c6f766520696e20616c6c206265696e6773 // Overriding the _transfer function to include our custom logic function _transfer(address from, address to, uint256 amount) internal override { // Check if the sender or receiver is blacklisted require(!blacklisted[from] && !blacklisted[to], "BLOOM: Blacklisted address"); // Check if the transaction delay has passed for the sender require(block.timestamp >= lastTransactionTime[from] + transactionDelaySeconds, "BLOOM: Please wait before making another transaction"); // Update the last transaction time for the sender lastTransactionTime[from] = block.timestamp; // Call the original _transfer function super._transfer(from, to, amount); } } // ::::::::. ::: // :::::.::::: ::: // :::: :::: ::: :::::: ::::::: :::::::: ::::: // :::: ::::: ::: :::::::::: :::::::::: ::::::::::::::: // :::: :::::: ::: ::: ::::::: :::::::: :::: ::: // :::: .::: ::: ::: ::::::: :::::::: :::: ::: // :::::: ::::::::::. ::::::::::::::: :::::::::: :::: :::: ::: // :::::::::: ::::::. .:::: :::::: :::::: .::: :::: ::: // :::: :::: ::: :.. // ::: ::::: ::::::::: :::::::: ::::::::: :::::::::::: // ::: ::::: :::...:::: .::::: ::: :::::::::.: // ::: :::.:::::::::::::::::::: ::: :::: :::::::: // ::::::::::: ::::::::: ::: :::: ::: :::: .:..:::: // :::::::: :::::::: .::::::::::::: ::::.::::::: // 34 73 78 32 77 65 84 72 32 87 69 32 84 82 85 83 84 34
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTransactionTime","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":[],"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":[],"name":"transactionDelaySeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_delaySeconds","type":"uint256"}],"name":"updateTransactionDelay","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b50336040518060400160405280600581526020017f424c4f4f4d0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f424c4f4f4d000000000000000000000000000000000000000000000000000000815250816003908161008c9190610705565b50806004908161009c9190610705565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101069190610813565b60405180910390fd5b61011e8161016260201b60201c565b506101563361013161022560201b60201c565b600a61013d9190610994565b6203d09061014b91906109de565b61022d60201b60201c565b5f600881905550610aaf565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361029d575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102949190610813565b60405180910390fd5b6102ae5f83836102b260201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610302578060025f8282546102f69190610a1f565b925050819055506103d0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561038b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161038293929190610a61565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610417578060025f8282540392505081905550610461565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104be9190610a96565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061054657607f821691505b60208210810361055957610558610502565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610580565b6105c58683610580565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106096106046105ff846105dd565b6105e6565b6105dd565b9050919050565b5f819050919050565b610622836105ef565b61063661062e82610610565b84845461058c565b825550505050565b5f90565b61064a61063e565b610655818484610619565b505050565b5b818110156106785761066d5f82610642565b60018101905061065b565b5050565b601f8211156106bd5761068e8161055f565b61069784610571565b810160208510156106a6578190505b6106ba6106b285610571565b83018261065a565b50505b505050565b5f82821c905092915050565b5f6106dd5f19846008026106c2565b1980831691505092915050565b5f6106f583836106ce565b9150826002028217905092915050565b61070e826104cb565b67ffffffffffffffff811115610727576107266104d5565b5b610731825461052f565b61073c82828561067c565b5f60209050601f83116001811461076d575f841561075b578287015190505b61076585826106ea565b8655506107cc565b601f19841661077b8661055f565b5f5b828110156107a25784890151825560018201915060208501945060208101905061077d565b868310156107bf57848901516107bb601f8916826106ce565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107fd826107d4565b9050919050565b61080d816107f3565b82525050565b5f6020820190506108265f830184610804565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156108ae5780860481111561088a5761088961082c565b5b60018516156108995780820291505b80810290506108a785610859565b945061086e565b94509492505050565b5f826108c65760019050610981565b816108d3575f9050610981565b81600181146108e957600281146108f357610922565b6001915050610981565b60ff8411156109055761090461082c565b5b8360020a91508482111561091c5761091b61082c565b5b50610981565b5060208310610133831016604e8410600b84101617156109575782820a9050838111156109525761095161082c565b5b610981565b6109648484846001610865565b9250905081840481111561097b5761097a61082c565b5b81810290505b9392505050565b5f60ff82169050919050565b5f61099e826105dd565b91506109a983610988565b92506109d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846108b7565b905092915050565b5f6109e8826105dd565b91506109f3836105dd565b9250828202610a01816105dd565b91508282048414831517610a1857610a1761082c565b5b5092915050565b5f610a29826105dd565b9150610a34836105dd565b9250828201905080821115610a4c57610a4b61082c565b5b92915050565b610a5b816105dd565b82525050565b5f606082019050610a745f830186610804565b610a816020830185610a52565b610a8e6040830184610a52565b949350505050565b5f602082019050610aa95f830184610a52565b92915050565b61166b80610abc5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a9059cbb1161006f578063a9059cbb14610293578063dbac26e9146102c3578063dd62ed3e146102f3578063e75b207314610323578063f2fde38b1461035357610109565b8063715018a6146102315780638da5cb5b1461023b5780639155e0831461025957806395d89b411461027557610109565b8063313ce567116100dc578063313ce567146101a957806360e99821146101c75780636512bc80146101e357806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036f565b60405161012291906110cd565b60405180910390f35b6101456004803603810190610140919061117e565b6103ff565b60405161015291906111d6565b60405180910390f35b610163610421565b60405161017091906111fe565b60405180910390f35b610193600480360381019061018e9190611217565b61042a565b6040516101a091906111d6565b60405180910390f35b6101b1610458565b6040516101be9190611282565b60405180910390f35b6101e160048036038101906101dc919061129b565b610460565b005b6101eb6104b6565b6040516101f891906111fe565b60405180910390f35b61021b600480360381019061021691906112c6565b6104bc565b60405161022891906111fe565b60405180910390f35b610239610501565b005b610243610514565b6040516102509190611300565b60405180910390f35b610273600480360381019061026e9190611343565b61053c565b005b61027d6105ea565b60405161028a91906110cd565b60405180910390f35b6102ad60048036038101906102a8919061117e565b61067a565b6040516102ba91906111d6565b60405180910390f35b6102dd60048036038101906102d891906112c6565b61069c565b6040516102ea91906111d6565b60405180910390f35b61030d60048036038101906103089190611381565b6106b9565b60405161031a91906111fe565b60405180910390f35b61033d600480360381019061033891906112c6565b61073b565b60405161034a91906111fe565b60405180910390f35b61036d600480360381019061036891906112c6565b610750565b005b60606003805461037e906113ec565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa906113ec565b80156103f55780601f106103cc576101008083540402835291602001916103f5565b820191905f5260205f20905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b5f806104096107d4565b90506104168185856107db565b600191505092915050565b5f600254905090565b5f806104346107d4565b90506104418582856107ed565b61044c85858561087f565b60019150509392505050565b5f6012905090565b610468610a3b565b601e8111156104ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a39061148c565b60405180910390fd5b8060088190555050565b60085481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610509610a3b565b6105125f610ac2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610544610a3b565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac826040516105de91906111d6565b60405180910390a25050565b6060600480546105f9906113ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610625906113ec565b80156106705780601f1061064757610100808354040283529160200191610670565b820191905f5260205f20905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b5f806106846107d4565b905061069181858561087f565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6007602052805f5260405f205f915090505481565b610758610a3b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c8575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107bf9190611300565b60405180910390fd5b6107d181610ac2565b50565b5f33905090565b6107e88383836001610b85565b505050565b5f6107f884846106b9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610879578181101561086a578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610861939291906114aa565b60405180910390fd5b61087884848484035f610b85565b5b50505050565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561091d575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390611529565b60405180910390fd5b60085460075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109a79190611574565b4210156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611617565b60405180910390fd5b4260075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610a36838383610d54565b505050565b610a436107d4565b73ffffffffffffffffffffffffffffffffffffffff16610a61610514565b73ffffffffffffffffffffffffffffffffffffffff1614610ac057610a846107d4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ab79190611300565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610bf5575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610bec9190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c65575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610c5c9190611300565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610d4e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d4591906111fe565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc4575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610dbb9190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e34575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e2b9190611300565b60405180910390fd5b610e3f838383610e44565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e94578060025f828254610e889190611574565b92505081905550610f62565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f1d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f14939291906114aa565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa9578060025f8282540392505081905550610ff3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161105091906111fe565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61109f8261105d565b6110a98185611067565b93506110b9818560208601611077565b6110c281611085565b840191505092915050565b5f6020820190508181035f8301526110e58184611095565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61111a826110f1565b9050919050565b61112a81611110565b8114611134575f80fd5b50565b5f8135905061114581611121565b92915050565b5f819050919050565b61115d8161114b565b8114611167575f80fd5b50565b5f8135905061117881611154565b92915050565b5f8060408385031215611194576111936110ed565b5b5f6111a185828601611137565b92505060206111b28582860161116a565b9150509250929050565b5f8115159050919050565b6111d0816111bc565b82525050565b5f6020820190506111e95f8301846111c7565b92915050565b6111f88161114b565b82525050565b5f6020820190506112115f8301846111ef565b92915050565b5f805f6060848603121561122e5761122d6110ed565b5b5f61123b86828701611137565b935050602061124c86828701611137565b925050604061125d8682870161116a565b9150509250925092565b5f60ff82169050919050565b61127c81611267565b82525050565b5f6020820190506112955f830184611273565b92915050565b5f602082840312156112b0576112af6110ed565b5b5f6112bd8482850161116a565b91505092915050565b5f602082840312156112db576112da6110ed565b5b5f6112e884828501611137565b91505092915050565b6112fa81611110565b82525050565b5f6020820190506113135f8301846112f1565b92915050565b611322816111bc565b811461132c575f80fd5b50565b5f8135905061133d81611319565b92915050565b5f8060408385031215611359576113586110ed565b5b5f61136685828601611137565b92505060206113778582860161132f565b9150509250929050565b5f8060408385031215611397576113966110ed565b5b5f6113a485828601611137565b92505060206113b585828601611137565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061140357607f821691505b602082108103611416576114156113bf565b5b50919050565b7f424c4f4f4d3a205472616e73616374696f6e2064656c61792063616e6e6f74205f8201527f657863656564203330207365636f6e6473000000000000000000000000000000602082015250565b5f611476603183611067565b91506114818261141c565b604082019050919050565b5f6020820190508181035f8301526114a38161146a565b9050919050565b5f6060820190506114bd5f8301866112f1565b6114ca60208301856111ef565b6114d760408301846111ef565b949350505050565b7f424c4f4f4d3a20426c61636b6c697374656420616464726573730000000000005f82015250565b5f611513601a83611067565b915061151e826114df565b602082019050919050565b5f6020820190508181035f83015261154081611507565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61157e8261114b565b91506115898361114b565b92508282019050808211156115a1576115a0611547565b5b92915050565b7f424c4f4f4d3a20506c656173652077616974206265666f7265206d616b696e675f8201527f20616e6f74686572207472616e73616374696f6e000000000000000000000000602082015250565b5f611601603483611067565b915061160c826115a7565b604082019050919050565b5f6020820190508181035f83015261162e816115f5565b905091905056fea26469706673582212204adeb33c645cbf2779f59d8374d750fd94ec2392139776357db76abc0a9f7f4864736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a9059cbb1161006f578063a9059cbb14610293578063dbac26e9146102c3578063dd62ed3e146102f3578063e75b207314610323578063f2fde38b1461035357610109565b8063715018a6146102315780638da5cb5b1461023b5780639155e0831461025957806395d89b411461027557610109565b8063313ce567116100dc578063313ce567146101a957806360e99821146101c75780636512bc80146101e357806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036f565b60405161012291906110cd565b60405180910390f35b6101456004803603810190610140919061117e565b6103ff565b60405161015291906111d6565b60405180910390f35b610163610421565b60405161017091906111fe565b60405180910390f35b610193600480360381019061018e9190611217565b61042a565b6040516101a091906111d6565b60405180910390f35b6101b1610458565b6040516101be9190611282565b60405180910390f35b6101e160048036038101906101dc919061129b565b610460565b005b6101eb6104b6565b6040516101f891906111fe565b60405180910390f35b61021b600480360381019061021691906112c6565b6104bc565b60405161022891906111fe565b60405180910390f35b610239610501565b005b610243610514565b6040516102509190611300565b60405180910390f35b610273600480360381019061026e9190611343565b61053c565b005b61027d6105ea565b60405161028a91906110cd565b60405180910390f35b6102ad60048036038101906102a8919061117e565b61067a565b6040516102ba91906111d6565b60405180910390f35b6102dd60048036038101906102d891906112c6565b61069c565b6040516102ea91906111d6565b60405180910390f35b61030d60048036038101906103089190611381565b6106b9565b60405161031a91906111fe565b60405180910390f35b61033d600480360381019061033891906112c6565b61073b565b60405161034a91906111fe565b60405180910390f35b61036d600480360381019061036891906112c6565b610750565b005b60606003805461037e906113ec565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa906113ec565b80156103f55780601f106103cc576101008083540402835291602001916103f5565b820191905f5260205f20905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b5f806104096107d4565b90506104168185856107db565b600191505092915050565b5f600254905090565b5f806104346107d4565b90506104418582856107ed565b61044c85858561087f565b60019150509392505050565b5f6012905090565b610468610a3b565b601e8111156104ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a39061148c565b60405180910390fd5b8060088190555050565b60085481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610509610a3b565b6105125f610ac2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610544610a3b565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac826040516105de91906111d6565b60405180910390a25050565b6060600480546105f9906113ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610625906113ec565b80156106705780601f1061064757610100808354040283529160200191610670565b820191905f5260205f20905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b5f806106846107d4565b905061069181858561087f565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6007602052805f5260405f205f915090505481565b610758610a3b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c8575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107bf9190611300565b60405180910390fd5b6107d181610ac2565b50565b5f33905090565b6107e88383836001610b85565b505050565b5f6107f884846106b9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610879578181101561086a578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610861939291906114aa565b60405180910390fd5b61087884848484035f610b85565b5b50505050565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561091d575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390611529565b60405180910390fd5b60085460075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109a79190611574565b4210156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611617565b60405180910390fd5b4260075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610a36838383610d54565b505050565b610a436107d4565b73ffffffffffffffffffffffffffffffffffffffff16610a61610514565b73ffffffffffffffffffffffffffffffffffffffff1614610ac057610a846107d4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ab79190611300565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610bf5575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610bec9190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c65575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610c5c9190611300565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610d4e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d4591906111fe565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc4575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610dbb9190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e34575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e2b9190611300565b60405180910390fd5b610e3f838383610e44565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e94578060025f828254610e889190611574565b92505081905550610f62565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f1d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f14939291906114aa565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa9578060025f8282540392505081905550610ff3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161105091906111fe565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61109f8261105d565b6110a98185611067565b93506110b9818560208601611077565b6110c281611085565b840191505092915050565b5f6020820190508181035f8301526110e58184611095565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61111a826110f1565b9050919050565b61112a81611110565b8114611134575f80fd5b50565b5f8135905061114581611121565b92915050565b5f819050919050565b61115d8161114b565b8114611167575f80fd5b50565b5f8135905061117881611154565b92915050565b5f8060408385031215611194576111936110ed565b5b5f6111a185828601611137565b92505060206111b28582860161116a565b9150509250929050565b5f8115159050919050565b6111d0816111bc565b82525050565b5f6020820190506111e95f8301846111c7565b92915050565b6111f88161114b565b82525050565b5f6020820190506112115f8301846111ef565b92915050565b5f805f6060848603121561122e5761122d6110ed565b5b5f61123b86828701611137565b935050602061124c86828701611137565b925050604061125d8682870161116a565b9150509250925092565b5f60ff82169050919050565b61127c81611267565b82525050565b5f6020820190506112955f830184611273565b92915050565b5f602082840312156112b0576112af6110ed565b5b5f6112bd8482850161116a565b91505092915050565b5f602082840312156112db576112da6110ed565b5b5f6112e884828501611137565b91505092915050565b6112fa81611110565b82525050565b5f6020820190506113135f8301846112f1565b92915050565b611322816111bc565b811461132c575f80fd5b50565b5f8135905061133d81611319565b92915050565b5f8060408385031215611359576113586110ed565b5b5f61136685828601611137565b92505060206113778582860161132f565b9150509250929050565b5f8060408385031215611397576113966110ed565b5b5f6113a485828601611137565b92505060206113b585828601611137565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061140357607f821691505b602082108103611416576114156113bf565b5b50919050565b7f424c4f4f4d3a205472616e73616374696f6e2064656c61792063616e6e6f74205f8201527f657863656564203330207365636f6e6473000000000000000000000000000000602082015250565b5f611476603183611067565b91506114818261141c565b604082019050919050565b5f6020820190508181035f8301526114a38161146a565b9050919050565b5f6060820190506114bd5f8301866112f1565b6114ca60208301856111ef565b6114d760408301846111ef565b949350505050565b7f424c4f4f4d3a20426c61636b6c697374656420616464726573730000000000005f82015250565b5f611513601a83611067565b915061151e826114df565b602082019050919050565b5f6020820190508181035f83015261154081611507565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61157e8261114b565b91506115898361114b565b92508282019050808211156115a1576115a0611547565b5b92915050565b7f424c4f4f4d3a20506c656173652077616974206265666f7265206d616b696e675f8201527f20616e6f74686572207472616e73616374696f6e000000000000000000000000602082015250565b5f611601603483611067565b915061160c826115a7565b604082019050919050565b5f6020820190508181035f83015261162e816115f5565b905091905056fea26469706673582212204adeb33c645cbf2779f59d8374d750fd94ec2392139776357db76abc0a9f7f4864736f6c63430008190033
Deployed Bytecode Sourcemap
25917:1962:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16513:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18806:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17615:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19574:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17466:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26556:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26224:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17777:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10126:103;;;:::i;:::-;;9451:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26887:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16723:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18100:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25974:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18345:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26024:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10384:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16513:91;16558:13;16591:5;16584:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16513:91;:::o;18806:190::-;18879:4;18896:13;18912:12;:10;:12::i;:::-;18896:28;;18935:31;18944:5;18951:7;18960:5;18935:8;:31::i;:::-;18984:4;18977:11;;;18806:190;;;;:::o;17615:99::-;17667:7;17694:12;;17687:19;;17615:99;:::o;19574:249::-;19661:4;19678:15;19696:12;:10;:12::i;:::-;19678:30;;19719:37;19735:4;19741:7;19750:5;19719:15;:37::i;:::-;19767:26;19777:4;19783:2;19787:5;19767:9;:26::i;:::-;19811:4;19804:11;;;19574:249;;;;;:::o;17466:84::-;17515:5;17540:2;17533:9;;17466:84;:::o;26556:224::-;9337:13;:11;:13::i;:::-;26666:2:::1;26649:13;:19;;26641:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;26759:13;26733:23;:39;;;;26556:224:::0;:::o;26224:38::-;;;;:::o;17777:118::-;17842:7;17869:9;:18;17879:7;17869:18;;;;;;;;;;;;;;;;17862:25;;17777:118;;;:::o;10126:103::-;9337:13;:11;:13::i;:::-;10191:30:::1;10218:1;10191:18;:30::i;:::-;10126:103::o:0;9451:87::-;9497:7;9524:6;;;;;;;;;;;9517:13;;9451:87;:::o;26887:198::-;9337:13;:11;:13::i;:::-;27005:14:::1;26981:11;:21;26993:8;26981:21;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;27052:8;27035:42;;;27062:14;27035:42;;;;;;:::i;:::-;;;;;;;;26887:198:::0;;:::o;16723:95::-;16770:13;16803:7;16796:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16723:95;:::o;18100:182::-;18169:4;18186:13;18202:12;:10;:12::i;:::-;18186:28;;18225:27;18235:5;18242:2;18246:5;18225:9;:27::i;:::-;18270:4;18263:11;;;18100:182;;;;:::o;25974:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;18345:142::-;18425:7;18452:11;:18;18464:5;18452:18;;;;;;;;;;;;;;;:27;18471:7;18452:27;;;;;;;;;;;;;;;;18445:34;;18345:142;;;;:::o;26024:54::-;;;;;;;;;;;;;;;;;:::o;10384:220::-;9337:13;:11;:13::i;:::-;10489:1:::1;10469:22;;:8;:22;;::::0;10465:93:::1;;10543:1;10515:31;;;;;;;;;;;:::i;:::-;;;;;;;;10465:93;10568:28;10587:8;10568:18;:28::i;:::-;10384:220:::0;:::o;7460:98::-;7513:7;7540:10;7533:17;;7460:98;:::o;23641:130::-;23726:37;23735:5;23742:7;23751:5;23758:4;23726:8;:37::i;:::-;23641:130;;;:::o;25357:487::-;25457:24;25484:25;25494:5;25501:7;25484:9;:25::i;:::-;25457:52;;25544:17;25524:16;:37;25520:317;;25601:5;25582:16;:24;25578:132;;;25661:7;25670:16;25688:5;25634:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25578:132;25753:57;25762:5;25769:7;25797:5;25778:16;:24;25804:5;25753:8;:57::i;:::-;25520:317;25446:398;25357:487;;;:::o;27214:662::-;27372:11;:17;27384:4;27372:17;;;;;;;;;;;;;;;;;;;;;;;;;27371:18;:38;;;;;27394:11;:15;27406:2;27394:15;;;;;;;;;;;;;;;;;;;;;;;;;27393:16;27371:38;27363:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;27577:23;;27549:19;:25;27569:4;27549:25;;;;;;;;;;;;;;;;:51;;;;:::i;:::-;27530:15;:70;;27522:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;27758:15;27730:19;:25;27750:4;27730:25;;;;;;;;;;;;;;;:43;;;;27835:33;27851:4;27857:2;27861:6;27835:15;:33::i;:::-;27214:662;;;:::o;9616:166::-;9687:12;:10;:12::i;:::-;9676:23;;:7;:5;:7::i;:::-;:23;;;9672:103;;9750:12;:10;:12::i;:::-;9723:40;;;;;;;;;;;:::i;:::-;;;;;;;;9672:103;9616:166::o;10764:191::-;10838:16;10857:6;;;;;;;;;;;10838:25;;10883:8;10874:6;;:17;;;;;;;;;;;;;;;;;;10938:8;10907:40;;10928:8;10907:40;;;;;;;;;;;;10827:128;10764:191;:::o;24622:443::-;24752:1;24735:19;;:5;:19;;;24731:91;;24807:1;24778:32;;;;;;;;;;;:::i;:::-;;;;;;;;24731:91;24855:1;24836:21;;:7;:21;;;24832:92;;24909:1;24881:31;;;;;;;;;;;:::i;:::-;;;;;;;;24832:92;24964:5;24934:11;:18;24946:5;24934:18;;;;;;;;;;;;;;;:27;24953:7;24934:27;;;;;;;;;;;;;;;:35;;;;24984:9;24980:78;;;25031:7;25015:31;;25024:5;25015:31;;;25040:5;25015:31;;;;;;:::i;:::-;;;;;;;;24980:78;24622:443;;;;:::o;20208:316::-;20316:1;20300:18;;:4;:18;;;20296:88;;20369:1;20342:30;;;;;;;;;;;:::i;:::-;;;;;;;;20296:88;20412:1;20398:16;;:2;:16;;;20394:88;;20467:1;20438:32;;;;;;;;;;;:::i;:::-;;;;;;;;20394:88;20492:24;20500:4;20506:2;20510:5;20492:7;:24::i;:::-;20208:316;;;:::o;20848:1135::-;20954:1;20938:18;;:4;:18;;;20934:552;;21092:5;21076:12;;:21;;;;;;;:::i;:::-;;;;;;;;20934:552;;;21130:19;21152:9;:15;21162:4;21152:15;;;;;;;;;;;;;;;;21130:37;;21200:5;21186:11;:19;21182:117;;;21258:4;21264:11;21277:5;21233:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21182:117;21454:5;21440:11;:19;21422:9;:15;21432:4;21422:15;;;;;;;;;;;;;;;:37;;;;21115:371;20934:552;21516:1;21502:16;;:2;:16;;;21498:435;;21684:5;21668:12;;:21;;;;;;;;;;;21498:435;;;21901:5;21884:9;:13;21894:2;21884:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21498:435;21965:2;21950:25;;21959:4;21950:25;;;21969:5;21950:25;;;;;;:::i;:::-;;;;;;;;20848:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:116::-;5838:21;5853:5;5838:21;:::i;:::-;5831:5;5828:32;5818:60;;5874:1;5871;5864:12;5818:60;5768:116;:::o;5890:133::-;5933:5;5971:6;5958:20;5949:29;;5987:30;6011:5;5987:30;:::i;:::-;5890:133;;;;:::o;6029:468::-;6094:6;6102;6151:2;6139:9;6130:7;6126:23;6122:32;6119:119;;;6157:79;;:::i;:::-;6119:119;6277:1;6302:53;6347:7;6338:6;6327:9;6323:22;6302:53;:::i;:::-;6292:63;;6248:117;6404:2;6430:50;6472:7;6463:6;6452:9;6448:22;6430:50;:::i;:::-;6420:60;;6375:115;6029:468;;;;;:::o;6503:474::-;6571:6;6579;6628:2;6616:9;6607:7;6603:23;6599:32;6596:119;;;6634:79;;:::i;:::-;6596:119;6754:1;6779:53;6824:7;6815:6;6804:9;6800:22;6779:53;:::i;:::-;6769:63;;6725:117;6881:2;6907:53;6952:7;6943:6;6932:9;6928:22;6907:53;:::i;:::-;6897:63;;6852:118;6503:474;;;;;:::o;6983:180::-;7031:77;7028:1;7021:88;7128:4;7125:1;7118:15;7152:4;7149:1;7142:15;7169:320;7213:6;7250:1;7244:4;7240:12;7230:22;;7297:1;7291:4;7287:12;7318:18;7308:81;;7374:4;7366:6;7362:17;7352:27;;7308:81;7436:2;7428:6;7425:14;7405:18;7402:38;7399:84;;7455:18;;:::i;:::-;7399:84;7220:269;7169:320;;;:::o;7495:236::-;7635:34;7631:1;7623:6;7619:14;7612:58;7704:19;7699:2;7691:6;7687:15;7680:44;7495:236;:::o;7737:366::-;7879:3;7900:67;7964:2;7959:3;7900:67;:::i;:::-;7893:74;;7976:93;8065:3;7976:93;:::i;:::-;8094:2;8089:3;8085:12;8078:19;;7737:366;;;:::o;8109:419::-;8275:4;8313:2;8302:9;8298:18;8290:26;;8362:9;8356:4;8352:20;8348:1;8337:9;8333:17;8326:47;8390:131;8516:4;8390:131;:::i;:::-;8382:139;;8109:419;;;:::o;8534:442::-;8683:4;8721:2;8710:9;8706:18;8698:26;;8734:71;8802:1;8791:9;8787:17;8778:6;8734:71;:::i;:::-;8815:72;8883:2;8872:9;8868:18;8859:6;8815:72;:::i;:::-;8897;8965:2;8954:9;8950:18;8941:6;8897:72;:::i;:::-;8534:442;;;;;;:::o;8982:176::-;9122:28;9118:1;9110:6;9106:14;9099:52;8982:176;:::o;9164:366::-;9306:3;9327:67;9391:2;9386:3;9327:67;:::i;:::-;9320:74;;9403:93;9492:3;9403:93;:::i;:::-;9521:2;9516:3;9512:12;9505:19;;9164:366;;;:::o;9536:419::-;9702:4;9740:2;9729:9;9725:18;9717:26;;9789:9;9783:4;9779:20;9775:1;9764:9;9760:17;9753:47;9817:131;9943:4;9817:131;:::i;:::-;9809:139;;9536:419;;;:::o;9961:180::-;10009:77;10006:1;9999:88;10106:4;10103:1;10096:15;10130:4;10127:1;10120:15;10147:191;10187:3;10206:20;10224:1;10206:20;:::i;:::-;10201:25;;10240:20;10258:1;10240:20;:::i;:::-;10235:25;;10283:1;10280;10276:9;10269:16;;10304:3;10301:1;10298:10;10295:36;;;10311:18;;:::i;:::-;10295:36;10147:191;;;;:::o;10344:239::-;10484:34;10480:1;10472:6;10468:14;10461:58;10553:22;10548:2;10540:6;10536:15;10529:47;10344:239;:::o;10589:366::-;10731:3;10752:67;10816:2;10811:3;10752:67;:::i;:::-;10745:74;;10828:93;10917:3;10828:93;:::i;:::-;10946:2;10941:3;10937:12;10930:19;;10589:366;;;:::o;10961:419::-;11127:4;11165:2;11154:9;11150:18;11142:26;;11214:9;11208:4;11204:20;11200:1;11189:9;11185:17;11178:47;11242:131;11368:4;11242:131;:::i;:::-;11234:139;;10961:419;;;:::o
Swarm Source
ipfs://4adeb33c645cbf2779f59d8374d750fd94ec2392139776357db76abc0a9f7f48
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.