ERC-20
Overview
Max Total Supply
99,999,999.943276718792160196 HDT
Holders
8
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
HumbleDonationsToken
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// HumbleDonationsToken.solpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol";contract HumbleDonationsToken isERC20,ERC20Burnable,ERC20Pausable,Ownable,ERC20Permit,ERC20Votes{// Max supply of the tokenuint256 public immutable maxSupply = 100000000 * 10 ** decimals();constructor(address initialOwner
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../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.** 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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/IVotes.sol)pragma solidity ^0.8.20;/*** @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.*/interface IVotes {/*** @dev The signature used has expired.*/error VotesExpiredSignature(uint256 expiry);/*** @dev Emitted when an account changes their delegate.*/event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);/*** @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.*/event DelegateVotesChanged(address indexed delegate, uint256 previousVotes, uint256 newVotes);/*** @dev Returns the current amount of votes that `account` has.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/Votes.sol)pragma solidity ^0.8.20;import {IERC5805} from "../../interfaces/IERC5805.sol";import {Context} from "../../utils/Context.sol";import {Nonces} from "../../utils/Nonces.sol";import {EIP712} from "../../utils/cryptography/EIP712.sol";import {Checkpoints} from "../../utils/structs/Checkpoints.sol";import {SafeCast} from "../../utils/math/SafeCast.sol";import {ECDSA} from "../../utils/cryptography/ECDSA.sol";import {Time} from "../../utils/types/Time.sol";/*** @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be* transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of* "representative" that will pool delegated voting units from different accounts and can then use it to vote in* decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to* delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative.** This contract is often combined with a token contract such that voting units correspond to token units. For an* example, see {ERC721Votes}.** The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed* at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the* cost of this history tracking optional.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// 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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)pragma solidity ^0.8.20;interface IERC5267 {/*** @dev MAY be emitted to signal that the domain could have changed.*/event EIP712DomainChanged();/*** @dev returns the fields and values that describe the domain separator used by this contract for EIP-712* signature.*/function eip712Domain()externalviewreturns (bytes1 fields,string memory name,string memory version,uint256 chainId,address verifyingContract,bytes32 salt,uint256[] memory extensions
123456789// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5805.sol)pragma solidity ^0.8.20;import {IVotes} from "../governance/utils/IVotes.sol";import {IERC6372} from "./IERC6372.sol";interface IERC5805 is IERC6372, IVotes {}
1234567891011121314151617// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC6372.sol)pragma solidity ^0.8.20;interface IERC6372 {/*** @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).*/function clock() external view returns (uint48);/*** @dev Description of the clock*/// solhint-disable-next-line func-name-mixedcasefunction CLOCK_MODE() external view returns (string memory);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.20;import {IERC20} from "./IERC20.sol";import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";import {Context} from "../../utils/Context.sol";import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.** 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)pragma solidity ^0.8.20;import {ERC20} from "../ERC20.sol";import {Context} from "../../../utils/Context.sol";/*** @dev Extension of {ERC20} that allows token holders to destroy both their own* tokens and those that they have an allowance for, in a way that can be* recognized off-chain (via event analysis).*/abstract contract ERC20Burnable is Context, ERC20 {/*** @dev Destroys a `value` amount of tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 value) public virtual {_burn(_msgSender(), value);}/*** @dev Destroys a `value` amount of tokens from `account`, deducting from* the caller's allowance.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Pausable.sol)pragma solidity ^0.8.20;import {ERC20} from "../ERC20.sol";import {Pausable} from "../../../utils/Pausable.sol";/*** @dev ERC20 token with pausable token transfers, minting and burning.** Useful for scenarios such as preventing trades until the end of an evaluation* period, or having an emergency switch for freezing all token transfers in the* event of a large bug.** IMPORTANT: This contract does not include public pause and unpause functions. In* addition to inheriting this contract, you must define both functions, invoking the* {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate* access control, e.g. using {AccessControl} or {Ownable}. Not doing so will* make the contract pause mechanism of the contract unreachable, and thus unusable.*/abstract contract ERC20Pausable is ERC20, Pausable {/*** @dev See {ERC20-_update}.** Requirements:
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)pragma solidity ^0.8.20;import {IERC20Permit} from "./IERC20Permit.sol";import {ERC20} from "../ERC20.sol";import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";import {EIP712} from "../../../utils/cryptography/EIP712.sol";import {Nonces} from "../../../utils/Nonces.sol";/*** @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {bytes32 private constant PERMIT_TYPEHASH =keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");/*** @dev Permit deadline has expired.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Votes.sol)pragma solidity ^0.8.20;import {ERC20} from "../ERC20.sol";import {Votes} from "../../../governance/utils/Votes.sol";import {Checkpoints} from "../../../utils/structs/Checkpoints.sol";/*** @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,* and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1.** NOTE: This contract does not provide interface compatibility with Compound's COMP token.** This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either* by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting* power can be queried through the public accessors {getVotes} and {getPastVotes}.** By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it* requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.*/abstract contract ERC20Votes is ERC20, Votes {/*** @dev Total supply cap has been exceeded, introducing a risk of votes overflowing.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.20;import {IERC20} from "../IERC20.sol";/*** @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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.** ==== Security Considerations** There are two important considerations concerning the use of `permit`. The first is that a valid permit signature* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be* considered as an intention to spend the allowance in any specific way. The second is that because permits have* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be* generally recommended is:** ```solidity* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}* doThing(..., value);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// 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.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// 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;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.20;/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS}/*** @dev The signature derives the `address(0)`.*/error ECDSAInvalidSignature();/*** @dev The signature has an invalid length.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)pragma solidity ^0.8.20;import {MessageHashUtils} from "./MessageHashUtils.sol";import {ShortStrings, ShortString} from "../ShortStrings.sol";import {IERC5267} from "../../interfaces/IERC5267.sol";/*** @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.** The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose* encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract* does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to* produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.** This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA* ({_hashTypedDataV4}).** The implementation of the domain separator was designed to be as efficient as possible while still properly updating* the chain id to protect against replay attacks on an eventual fork of the chain.** NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)pragma solidity ^0.8.20;import {Strings} from "../Strings.sol";/*** @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.** The library provides methods for generating a hash of a message that conforms to the* https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]* specifications.*/library MessageHashUtils {/*** @dev Returns the keccak256 digest of an EIP-191 signed data with version* `0x45` (`personal_sign` messages).** The digest is calculated by prefixing a bytes32 `messageHash` with* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.** NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with* keccak256, although any bytes32 value can be safely used because the final digest will* be re-hashed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)pragma solidity ^0.8.20;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {/*** @dev Muldiv operation overflow.*/error MathOverflowedMulDiv();enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an overflow flag.*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such an operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)pragma solidity ^0.8.20;/*** @dev Provides tracking nonces for addresses. Nonces will only increment.*/abstract contract Nonces {/*** @dev The nonce used for an `account` is not the expected current nonce.*/error InvalidAccountNonce(address account, uint256 currentNonce);mapping(address account => uint256) private _nonces;/*** @dev Returns the next unused nonce for an address.*/function nonces(address owner) public view virtual returns (uint256) {return _nonces[owner];}/*** @dev Consumes a nonce.** Returns the current value and increments nonce.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @dev Contract module which allows children to implement an emergency stop* mechanism that can be triggered by an authorized account.** This module is used through inheritance. It will make available the* modifiers `whenNotPaused` and `whenPaused`, which can be applied to* the functions of your contract. Note that they will not be pausable by* simply including this module, only once the modifiers are put in place.*/abstract contract Pausable is Context {bool private _paused;/*** @dev Emitted when the pause is triggered by `account`.*/event Paused(address account);/*** @dev Emitted when the pause is lifted by `account`.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)pragma solidity ^0.8.20;import {StorageSlot} from "./StorageSlot.sol";// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |// | length | 0x BB |type ShortString is bytes32;/*** @dev This library provides functions to convert short memory strings* into a `ShortString` type that can be used as an immutable variable.** Strings of arbitrary length can be optimized using this library if* they are short enough (up to 31 bytes) by packing them with their* length (1 byte) in a single EVM word (32 bytes). Additionally, a* fallback mechanism can be used for every other case.** Usage example:** ```solidity* contract Named {* using ShortStrings for *;*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```solidity* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/Checkpoints.sol)// This file was procedurally generated from scripts/generate/templates/Checkpoints.js.pragma solidity ^0.8.20;import {Math} from "../math/Math.sol";/*** @dev This library defines the `Trace*` struct, for checkpointing values as they change at different points in* time, and later looking up past values by block number. See {Votes} as an example.** To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new* checkpoint for the current transaction block using the {push} function.*/library Checkpoints {/*** @dev A value was attempted to be inserted on a past checkpoint.*/error CheckpointUnorderedInsertion();struct Trace224 {Checkpoint224[] _checkpoints;}struct Checkpoint224 {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/types/Time.sol)pragma solidity ^0.8.20;import {Math} from "../math/Math.sol";import {SafeCast} from "../math/SafeCast.sol";/*** @dev This library provides helpers for manipulating time-related objects.** It uses the following types:* - `uint48` for timepoints* - `uint32` for durations** While the library doesn't provide specific types for timepoints and duration, it does provide:* - a `Delay` type to represent duration that can be programmed to change value automatically at a given point* - additional helper functions*/library Time {using Time for *;/*** @dev Get the block timestamp as a Timepoint.*/function timestamp() internal view returns (uint48) {
1234567891011121314151617181920{"optimizer": {"enabled": true,"runs": 200},"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":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededSafeSupply","type":"error"},{"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":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint48","name":"_key","type":"uint48"},{"internalType":"uint208","name":"_value","type":"uint208"}],"internalType":"struct Checkpoints.Checkpoint208","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"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":"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610180604052620000136012600a62000b26565b62000023906305f5e10062000b37565b610160523480156200003457600080fd5b50604051620030e9380380620030e9833981016040819052620000579162000b51565b6040518060400160405280600381526020016212111560ea1b81525080604051806040016040528060018152602001603160f81b815250836040518060400160405280601681526020017f48756d626c6520446f6e6174696f6e7320546f6b656e000000000000000000008152506040518060400160405280600381526020016212111560ea1b8152508160039081620000f2919062000c20565b50600462000101828262000c20565b50506005805460ff19169055506001600160a01b0381166200013e57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620001498162000230565b50620001578260066200028a565b61012052620001688160076200028a565b61014052815160208084019190912060e052815190820120610100524660a052620001f660e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c052506200022981620002136012600a62000b26565b62000223906305f5e10062000b37565b620002c3565b5062000dda565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000602083511015620002aa57620002a28362000301565b9050620002bd565b81620002b7848262000c20565b5060ff90505b92915050565b6001600160a01b038216620002ef5760405163ec442f0560e01b81526000600482015260240162000135565b620002fd6000838362000344565b5050565b600080829050601f815111156200032f578260405163305a27a960e01b815260040162000135919062000cec565b80516200033c8262000d3c565b179392505050565b6200035183838362000356565b505050565b62000363838383620003c5565b6001600160a01b038316620003b85760006200037e60025490565b90506001600160d01b0380821115620003b557604051630e58ae9360e11b8152600481018390526024810182905260440162000135565b50505b62000351838383620003dc565b620003cf62000474565b620003518383836200049b565b6001600160a01b03831662000411576200040e600b62000b5b620005ce60201b176200040884620005e3565b6200061d565b50505b6001600160a01b03821662000440576200043d600b62000b676200065a60201b176200040884620005e3565b50505b6001600160a01b03838116600090815260096020526040808220548584168352912054620003519291821691168362000668565b60055460ff1615620004995760405163d93c066560e01b815260040160405180910390fd5b565b6001600160a01b038316620004ca578060026000828254620004be919062000d61565b909155506200053e9050565b6001600160a01b038316600090815260208190526040902054818110156200051f5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000135565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166200055c576002805482900390556200057b565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005c191815260200190565b60405180910390a3505050565b6000620005dc828462000d77565b9392505050565b60006001600160d01b0382111562000619576040516306dfcc6560e41b815260d060048201526024810183905260440162000135565b5090565b6000806200064d6200062e620007cf565b620006446200063d88620007e0565b868860201c565b8791906200082f565b915091505b935093915050565b6000620005dc828462000da1565b816001600160a01b0316836001600160a01b0316141580156200068b5750600081115b1562000351576001600160a01b038316156200072e576001600160a01b0383166000908152600a6020908152604082208291620006d991906200065a901b62000b67176200040886620005e3565b6001600160d01b031691506001600160d01b03169150846001600160a01b0316600080516020620030c9833981519152838360405162000723929190918252602082015260400190565b60405180910390a250505b6001600160a01b0382161562000351576001600160a01b0382166000908152600a6020908152604082208291620007769190620005ce901b62000b5b176200040886620005e3565b6001600160d01b031691506001600160d01b03169150836001600160a01b0316600080516020620030c98339815191528383604051620007c0929190918252602082015260400190565b60405180910390a25050505050565b6000620007db6200083f565b905090565b8054600090801562000826576200080c83620007fe60018462000dc4565b600091825260209091200190565b54660100000000000090046001600160d01b0316620005dc565b60009392505050565b6000806200064d8585856200084c565b6000620007db43620009de565b8254600090819080156200097f5760006200086e87620007fe60018562000dc4565b60408051808201909152905465ffffffffffff80821680845266010000000000009092046001600160d01b031660208401529192509087161015620008c657604051632520601d60e01b815260040160405180910390fd5b805165ffffffffffff8088169116036200091a5784620008ed88620007fe60018662000dc4565b80546001600160d01b039290921666010000000000000265ffffffffffff9092169190911790556200096e565b6040805180820190915265ffffffffffff80881682526001600160d01b0380881660208085019182528b54600181018d5560008d815291909120945191519092166601000000000000029216919091179101555b602001519250839150620006529050565b50506040805180820190915265ffffffffffff80851682526001600160d01b0380851660208085019182528854600181018a5560008a815291822095519251909316660100000000000002919093161792019190915590508162000652565b600065ffffffffffff82111562000619576040516306dfcc6560e41b8152603060048201526024810183905260440162000135565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000a6a57816000190482111562000a4e5762000a4e62000a13565b8085161562000a5c57918102915b93841c939080029062000a2e565b509250929050565b60008262000a8357506001620002bd565b8162000a9257506000620002bd565b816001811462000aab576002811462000ab65762000ad6565b6001915050620002bd565b60ff84111562000aca5762000aca62000a13565b50506001821b620002bd565b5060208310610133831016604e8410600b841016171562000afb575081810a620002bd565b62000b07838362000a29565b806000190482111562000b1e5762000b1e62000a13565b029392505050565b6000620005dc60ff84168362000a72565b8082028115828204841417620002bd57620002bd62000a13565b60006020828403121562000b6457600080fd5b81516001600160a01b0381168114620005dc57600080fd5b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000ba757607f821691505b60208210810362000bc857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035157600081815260208120601f850160051c8101602086101562000bf75750805b601f850160051c820191505b8181101562000c185782815560010162000c03565b505050505050565b81516001600160401b0381111562000c3c5762000c3c62000b7c565b62000c548162000c4d845462000b92565b8462000bce565b602080601f83116001811462000c8c576000841562000c735750858301515b600019600386901b1c1916600185901b17855562000c18565b600085815260208120601f198616915b8281101562000cbd5788860151825594840194600190910190840162000c9c565b508582101562000cdc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208083528351808285015260005b8181101562000d1b5785810183015185820160400152820162000cfd565b506000604082860101526040601f19601f8301168501019250505092915050565b8051602080830151919081101562000bc85760001960209190910360031b1b16919050565b80820180821115620002bd57620002bd62000a13565b6001600160d01b0381811683821601908082111562000d9a5762000d9a62000a13565b5092915050565b6001600160d01b0382811682821603908082111562000d9a5762000d9a62000a13565b81810381811115620002bd57620002bd62000a13565b60805160a05160c05160e0516101005161012051610140516101605161228262000e476000396000818161046d015261069b015260006110f3015260006110c601526000610d3c01526000610d1401526000610c6f01526000610c9901526000610cc301526122826000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a57806395d89b41116100ad578063d505accf1161007c578063d505accf14610455578063d5abeb0114610468578063dd62ed3e1461048f578063f1127ed8146104c8578063f2fde38b1461050757600080fd5b806395d89b41146104145780639ab24eb01461041c578063a9059cbb1461042f578063c3cda5201461044257600080fd5b806384b0196e116100e957806384b0196e146103b15780638da5cb5b146103cc5780638e539e8c146103e257806391ddadf4146103f557600080fd5b8063715018a61461037b57806379cc6790146103835780637ecebe00146103965780638456cb59146103a957600080fd5b806340c10f19116101925780635c19a95c116101615780635c19a95c1461030c5780635c975abb1461031f5780636fcfff451461032a57806370a082311461035257600080fd5b806340c10f191461029a57806342966c68146102ad5780634bf5d7e9146102c0578063587cde1e146102c857600080fd5b8063313ce567116101ce578063313ce567146102665780633644e515146102755780633a46b1a81461027d5780633f4ba83a1461029057600080fd5b806306fdde0314610200578063095ea7b31461021e57806318160ddd1461024157806323b872dd14610253575b600080fd5b61020861051a565b6040516102159190611e86565b60405180910390f35b61023161022c366004611eb5565b6105ac565b6040519015158152602001610215565b6002545b604051908152602001610215565b610231610261366004611edf565b6105c6565b60405160128152602001610215565b6102456105ea565b61024561028b366004611eb5565b6105f9565b61029861067f565b005b6102986102a8366004611eb5565b610691565b6102986102bb366004611f1b565b610720565b61020861072d565b6102f46102d6366004611f34565b6001600160a01b039081166000908152600960205260409020541690565b6040516001600160a01b039091168152602001610215565b61029861031a366004611f34565b6107a5565b60055460ff16610231565b61033d610338366004611f34565b6107b0565b60405163ffffffff9091168152602001610215565b610245610360366004611f34565b6001600160a01b031660009081526020819052604090205490565b6102986107bb565b610298610391366004611eb5565b6107cd565b6102456103a4366004611f34565b6107e2565b6102986107ed565b6103b96107fd565b6040516102159796959493929190611f4f565b60055461010090046001600160a01b03166102f4565b6102456103f0366004611f1b565b610843565b6103fd6108ad565b60405165ffffffffffff9091168152602001610215565b6102086108b7565b61024561042a366004611f34565b6108c6565b61023161043d366004611eb5565b6108f6565b610298610450366004611ff6565b610904565b61029861046336600461204e565b6109c1565b6102457f000000000000000000000000000000000000000000000000000000000000000081565b61024561049d3660046120b8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104db6104d63660046120eb565b610afb565b60408051825165ffffffffffff1681526020928301516001600160d01b03169281019290925201610215565b610298610515366004611f34565b610b20565b6060600380546105299061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546105559061212b565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6000336105ba818585610b73565b60019150505b92915050565b6000336105d4858285610b85565b6105df858585610c03565b506001949350505050565b60006105f4610c62565b905090565b6000806106046108ad565b90508065ffffffffffff16831061064457604051637669fc0f60e11b81526004810184905265ffffffffffff821660248201526044015b60405180910390fd5b61066e61065084610d8d565b6001600160a01b0386166000908152600a6020526040902090610dc4565b6001600160d01b0316949350505050565b610687610e7a565b61068f610ead565b565b610699610e7a565b7f0000000000000000000000000000000000000000000000000000000000000000816106c460025490565b6106ce919061217b565b11156107125760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161063b565b61071c8282610eff565b5050565b61072a3382610f35565b50565b6060610737610f6b565b65ffffffffffff166107476108ad565b65ffffffffffff161461076d576040516301bfc1c560e61b815260040160405180910390fd5b5060408051808201909152601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74000000602082015290565b3361071c8183610f76565b60006105c082610fe8565b6107c3610e7a565b61068f600061100a565b6107d8823383610b85565b61071c8282610f35565b60006105c082611064565b6107f5610e7a565b61068f611082565b6000606080600080600060606108116110bf565b6108196110ec565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60008061084e6108ad565b90508065ffffffffffff16831061088957604051637669fc0f60e11b81526004810184905265ffffffffffff8216602482015260440161063b565b61089d61089584610d8d565b600b90610dc4565b6001600160d01b03169392505050565b60006105f4610f6b565b6060600480546105299061212b565b6001600160a01b0381166000908152600a602052604081206108e790611119565b6001600160d01b031692915050565b6000336105ba818585610c03565b8342111561092857604051632341d78760e11b81526004810185905260240161063b565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b0388169181019190915260608101869052608081018590526000906109a29061099a9060a00160405160208183030381529060405280519060200120611152565b85858561117f565b90506109ae81876111ad565b6109b88188610f76565b50505050505050565b834211156109e55760405163313c898160e11b81526004810185905260240161063b565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610a328c6001600160a01b0316600090815260086020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610a8d82611152565b90506000610a9d8287878761117f565b9050896001600160a01b0316816001600160a01b031614610ae4576040516325c0072360e11b81526001600160a01b0380831660048301528b16602482015260440161063b565b610aef8a8a8a610b73565b50505050505050505050565b6040805180820190915260008082526020820152610b198383611200565b9392505050565b610b28610e7a565b6001600160a01b038116610b5257604051631e4fbdf760e01b81526000600482015260240161063b565b61072a8161100a565b6000610b19828461218e565b6000610b1982846121b5565b610b808383836001611236565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610bfd5781811015610bee57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161063b565b610bfd84848484036000611236565b50505050565b6001600160a01b038316610c2d57604051634b637e8f60e11b81526000600482015260240161063b565b6001600160a01b038216610c575760405163ec442f0560e01b81526000600482015260240161063b565b610b8083838361130b565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610cbb57507f000000000000000000000000000000000000000000000000000000000000000046145b15610ce557507f000000000000000000000000000000000000000000000000000000000000000090565b6105f4604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b600065ffffffffffff821115610dc0576040516306dfcc6560e41b8152603060048201526024810183905260440161063b565b5090565b815460009081816005811115610e23576000610ddf84611316565b610de990856121d5565b60008881526020902090915081015465ffffffffffff9081169087161015610e1357809150610e21565b610e1e81600161217b565b92505b505b6000610e31878785856113fe565b90508015610e6c57610e5687610e486001846121d5565b600091825260209091200190565b54600160301b90046001600160d01b0316610e6f565b60005b979650505050505050565b6005546001600160a01b0361010090910416331461068f5760405163118cdaa760e01b815233600482015260240161063b565b610eb5611460565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610f295760405163ec442f0560e01b81526000600482015260240161063b565b61071c6000838361130b565b6001600160a01b038216610f5f57604051634b637e8f60e11b81526000600482015260240161063b565b61071c8260008361130b565b60006105f443610d8d565b6001600160a01b0382811660008181526009602052604080822080548686166001600160a01b0319821681179092559151919094169392849290917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610b808183610fe386611483565b6114a1565b6001600160a01b0381166000908152600a60205260408120546105c09061160d565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0381166000908152600860205260408120546105c0565b61108a61163e565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ee23390565b60606105f47f00000000000000000000000000000000000000000000000000000000000000006006611662565b60606105f47f00000000000000000000000000000000000000000000000000000000000000006007611662565b805460009080156111495761113383610e486001846121d5565b54600160301b90046001600160d01b0316610b19565b60009392505050565b60006105c061115f610c62565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000806111918888888861170d565b9250925092506111a182826117dc565b50909695505050505050565b6001600160a01b0382166000908152600860205260409020805460018101909155818114610b80576040516301d4b62360e61b81526001600160a01b03841660048201526024810182905260440161063b565b60408051808201909152600080825260208201526001600160a01b0383166000908152600a60205260409020610b199083611895565b6001600160a01b0384166112605760405163e602df0560e01b81526000600482015260240161063b565b6001600160a01b03831661128a57604051634a1406b160e11b81526000600482015260240161063b565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610bfd57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112fd91815260200190565b60405180910390a350505050565b610b80838383611905565b60008160000361132857506000919050565b600060016113358461196c565b901c6001901b9050600181848161134e5761134e6121e8565b048201901c90506001818481611366576113666121e8565b048201901c9050600181848161137e5761137e6121e8565b048201901c90506001818481611396576113966121e8565b048201901c905060018184816113ae576113ae6121e8565b048201901c905060018184816113c6576113c66121e8565b048201901c905060018184816113de576113de6121e8565b048201901c9050610b19818285816113f8576113f86121e8565b04611a00565b60005b818310156114585760006114158484611a16565b60008781526020902090915065ffffffffffff86169082015465ffffffffffff16111561144457809250611452565b61144f81600161217b565b93505b50611401565b509392505050565b60055460ff1661068f57604051638dfc202b60e01b815260040160405180910390fd5b6001600160a01b0381166000908152602081905260408120546105c0565b816001600160a01b0316836001600160a01b0316141580156114c35750600081115b15610b80576001600160a01b0383161561156b576001600160a01b0383166000908152600a60205260408120819061150690610b6761150186611a31565b611a65565b6001600160d01b031691506001600160d01b03169150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611560929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610b80576001600160a01b0382166000908152600a6020526040812081906115a490610b5b61150186611a31565b6001600160d01b031691506001600160d01b03169150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516115fe929190918252602082015260400190565b60405180910390a25050505050565b600063ffffffff821115610dc0576040516306dfcc6560e41b8152602060048201526024810183905260440161063b565b60055460ff161561068f5760405163d93c066560e01b815260040160405180910390fd5b606060ff831461167c5761167583611a9e565b90506105c0565b8180546116889061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546116b49061212b565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b505050505090506105c0565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561174857506000915060039050826117d2565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa15801561179c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166117c8575060009250600191508290506117d2565b9250600091508190505b9450945094915050565b60008260038111156117f0576117f06121fe565b036117f9575050565b600182600381111561180d5761180d6121fe565b0361182b5760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561183f5761183f6121fe565b036118605760405163fce698f760e01b81526004810182905260240161063b565b6003826003811115611874576118746121fe565b0361071c576040516335e2f38360e21b81526004810182905260240161063b565b6040805180820190915260008082526020820152826000018263ffffffff16815481106118c4576118c4612214565b60009182526020918290206040805180820190915291015465ffffffffffff81168252600160301b90046001600160d01b0316918101919091529392505050565b611910838383611add565b6001600160a01b03831661196157600061192960025490565b90506001600160d01b038082111561195e57604051630e58ae9360e11b8152600481018390526024810182905260440161063b565b50505b610b80838383611af0565b600080608083901c1561198157608092831c92015b604083901c1561199357604092831c92015b602083901c156119a557602092831c92015b601083901c156119b757601092831c92015b600883901c156119c957600892831c92015b600483901c156119db57600492831c92015b600283901c156119ed57600292831c92015b600183901c156105c05760010192915050565b6000818310611a0f5781610b19565b5090919050565b6000611a25600284841861222a565b610b199084841661217b565b60006001600160d01b03821115610dc0576040516306dfcc6560e41b815260d060048201526024810183905260440161063b565b600080611a91611a736108ad565b611a89611a7f88611119565b868863ffffffff16565b879190611b66565b915091505b935093915050565b60606000611aab83611b74565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b611ae561163e565b610b80838383611b9c565b6001600160a01b038316611b1257611b0f600b610b5b61150184611a31565b50505b6001600160a01b038216611b3457611b31600b610b6761150184611a31565b50505b6001600160a01b03838116600090815260096020526040808220548584168352912054610b80929182169116836114a1565b600080611a91858585611cc6565b600060ff8216601f8111156105c057604051632cd44ac360e21b815260040160405180910390fd5b6001600160a01b038316611bc7578060026000828254611bbc919061217b565b90915550611c399050565b6001600160a01b03831660009081526020819052604090205481811015611c1a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161063b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c5557600280548290039055611c74565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cb991815260200190565b60405180910390a3505050565b825460009081908015611de5576000611ce487610e486001856121d5565b60408051808201909152905465ffffffffffff808216808452600160301b9092046001600160d01b031660208401529192509087161015611d3857604051632520601d60e01b815260040160405180910390fd5b805165ffffffffffff808816911603611d845784611d5b88610e486001866121d5565b80546001600160d01b0392909216600160301b0265ffffffffffff909216919091179055611dd5565b6040805180820190915265ffffffffffff80881682526001600160d01b0380881660208085019182528b54600181018d5560008d81529190912094519151909216600160301b029216919091179101555b602001519250839150611a969050565b50506040805180820190915265ffffffffffff80851682526001600160d01b0380851660208085019182528854600181018a5560008a815291822095519251909316600160301b029190931617920191909155905081611a96565b6000815180845260005b81811015611e6657602081850181015186830182015201611e4a565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610b196020830184611e40565b80356001600160a01b0381168114611eb057600080fd5b919050565b60008060408385031215611ec857600080fd5b611ed183611e99565b946020939093013593505050565b600080600060608486031215611ef457600080fd5b611efd84611e99565b9250611f0b60208501611e99565b9150604084013590509250925092565b600060208284031215611f2d57600080fd5b5035919050565b600060208284031215611f4657600080fd5b610b1982611e99565b60ff60f81b881681526000602060e081840152611f6f60e084018a611e40565b8381036040850152611f81818a611e40565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015611fd357835183529284019291840191600101611fb7565b50909c9b505050505050505050505050565b803560ff81168114611eb057600080fd5b60008060008060008060c0878903121561200f57600080fd5b61201887611e99565b9550602087013594506040870135935061203460608801611fe5565b92506080870135915060a087013590509295509295509295565b600080600080600080600060e0888a03121561206957600080fd5b61207288611e99565b965061208060208901611e99565b9550604088013594506060880135935061209c60808901611fe5565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156120cb57600080fd5b6120d483611e99565b91506120e260208401611e99565b90509250929050565b600080604083850312156120fe57600080fd5b61210783611e99565b9150602083013563ffffffff8116811461212057600080fd5b809150509250929050565b600181811c9082168061213f57607f821691505b60208210810361215f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105c0576105c0612165565b6001600160d01b038181168382160190808211156121ae576121ae612165565b5092915050565b6001600160d01b038281168282160390808211156121ae576121ae612165565b818103818111156105c0576105c0612165565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008261224757634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204d1c9d41804a58fd50e3ccf7a119ac4b1ef68eb9ca73d20f51cf6c3ba61afc4a64736f6c63430008140033dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724000000000000000000000000951204cb69c2e24572feb727f9fcd837404ebf70
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a57806395d89b41116100ad578063d505accf1161007c578063d505accf14610455578063d5abeb0114610468578063dd62ed3e1461048f578063f1127ed8146104c8578063f2fde38b1461050757600080fd5b806395d89b41146104145780639ab24eb01461041c578063a9059cbb1461042f578063c3cda5201461044257600080fd5b806384b0196e116100e957806384b0196e146103b15780638da5cb5b146103cc5780638e539e8c146103e257806391ddadf4146103f557600080fd5b8063715018a61461037b57806379cc6790146103835780637ecebe00146103965780638456cb59146103a957600080fd5b806340c10f19116101925780635c19a95c116101615780635c19a95c1461030c5780635c975abb1461031f5780636fcfff451461032a57806370a082311461035257600080fd5b806340c10f191461029a57806342966c68146102ad5780634bf5d7e9146102c0578063587cde1e146102c857600080fd5b8063313ce567116101ce578063313ce567146102665780633644e515146102755780633a46b1a81461027d5780633f4ba83a1461029057600080fd5b806306fdde0314610200578063095ea7b31461021e57806318160ddd1461024157806323b872dd14610253575b600080fd5b61020861051a565b6040516102159190611e86565b60405180910390f35b61023161022c366004611eb5565b6105ac565b6040519015158152602001610215565b6002545b604051908152602001610215565b610231610261366004611edf565b6105c6565b60405160128152602001610215565b6102456105ea565b61024561028b366004611eb5565b6105f9565b61029861067f565b005b6102986102a8366004611eb5565b610691565b6102986102bb366004611f1b565b610720565b61020861072d565b6102f46102d6366004611f34565b6001600160a01b039081166000908152600960205260409020541690565b6040516001600160a01b039091168152602001610215565b61029861031a366004611f34565b6107a5565b60055460ff16610231565b61033d610338366004611f34565b6107b0565b60405163ffffffff9091168152602001610215565b610245610360366004611f34565b6001600160a01b031660009081526020819052604090205490565b6102986107bb565b610298610391366004611eb5565b6107cd565b6102456103a4366004611f34565b6107e2565b6102986107ed565b6103b96107fd565b6040516102159796959493929190611f4f565b60055461010090046001600160a01b03166102f4565b6102456103f0366004611f1b565b610843565b6103fd6108ad565b60405165ffffffffffff9091168152602001610215565b6102086108b7565b61024561042a366004611f34565b6108c6565b61023161043d366004611eb5565b6108f6565b610298610450366004611ff6565b610904565b61029861046336600461204e565b6109c1565b6102457f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081565b61024561049d3660046120b8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104db6104d63660046120eb565b610afb565b60408051825165ffffffffffff1681526020928301516001600160d01b03169281019290925201610215565b610298610515366004611f34565b610b20565b6060600380546105299061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546105559061212b565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b6000336105ba818585610b73565b60019150505b92915050565b6000336105d4858285610b85565b6105df858585610c03565b506001949350505050565b60006105f4610c62565b905090565b6000806106046108ad565b90508065ffffffffffff16831061064457604051637669fc0f60e11b81526004810184905265ffffffffffff821660248201526044015b60405180910390fd5b61066e61065084610d8d565b6001600160a01b0386166000908152600a6020526040902090610dc4565b6001600160d01b0316949350505050565b610687610e7a565b61068f610ead565b565b610699610e7a565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000816106c460025490565b6106ce919061217b565b11156107125760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604482015260640161063b565b61071c8282610eff565b5050565b61072a3382610f35565b50565b6060610737610f6b565b65ffffffffffff166107476108ad565b65ffffffffffff161461076d576040516301bfc1c560e61b815260040160405180910390fd5b5060408051808201909152601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74000000602082015290565b3361071c8183610f76565b60006105c082610fe8565b6107c3610e7a565b61068f600061100a565b6107d8823383610b85565b61071c8282610f35565b60006105c082611064565b6107f5610e7a565b61068f611082565b6000606080600080600060606108116110bf565b6108196110ec565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60008061084e6108ad565b90508065ffffffffffff16831061088957604051637669fc0f60e11b81526004810184905265ffffffffffff8216602482015260440161063b565b61089d61089584610d8d565b600b90610dc4565b6001600160d01b03169392505050565b60006105f4610f6b565b6060600480546105299061212b565b6001600160a01b0381166000908152600a602052604081206108e790611119565b6001600160d01b031692915050565b6000336105ba818585610c03565b8342111561092857604051632341d78760e11b81526004810185905260240161063b565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b0388169181019190915260608101869052608081018590526000906109a29061099a9060a00160405160208183030381529060405280519060200120611152565b85858561117f565b90506109ae81876111ad565b6109b88188610f76565b50505050505050565b834211156109e55760405163313c898160e11b81526004810185905260240161063b565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610a328c6001600160a01b0316600090815260086020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610a8d82611152565b90506000610a9d8287878761117f565b9050896001600160a01b0316816001600160a01b031614610ae4576040516325c0072360e11b81526001600160a01b0380831660048301528b16602482015260440161063b565b610aef8a8a8a610b73565b50505050505050505050565b6040805180820190915260008082526020820152610b198383611200565b9392505050565b610b28610e7a565b6001600160a01b038116610b5257604051631e4fbdf760e01b81526000600482015260240161063b565b61072a8161100a565b6000610b19828461218e565b6000610b1982846121b5565b610b808383836001611236565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610bfd5781811015610bee57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161063b565b610bfd84848484036000611236565b50505050565b6001600160a01b038316610c2d57604051634b637e8f60e11b81526000600482015260240161063b565b6001600160a01b038216610c575760405163ec442f0560e01b81526000600482015260240161063b565b610b8083838361130b565b6000306001600160a01b037f000000000000000000000000babe35f94fe6076474f65771df60d99cb097323a16148015610cbb57507f000000000000000000000000000000000000000000000000000000000000009246145b15610ce557507f5f1ccb409576168caf634599be9d97a53b59dcc1d88edd4fcc35625cd0ac002790565b6105f4604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527fbb048f6753f9e728109facdab97e2953843ca1cd726f73cd02b5ce4d71e5d8ce918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b600065ffffffffffff821115610dc0576040516306dfcc6560e41b8152603060048201526024810183905260440161063b565b5090565b815460009081816005811115610e23576000610ddf84611316565b610de990856121d5565b60008881526020902090915081015465ffffffffffff9081169087161015610e1357809150610e21565b610e1e81600161217b565b92505b505b6000610e31878785856113fe565b90508015610e6c57610e5687610e486001846121d5565b600091825260209091200190565b54600160301b90046001600160d01b0316610e6f565b60005b979650505050505050565b6005546001600160a01b0361010090910416331461068f5760405163118cdaa760e01b815233600482015260240161063b565b610eb5611460565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610f295760405163ec442f0560e01b81526000600482015260240161063b565b61071c6000838361130b565b6001600160a01b038216610f5f57604051634b637e8f60e11b81526000600482015260240161063b565b61071c8260008361130b565b60006105f443610d8d565b6001600160a01b0382811660008181526009602052604080822080548686166001600160a01b0319821681179092559151919094169392849290917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610b808183610fe386611483565b6114a1565b6001600160a01b0381166000908152600a60205260408120546105c09061160d565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0381166000908152600860205260408120546105c0565b61108a61163e565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ee23390565b60606105f47f48445400000000000000000000000000000000000000000000000000000000036006611662565b60606105f47f31000000000000000000000000000000000000000000000000000000000000016007611662565b805460009080156111495761113383610e486001846121d5565b54600160301b90046001600160d01b0316610b19565b60009392505050565b60006105c061115f610c62565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000806111918888888861170d565b9250925092506111a182826117dc565b50909695505050505050565b6001600160a01b0382166000908152600860205260409020805460018101909155818114610b80576040516301d4b62360e61b81526001600160a01b03841660048201526024810182905260440161063b565b60408051808201909152600080825260208201526001600160a01b0383166000908152600a60205260409020610b199083611895565b6001600160a01b0384166112605760405163e602df0560e01b81526000600482015260240161063b565b6001600160a01b03831661128a57604051634a1406b160e11b81526000600482015260240161063b565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610bfd57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112fd91815260200190565b60405180910390a350505050565b610b80838383611905565b60008160000361132857506000919050565b600060016113358461196c565b901c6001901b9050600181848161134e5761134e6121e8565b048201901c90506001818481611366576113666121e8565b048201901c9050600181848161137e5761137e6121e8565b048201901c90506001818481611396576113966121e8565b048201901c905060018184816113ae576113ae6121e8565b048201901c905060018184816113c6576113c66121e8565b048201901c905060018184816113de576113de6121e8565b048201901c9050610b19818285816113f8576113f86121e8565b04611a00565b60005b818310156114585760006114158484611a16565b60008781526020902090915065ffffffffffff86169082015465ffffffffffff16111561144457809250611452565b61144f81600161217b565b93505b50611401565b509392505050565b60055460ff1661068f57604051638dfc202b60e01b815260040160405180910390fd5b6001600160a01b0381166000908152602081905260408120546105c0565b816001600160a01b0316836001600160a01b0316141580156114c35750600081115b15610b80576001600160a01b0383161561156b576001600160a01b0383166000908152600a60205260408120819061150690610b6761150186611a31565b611a65565b6001600160d01b031691506001600160d01b03169150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611560929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610b80576001600160a01b0382166000908152600a6020526040812081906115a490610b5b61150186611a31565b6001600160d01b031691506001600160d01b03169150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516115fe929190918252602082015260400190565b60405180910390a25050505050565b600063ffffffff821115610dc0576040516306dfcc6560e41b8152602060048201526024810183905260440161063b565b60055460ff161561068f5760405163d93c066560e01b815260040160405180910390fd5b606060ff831461167c5761167583611a9e565b90506105c0565b8180546116889061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546116b49061212b565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b505050505090506105c0565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561174857506000915060039050826117d2565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa15801561179c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166117c8575060009250600191508290506117d2565b9250600091508190505b9450945094915050565b60008260038111156117f0576117f06121fe565b036117f9575050565b600182600381111561180d5761180d6121fe565b0361182b5760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561183f5761183f6121fe565b036118605760405163fce698f760e01b81526004810182905260240161063b565b6003826003811115611874576118746121fe565b0361071c576040516335e2f38360e21b81526004810182905260240161063b565b6040805180820190915260008082526020820152826000018263ffffffff16815481106118c4576118c4612214565b60009182526020918290206040805180820190915291015465ffffffffffff81168252600160301b90046001600160d01b0316918101919091529392505050565b611910838383611add565b6001600160a01b03831661196157600061192960025490565b90506001600160d01b038082111561195e57604051630e58ae9360e11b8152600481018390526024810182905260440161063b565b50505b610b80838383611af0565b600080608083901c1561198157608092831c92015b604083901c1561199357604092831c92015b602083901c156119a557602092831c92015b601083901c156119b757601092831c92015b600883901c156119c957600892831c92015b600483901c156119db57600492831c92015b600283901c156119ed57600292831c92015b600183901c156105c05760010192915050565b6000818310611a0f5781610b19565b5090919050565b6000611a25600284841861222a565b610b199084841661217b565b60006001600160d01b03821115610dc0576040516306dfcc6560e41b815260d060048201526024810183905260440161063b565b600080611a91611a736108ad565b611a89611a7f88611119565b868863ffffffff16565b879190611b66565b915091505b935093915050565b60606000611aab83611b74565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b611ae561163e565b610b80838383611b9c565b6001600160a01b038316611b1257611b0f600b610b5b61150184611a31565b50505b6001600160a01b038216611b3457611b31600b610b6761150184611a31565b50505b6001600160a01b03838116600090815260096020526040808220548584168352912054610b80929182169116836114a1565b600080611a91858585611cc6565b600060ff8216601f8111156105c057604051632cd44ac360e21b815260040160405180910390fd5b6001600160a01b038316611bc7578060026000828254611bbc919061217b565b90915550611c399050565b6001600160a01b03831660009081526020819052604090205481811015611c1a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161063b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611c5557600280548290039055611c74565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cb991815260200190565b60405180910390a3505050565b825460009081908015611de5576000611ce487610e486001856121d5565b60408051808201909152905465ffffffffffff808216808452600160301b9092046001600160d01b031660208401529192509087161015611d3857604051632520601d60e01b815260040160405180910390fd5b805165ffffffffffff808816911603611d845784611d5b88610e486001866121d5565b80546001600160d01b0392909216600160301b0265ffffffffffff909216919091179055611dd5565b6040805180820190915265ffffffffffff80881682526001600160d01b0380881660208085019182528b54600181018d5560008d81529190912094519151909216600160301b029216919091179101555b602001519250839150611a969050565b50506040805180820190915265ffffffffffff80851682526001600160d01b0380851660208085019182528854600181018a5560008a815291822095519251909316600160301b029190931617920191909155905081611a96565b6000815180845260005b81811015611e6657602081850181015186830182015201611e4a565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610b196020830184611e40565b80356001600160a01b0381168114611eb057600080fd5b919050565b60008060408385031215611ec857600080fd5b611ed183611e99565b946020939093013593505050565b600080600060608486031215611ef457600080fd5b611efd84611e99565b9250611f0b60208501611e99565b9150604084013590509250925092565b600060208284031215611f2d57600080fd5b5035919050565b600060208284031215611f4657600080fd5b610b1982611e99565b60ff60f81b881681526000602060e081840152611f6f60e084018a611e40565b8381036040850152611f81818a611e40565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015611fd357835183529284019291840191600101611fb7565b50909c9b505050505050505050505050565b803560ff81168114611eb057600080fd5b60008060008060008060c0878903121561200f57600080fd5b61201887611e99565b9550602087013594506040870135935061203460608801611fe5565b92506080870135915060a087013590509295509295509295565b600080600080600080600060e0888a03121561206957600080fd5b61207288611e99565b965061208060208901611e99565b9550604088013594506060880135935061209c60808901611fe5565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156120cb57600080fd5b6120d483611e99565b91506120e260208401611e99565b90509250929050565b600080604083850312156120fe57600080fd5b61210783611e99565b9150602083013563ffffffff8116811461212057600080fd5b809150509250929050565b600181811c9082168061213f57607f821691505b60208210810361215f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105c0576105c0612165565b6001600160d01b038181168382160190808211156121ae576121ae612165565b5092915050565b6001600160d01b038281168282160390808211156121ae576121ae612165565b818103818111156105c0576105c0612165565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008261224757634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204d1c9d41804a58fd50e3ccf7a119ac4b1ef68eb9ca73d20f51cf6c3ba61afc4a64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000951204cb69c2e24572feb727f9fcd837404ebf70
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x951204CB69C2e24572FeB727f9fCD837404eBf70
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000951204cb69c2e24572feb727f9fcd837404ebf70
[ 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.