Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
7.7 HPRO
Holders
77
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pro
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-30 */ // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/Pro.sol // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; contract Pro is ERC20, Ownable{ mapping(address => uint256) public transformed; uint256 private _rate; address private _to; IERC20 immutable private TOKEN; event GonePro(address addr, uint256 amount); // @dev require token and rate constructor(address token, uint256 baserate) payable ERC20("HEDRON.today", "HPRO") { require(baserate > 0, "amount must be > zero"); _to = msg.sender; _rate = baserate; TOKEN = IERC20(token); } // @dev transform rate function rate() external view returns(uint256) { return _rate; } // @dev transform into a pro account function transform(uint256 amount) external returns(uint256) { require(amount >= _rate, "amount must be >= rate"); // Transfer token TOKEN.transferFrom(msg.sender, address(this), amount); // Increase total transformed[msg.sender] += amount; // Emit noise emit GonePro(msg.sender, amount); // Mint a token (because why not) _mint(msg.sender, amount); // Return total transformed return amount; } // @dev flush eth function flush() external onlyOwner { Address.sendValue(payable(_to), address(this).balance); } // @dev flush token function flushToken(address token) external onlyOwner { SafeERC20.safeTransfer(IERC20(token), _to, IERC20(token).balanceOf(address(this))); } // @dev change flush address function setFlushAddress(address to) external onlyOwner{ _to = to; } // @dev change rate function setRate(uint256 baserate) external onlyOwner{ require(baserate >= 0, "rate must be > 0"); _rate = baserate; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"baserate","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GonePro","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flush","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"flushToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"setFlushAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"baserate","type":"uint256"}],"name":"setRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transform","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"transformed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a0604052604051620014df380380620014df833981016040819052620000269162000221565b604080518082018252600c81526b484544524f4e2e746f64617960a01b6020808301918252835180850190945260048452634850524f60e01b90840152815191929162000076916003916200017b565b5080516200008c9060049060208401906200017b565b505050620000a9620000a36200012560201b60201c565b62000129565b60008111620000fe5760405162461bcd60e51b815260206004820152601560248201527f616d6f756e74206d757374206265203e207a65726f0000000000000000000000604482015260640160405180910390fd5b600880546001600160a01b031916331790556007556001600160a01b03166080526200029a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000189906200025d565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b600080604083850312156200023557600080fd5b82516001600160a01b03811681146200024d57600080fd5b6020939093015192949293505050565b600181811c908216806200027257607f821691505b602082108114156200029457634e487b7160e01b600052602260045260246000fd5b50919050565b608051611229620002b6600039600061060a01526112296000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610263578063bbbf799f14610276578063dcaeace014610289578063dd62ed3e146102a9578063eb9047bb146102bc578063f2fde38b146102cf57600080fd5b8063715018a6146102125780638da5cb5b1461021a57806395d89b41146102355780639cee789f1461023d578063a457c2d71461025057600080fd5b8063313ce567116100ff578063313ce567146101aa57806334fcf437146101b957806339509351146101ce5780636b9f96ea146101e157806370a08231146101e957600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d57806323b872dd1461018f5780632c4e722e146101a2575b600080fd5b6101446102e2565b6040516101519190611018565b60405180910390f35b61016d610168366004611067565b610374565b6040519015158152602001610151565b6002545b604051908152602001610151565b61016d61019d366004611091565b61038c565b600754610181565b60405160128152602001610151565b6101cc6101c73660046110cd565b6103b0565b005b61016d6101dc366004611067565b6103c6565b6101cc6103e8565b6101816101f73660046110e6565b6001600160a01b031660009081526020819052604090205490565b6101cc610408565b6005546040516001600160a01b039091168152602001610151565b61014461041a565b6101cc61024b3660046110e6565b610429565b61016d61025e366004611067565b6104bd565b61016d610271366004611067565b610538565b6101cc6102843660046110e6565b610546565b6101816102973660046110e6565b60066020526000908152604090205481565b6101816102b7366004611108565b610570565b6101816102ca3660046110cd565b61059b565b6101cc6102dd3660046110e6565b6106fa565b6060600380546102f19061113b565b80601f016020809104026020016040519081016040528092919081815260200182805461031d9061113b565b801561036a5780601f1061033f5761010080835404028352916020019161036a565b820191906000526020600020905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b600033610382818585610770565b5060019392505050565b60003361039a858285610894565b6103a585858561090e565b506001949350505050565b6103b8610ab2565b600755565b60405180910390fd5b6000336103828185856103d98383610570565b6103e39190611176565b610770565b6103f0610ab2565b600854610406906001600160a01b031647610b0c565b565b610410610ab2565b6104066000610c2a565b6060600480546102f19061113b565b610431610ab2565b6008546040516370a0823160e01b81523060048201526104ba9183916001600160a01b03918216918316906370a082319060240160206040518083038186803b15801561047d57600080fd5b505afa158015610491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b5919061119c565b610c7c565b50565b600033816104cb8286610570565b90508381101561052b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bd565b6103a58286868403610770565b60003361038281858561090e565b61054e610ab2565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006007548210156105e85760405162461bcd60e51b8152602060048201526016602482015275616d6f756e74206d757374206265203e3d207261746560501b60448201526064016103bd565b6040516323b872dd60e01b8152336004820152306024820152604481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561065657600080fd5b505af115801561066a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068e91906111b5565b5033600090815260066020526040812080548492906106ae908490611176565b909155505060408051338152602081018490527f8bba1dc1bed40654a3ba98b31973fc6b37a18fad4fb49d6f08eced80da759fe1910160405180910390a16106f63383610cce565b5090565b610702610ab2565b6001600160a01b0381166107675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bd565b6104ba81610c2a565b6001600160a01b0383166107d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b0382166108335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108a08484610570565b9050600019811461090857818110156108fb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103bd565b6109088484848403610770565b50505050565b6001600160a01b0383166109725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166109d45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b6001600160a01b03831660009081526020819052604090205481811015610a4c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103bd565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610908565b6005546001600160a01b031633146104065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bd565b80471015610b5c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103bd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610ba9576040519150601f19603f3d011682016040523d82523d6000602084013e610bae565b606091505b5050905080610c255760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103bd565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c25908490610d8d565b6001600160a01b038216610d245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103bd565b8060026000828254610d369190611176565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610de2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e5f9092919063ffffffff16565b805190915015610c255780806020019051810190610e0091906111b5565b610c255760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016103bd565b6060610e6e8484600085610e76565b949350505050565b606082471015610ed75760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016103bd565b600080866001600160a01b03168587604051610ef391906111d7565b60006040518083038185875af1925050503d8060008114610f30576040519150601f19603f3d011682016040523d82523d6000602084013e610f35565b606091505b5091509150610f4687838387610f51565b979650505050505050565b60608315610fbd578251610fb6576001600160a01b0385163b610fb65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103bd565b5081610e6e565b610e6e8383815115610fd25781518083602001fd5b8060405162461bcd60e51b81526004016103bd9190611018565b60005b83811015611007578181015183820152602001610fef565b838111156109085750506000910152565b6020815260008251806020840152611037816040850160208701610fec565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461106257600080fd5b919050565b6000806040838503121561107a57600080fd5b6110838361104b565b946020939093013593505050565b6000806000606084860312156110a657600080fd5b6110af8461104b565b92506110bd6020850161104b565b9150604084013590509250925092565b6000602082840312156110df57600080fd5b5035919050565b6000602082840312156110f857600080fd5b6111018261104b565b9392505050565b6000806040838503121561111b57600080fd5b6111248361104b565b91506111326020840161104b565b90509250929050565b600181811c9082168061114f57607f821691505b6020821081141561117057634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561119757634e487b7160e01b600052601160045260246000fd5b500190565b6000602082840312156111ae57600080fd5b5051919050565b6000602082840312156111c757600080fd5b8151801515811461110157600080fd5b600082516111e9818460208701610fec565b919091019291505056fea2646970667358221220ffc5aacfdd70a5f201dacafac53b1d0fbf3d0911aa672066381ee2be1b1c32ab64736f6c634300080900330000000000000000000000003819f64f282bf135d62168c1e513280daf905e06000000000000000000000000000000000000000000000000016345785d8a0000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610263578063bbbf799f14610276578063dcaeace014610289578063dd62ed3e146102a9578063eb9047bb146102bc578063f2fde38b146102cf57600080fd5b8063715018a6146102125780638da5cb5b1461021a57806395d89b41146102355780639cee789f1461023d578063a457c2d71461025057600080fd5b8063313ce567116100ff578063313ce567146101aa57806334fcf437146101b957806339509351146101ce5780636b9f96ea146101e157806370a08231146101e957600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d57806323b872dd1461018f5780632c4e722e146101a2575b600080fd5b6101446102e2565b6040516101519190611018565b60405180910390f35b61016d610168366004611067565b610374565b6040519015158152602001610151565b6002545b604051908152602001610151565b61016d61019d366004611091565b61038c565b600754610181565b60405160128152602001610151565b6101cc6101c73660046110cd565b6103b0565b005b61016d6101dc366004611067565b6103c6565b6101cc6103e8565b6101816101f73660046110e6565b6001600160a01b031660009081526020819052604090205490565b6101cc610408565b6005546040516001600160a01b039091168152602001610151565b61014461041a565b6101cc61024b3660046110e6565b610429565b61016d61025e366004611067565b6104bd565b61016d610271366004611067565b610538565b6101cc6102843660046110e6565b610546565b6101816102973660046110e6565b60066020526000908152604090205481565b6101816102b7366004611108565b610570565b6101816102ca3660046110cd565b61059b565b6101cc6102dd3660046110e6565b6106fa565b6060600380546102f19061113b565b80601f016020809104026020016040519081016040528092919081815260200182805461031d9061113b565b801561036a5780601f1061033f5761010080835404028352916020019161036a565b820191906000526020600020905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b600033610382818585610770565b5060019392505050565b60003361039a858285610894565b6103a585858561090e565b506001949350505050565b6103b8610ab2565b600755565b60405180910390fd5b6000336103828185856103d98383610570565b6103e39190611176565b610770565b6103f0610ab2565b600854610406906001600160a01b031647610b0c565b565b610410610ab2565b6104066000610c2a565b6060600480546102f19061113b565b610431610ab2565b6008546040516370a0823160e01b81523060048201526104ba9183916001600160a01b03918216918316906370a082319060240160206040518083038186803b15801561047d57600080fd5b505afa158015610491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b5919061119c565b610c7c565b50565b600033816104cb8286610570565b90508381101561052b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bd565b6103a58286868403610770565b60003361038281858561090e565b61054e610ab2565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006007548210156105e85760405162461bcd60e51b8152602060048201526016602482015275616d6f756e74206d757374206265203e3d207261746560501b60448201526064016103bd565b6040516323b872dd60e01b8152336004820152306024820152604481018390527f0000000000000000000000003819f64f282bf135d62168c1e513280daf905e066001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561065657600080fd5b505af115801561066a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068e91906111b5565b5033600090815260066020526040812080548492906106ae908490611176565b909155505060408051338152602081018490527f8bba1dc1bed40654a3ba98b31973fc6b37a18fad4fb49d6f08eced80da759fe1910160405180910390a16106f63383610cce565b5090565b610702610ab2565b6001600160a01b0381166107675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bd565b6104ba81610c2a565b6001600160a01b0383166107d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b0382166108335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108a08484610570565b9050600019811461090857818110156108fb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103bd565b6109088484848403610770565b50505050565b6001600160a01b0383166109725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166109d45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b6001600160a01b03831660009081526020819052604090205481811015610a4c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103bd565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610908565b6005546001600160a01b031633146104065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103bd565b80471015610b5c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103bd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610ba9576040519150601f19603f3d011682016040523d82523d6000602084013e610bae565b606091505b5050905080610c255760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103bd565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c25908490610d8d565b6001600160a01b038216610d245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103bd565b8060026000828254610d369190611176565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610de2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e5f9092919063ffffffff16565b805190915015610c255780806020019051810190610e0091906111b5565b610c255760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016103bd565b6060610e6e8484600085610e76565b949350505050565b606082471015610ed75760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016103bd565b600080866001600160a01b03168587604051610ef391906111d7565b60006040518083038185875af1925050503d8060008114610f30576040519150601f19603f3d011682016040523d82523d6000602084013e610f35565b606091505b5091509150610f4687838387610f51565b979650505050505050565b60608315610fbd578251610fb6576001600160a01b0385163b610fb65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103bd565b5081610e6e565b610e6e8383815115610fd25781518083602001fd5b8060405162461bcd60e51b81526004016103bd9190611018565b60005b83811015611007578181015183820152602001610fef565b838111156109085750506000910152565b6020815260008251806020840152611037816040850160208701610fec565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461106257600080fd5b919050565b6000806040838503121561107a57600080fd5b6110838361104b565b946020939093013593505050565b6000806000606084860312156110a657600080fd5b6110af8461104b565b92506110bd6020850161104b565b9150604084013590509250925092565b6000602082840312156110df57600080fd5b5035919050565b6000602082840312156110f857600080fd5b6111018261104b565b9392505050565b6000806040838503121561111b57600080fd5b6111248361104b565b91506111326020840161104b565b90509250929050565b600181811c9082168061114f57607f821691505b6020821081141561117057634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561119757634e487b7160e01b600052601160045260246000fd5b500190565b6000602082840312156111ae57600080fd5b5051919050565b6000602082840312156111c757600080fd5b8151801515811461110157600080fd5b600082516111e9818460208701610fec565b919091019291505056fea2646970667358221220ffc5aacfdd70a5f201dacafac53b1d0fbf3d0911aa672066381ee2be1b1c32ab64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003819f64f282bf135d62168c1e513280daf905e06000000000000000000000000000000000000000000000000016345785d8a0000
-----Decoded View---------------
Arg [0] : token (address): 0x3819f64f282bf135d62168C1e513280dAF905e06
Arg [1] : baserate (uint256): 100000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003819f64f282bf135d62168c1e513280daf905e06
Arg [1] : 000000000000000000000000000000000000000000000000016345785d8a0000
Deployed Bytecode Sourcemap
37097:1825:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25813:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28164:201;;;;;;:::i;:::-;;:::i;:::-;;;1267:14:1;;1260:22;1242:41;;1230:2;1215:18;28164:201:0;1102:187:1;26933:108:0;27021:12;;26933:108;;;1440:25:1;;;1428:2;1413:18;26933:108:0;1294:177:1;28945:295:0;;;;;;:::i;:::-;;:::i;37649:78::-;37714:5;;37649:78;;26775:93;;;26858:2;1951:36:1;;1939:2;1924:18;26775:93:0;1809:184:1;38778:141:0;;;;;;:::i;:::-;;:::i;:::-;;29649:238;;;;;;:::i;:::-;;:::i;38324:109::-;;;:::i;27104:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27205:18:0;27178:7;27205:18;;;;;;;;;;;;27104:127;2780:103;;;:::i;2132:87::-;2205:6;;2132:87;;-1:-1:-1;;;;;2205:6:0;;;2520:51:1;;2508:2;2493:18;2132:87:0;2374:203:1;26032:104:0;;;:::i;38466:155::-;;;;;;:::i;:::-;;:::i;30390:436::-;;;;;;:::i;:::-;;:::i;27437:193::-;;;;;;:::i;:::-;;:::i;38663:82::-;;;;;;:::i;:::-;;:::i;37136:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;27693:151;;;;;;:::i;:::-;;:::i;37777:516::-;;;;;;:::i;:::-;;:::i;3038:201::-;;;;;;:::i;:::-;;:::i;25813:100::-;25867:13;25900:5;25893:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25813:100;:::o;28164:201::-;28247:4;761:10;28303:32;761:10;28319:7;28328:6;28303:8;:32::i;:::-;-1:-1:-1;28353:4:0;;28164:201;-1:-1:-1;;;28164:201:0:o;28945:295::-;29076:4;761:10;29134:38;29150:4;761:10;29165:6;29134:15;:38::i;:::-;29183:27;29193:4;29199:2;29203:6;29183:9;:27::i;:::-;-1:-1:-1;29228:4:0;;28945:295;-1:-1:-1;;;;28945:295:0:o;38778:141::-;2018:13;:11;:13::i;:::-;38895:5:::1;:16:::0;38778:141::o;38842:42::-:1;;;;;;;;29649:238:::0;29737:4;761:10;29793:64;761:10;29809:7;29846:10;29818:25;761:10;29809:7;29818:9;:25::i;:::-;:38;;;;:::i;:::-;29793:8;:64::i;38324:109::-;2018:13;:11;:13::i;:::-;38397:3:::1;::::0;38371:54:::1;::::0;-1:-1:-1;;;;;38397:3:0::1;38403:21;38371:17;:54::i;:::-;38324:109::o:0;2780:103::-;2018:13;:11;:13::i;:::-;2845:30:::1;2872:1;2845:18;:30::i;26032:104::-:0;26088:13;26121:7;26114:14;;;;;:::i;38466:155::-;2018:13;:11;:13::i;:::-;38569:3:::1;::::0;38574:38:::1;::::0;-1:-1:-1;;;38574:38:0;;38606:4:::1;38574:38;::::0;::::1;2520:51:1::0;38531:82:0::1;::::0;38561:5;;-1:-1:-1;;;;;38569:3:0;;::::1;::::0;38574:23;::::1;::::0;::::1;::::0;2493:18:1;;38574:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38531:22;:82::i;:::-;38466:155:::0;:::o;30390:436::-;30483:4;761:10;30483:4;30566:25;761:10;30583:7;30566:9;:25::i;:::-;30539:52;;30630:15;30610:16;:35;;30602:85;;;;-1:-1:-1;;;30602:85:0;;4198:2:1;30602:85:0;;;4180:21:1;4237:2;4217:18;;;4210:30;4276:34;4256:18;;;4249:62;-1:-1:-1;;;4327:18:1;;;4320:35;4372:19;;30602:85:0;3996:401:1;30602:85:0;30723:60;30732:5;30739:7;30767:15;30748:16;:34;30723:8;:60::i;27437:193::-;27516:4;761:10;27572:28;761:10;27589:2;27593:6;27572:9;:28::i;38663:82::-;2018:13;:11;:13::i;:::-;38729:3:::1;:8:::0;;-1:-1:-1;;;;;;38729:8:0::1;-1:-1:-1::0;;;;;38729:8:0;;;::::1;::::0;;;::::1;::::0;;38663:82::o;27693:151::-;-1:-1:-1;;;;;27809:18:0;;;27782:7;27809:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27693:151::o;37777:516::-;37829:7;37867:5;;37857:6;:15;;37849:50;;;;-1:-1:-1;;;37849:50:0;;4604:2:1;37849:50:0;;;4586:21:1;4643:2;4623:18;;;4616:30;-1:-1:-1;;;4662:18:1;;;4655:52;4724:18;;37849:50:0;4402:346:1;37849:50:0;37939:53;;-1:-1:-1;;;37939:53:0;;37958:10;37939:53;;;4993:34:1;37978:4:0;5043:18:1;;;5036:43;5095:18;;;5088:34;;;37939:5:0;-1:-1:-1;;;;;37939:18:0;;;;4928::1;;37939:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;38052:10:0;38040:23;;;;:11;:23;;;;;:33;;38067:6;;38040:23;:33;;38067:6;;38040:33;:::i;:::-;;;;-1:-1:-1;;38114:27:0;;;38122:10;5589:51:1;;5671:2;5656:18;;5649:34;;;38114:27:0;;5562:18:1;38114:27:0;;;;;;;38197:25;38203:10;38215:6;38197:5;:25::i;:::-;-1:-1:-1;38279:6:0;37777:516::o;3038:201::-;2018:13;:11;:13::i;:::-;-1:-1:-1;;;;;3127:22:0;::::1;3119:73;;;::::0;-1:-1:-1;;;3119:73:0;;5896:2:1;3119:73:0::1;::::0;::::1;5878:21:1::0;5935:2;5915:18;;;5908:30;5974:34;5954:18;;;5947:62;-1:-1:-1;;;6025:18:1;;;6018:36;6071:19;;3119:73:0::1;5694:402:1::0;3119:73:0::1;3203:28;3222:8;3203:18;:28::i;34417:380::-:0;-1:-1:-1;;;;;34553:19:0;;34545:68;;;;-1:-1:-1;;;34545:68:0;;6303:2:1;34545:68:0;;;6285:21:1;6342:2;6322:18;;;6315:30;6381:34;6361:18;;;6354:62;-1:-1:-1;;;6432:18:1;;;6425:34;6476:19;;34545:68:0;6101:400:1;34545:68:0;-1:-1:-1;;;;;34632:21:0;;34624:68;;;;-1:-1:-1;;;34624:68:0;;6708:2:1;34624:68:0;;;6690:21:1;6747:2;6727:18;;;6720:30;6786:34;6766:18;;;6759:62;-1:-1:-1;;;6837:18:1;;;6830:32;6879:19;;34624:68:0;6506:398:1;34624:68:0;-1:-1:-1;;;;;34705:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34757:32;;1440:25:1;;;34757:32:0;;1413:18:1;34757:32:0;;;;;;;34417:380;;;:::o;35088:453::-;35223:24;35250:25;35260:5;35267:7;35250:9;:25::i;:::-;35223:52;;-1:-1:-1;;35290:16:0;:37;35286:248;;35372:6;35352:16;:26;;35344:68;;;;-1:-1:-1;;;35344:68:0;;7111:2:1;35344:68:0;;;7093:21:1;7150:2;7130:18;;;7123:30;7189:31;7169:18;;;7162:59;7238:18;;35344:68:0;6909:353:1;35344:68:0;35456:51;35465:5;35472:7;35500:6;35481:16;:25;35456:8;:51::i;:::-;35212:329;35088:453;;;:::o;31296:840::-;-1:-1:-1;;;;;31427:18:0;;31419:68;;;;-1:-1:-1;;;31419:68:0;;7469:2:1;31419:68:0;;;7451:21:1;7508:2;7488:18;;;7481:30;7547:34;7527:18;;;7520:62;-1:-1:-1;;;7598:18:1;;;7591:35;7643:19;;31419:68:0;7267:401:1;31419:68:0;-1:-1:-1;;;;;31506:16:0;;31498:64;;;;-1:-1:-1;;;31498:64:0;;7875:2:1;31498:64:0;;;7857:21:1;7914:2;7894:18;;;7887:30;7953:34;7933:18;;;7926:62;-1:-1:-1;;;8004:18:1;;;7997:33;8047:19;;31498:64:0;7673:399:1;31498:64:0;-1:-1:-1;;;;;31648:15:0;;31626:19;31648:15;;;;;;;;;;;31682:21;;;;31674:72;;;;-1:-1:-1;;;31674:72:0;;8279:2:1;31674:72:0;;;8261:21:1;8318:2;8298:18;;;8291:30;8357:34;8337:18;;;8330:62;-1:-1:-1;;;8408:18:1;;;8401:36;8454:19;;31674:72:0;8077:402:1;31674:72:0;-1:-1:-1;;;;;31782:15:0;;;:9;:15;;;;;;;;;;;31800:20;;;31782:38;;32000:13;;;;;;;;;;:23;;;;;;32052:26;;1440:25:1;;;32000:13:0;;32052:26;;1413:18:1;32052:26:0;;;;;;;32091:37;8978:317;2297:132;2205:6;;-1:-1:-1;;;;;2205:6:0;761:10;2361:23;2353:68;;;;-1:-1:-1;;;2353:68:0;;8686:2:1;2353:68:0;;;8668:21:1;;;8705:18;;;8698:30;8764:34;8744:18;;;8737:62;8816:18;;2353:68:0;8484:356:1;8978:317:0;9093:6;9068:21;:31;;9060:73;;;;-1:-1:-1;;;9060:73:0;;9047:2:1;9060:73:0;;;9029:21:1;9086:2;9066:18;;;9059:30;9125:31;9105:18;;;9098:59;9174:18;;9060:73:0;8845:353:1;9060:73:0;9147:12;9165:9;-1:-1:-1;;;;;9165:14:0;9187:6;9165:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9146:52;;;9217:7;9209:78;;;;-1:-1:-1;;;9209:78:0;;9615:2:1;9209:78:0;;;9597:21:1;9654:2;9634:18;;;9627:30;9693:34;9673:18;;;9666:62;9764:28;9744:18;;;9737:56;9810:19;;9209:78:0;9413:422:1;9209:78:0;9049:246;8978:317;;:::o;3399:191::-;3492:6;;;-1:-1:-1;;;;;3509:17:0;;;-1:-1:-1;;;;;;3509:17:0;;;;;;;3542:40;;3492:6;;;3509:17;3492:6;;3542:40;;3473:16;;3542:40;3462:128;3399:191;:::o;18993:211::-;19137:58;;;-1:-1:-1;;;;;5607:32:1;;19137:58:0;;;5589:51:1;5656:18;;;;5649:34;;;19137:58:0;;;;;;;;;;5562:18:1;;;;19137:58:0;;;;;;;;-1:-1:-1;;;;;19137:58:0;-1:-1:-1;;;19137:58:0;;;19110:86;;19130:5;;19110:19;:86::i;32423:548::-;-1:-1:-1;;;;;32507:21:0;;32499:65;;;;-1:-1:-1;;;32499:65:0;;10042:2:1;32499:65:0;;;10024:21:1;10081:2;10061:18;;;10054:30;10120:33;10100:18;;;10093:61;10171:18;;32499:65:0;9840:355:1;32499:65:0;32655:6;32639:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;32810:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;32865:37;1440:25:1;;;32865:37:0;;1413:18:1;32865:37:0;;;;;;;32423:548;;:::o;22060:716::-;22484:23;22510:69;22538:4;22510:69;;;;;;;;;;;;;;;;;22518:5;-1:-1:-1;;;;;22510:27:0;;;:69;;;;;:::i;:::-;22594:17;;22484:95;;-1:-1:-1;22594:21:0;22590:179;;22691:10;22680:30;;;;;;;;;;;;:::i;:::-;22672:85;;;;-1:-1:-1;;;22672:85:0;;10402:2:1;22672:85:0;;;10384:21:1;10441:2;10421:18;;;10414:30;10480:34;10460:18;;;10453:62;-1:-1:-1;;;10531:18:1;;;10524:40;10581:19;;22672:85:0;10200:406:1;10474:229:0;10611:12;10643:52;10665:6;10673:4;10679:1;10682:12;10643:21;:52::i;:::-;10636:59;10474:229;-1:-1:-1;;;;10474:229:0:o;11594:455::-;11764:12;11822:5;11797:21;:30;;11789:81;;;;-1:-1:-1;;;11789:81:0;;10813:2:1;11789:81:0;;;10795:21:1;10852:2;10832:18;;;10825:30;10891:34;10871:18;;;10864:62;-1:-1:-1;;;10942:18:1;;;10935:36;10988:19;;11789:81:0;10611:402:1;11789:81:0;11882:12;11896:23;11923:6;-1:-1:-1;;;;;11923:11:0;11942:5;11949:4;11923:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11881:73;;;;11972:69;11999:6;12007:7;12016:10;12028:12;11972:26;:69::i;:::-;11965:76;11594:455;-1:-1:-1;;;;;;;11594:455:0:o;14167:644::-;14352:12;14381:7;14377:427;;;14409:17;;14405:290;;-1:-1:-1;;;;;8012:19:0;;;14619:60;;;;-1:-1:-1;;;14619:60:0;;11499:2:1;14619:60:0;;;11481:21:1;11538:2;11518:18;;;11511:30;11577:31;11557:18;;;11550:59;11626:18;;14619:60:0;11297:353:1;14619:60:0;-1:-1:-1;14716:10:0;14709:17;;14377:427;14759:33;14767:10;14779:12;15514:17;;:21;15510:388;;15746:10;15740:17;15803:15;15790:10;15786:2;15782:19;15775:44;15510:388;15873:12;15866:20;;-1:-1:-1;;;15866:20:0;;;;;;;;:::i;14:258:1:-;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:1;244:16;;237:27;14:258::o;277:383::-;426:2;415:9;408:21;389:4;458:6;452:13;501:6;496:2;485:9;481:18;474:34;517:66;576:6;571:2;560:9;556:18;551:2;543:6;539:15;517:66;:::i;:::-;644:2;623:15;-1:-1:-1;;619:29:1;604:45;;;;651:2;600:54;;277:383;-1:-1:-1;;277:383:1:o;665:173::-;733:20;;-1:-1:-1;;;;;782:31:1;;772:42;;762:70;;828:1;825;818:12;762:70;665:173;;;:::o;843:254::-;911:6;919;972:2;960:9;951:7;947:23;943:32;940:52;;;988:1;985;978:12;940:52;1011:29;1030:9;1011:29;:::i;:::-;1001:39;1087:2;1072:18;;;;1059:32;;-1:-1:-1;;;843:254:1:o;1476:328::-;1553:6;1561;1569;1622:2;1610:9;1601:7;1597:23;1593:32;1590:52;;;1638:1;1635;1628:12;1590:52;1661:29;1680:9;1661:29;:::i;:::-;1651:39;;1709:38;1743:2;1732:9;1728:18;1709:38;:::i;:::-;1699:48;;1794:2;1783:9;1779:18;1766:32;1756:42;;1476:328;;;;;:::o;1998:180::-;2057:6;2110:2;2098:9;2089:7;2085:23;2081:32;2078:52;;;2126:1;2123;2116:12;2078:52;-1:-1:-1;2149:23:1;;1998:180;-1:-1:-1;1998:180:1:o;2183:186::-;2242:6;2295:2;2283:9;2274:7;2270:23;2266:32;2263:52;;;2311:1;2308;2301:12;2263:52;2334:29;2353:9;2334:29;:::i;:::-;2324:39;2183:186;-1:-1:-1;;;2183:186:1:o;2582:260::-;2650:6;2658;2711:2;2699:9;2690:7;2686:23;2682:32;2679:52;;;2727:1;2724;2717:12;2679:52;2750:29;2769:9;2750:29;:::i;:::-;2740:39;;2798:38;2832:2;2821:9;2817:18;2798:38;:::i;:::-;2788:48;;2582:260;;;;;:::o;2847:380::-;2926:1;2922:12;;;;2969;;;2990:61;;3044:4;3036:6;3032:17;3022:27;;2990:61;3097:2;3089:6;3086:14;3066:18;3063:38;3060:161;;;3143:10;3138:3;3134:20;3131:1;3124:31;3178:4;3175:1;3168:15;3206:4;3203:1;3196:15;3060:161;;2847:380;;;:::o;3577:225::-;3617:3;3648:1;3644:6;3641:1;3638:13;3635:136;;;3693:10;3688:3;3684:20;3681:1;3674:31;3728:4;3725:1;3718:15;3756:4;3753:1;3746:15;3635:136;-1:-1:-1;3787:9:1;;3577:225::o;3807:184::-;3877:6;3930:2;3918:9;3909:7;3905:23;3901:32;3898:52;;;3946:1;3943;3936:12;3898:52;-1:-1:-1;3969:16:1;;3807:184;-1:-1:-1;3807:184:1:o;5133:277::-;5200:6;5253:2;5241:9;5232:7;5228:23;5224:32;5221:52;;;5269:1;5266;5259:12;5221:52;5301:9;5295:16;5354:5;5347:13;5340:21;5333:5;5330:32;5320:60;;5376:1;5373;5366:12;11018:274;11147:3;11185:6;11179:13;11201:53;11247:6;11242:3;11235:4;11227:6;11223:17;11201:53;:::i;:::-;11270:16;;;;;11018:274;-1:-1:-1;;11018:274:1:o
Swarm Source
ipfs://ffc5aacfdd70a5f201dacafac53b1d0fbf3d0911aa672066381ee2be1b1c32ab
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.