Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 923 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21403238 | 13 days ago | IN | 0 ETH | 0.00067598 | ||||
Transfer | 21400662 | 13 days ago | IN | 0 ETH | 0.00070099 | ||||
Transfer | 21252959 | 34 days ago | IN | 0 ETH | 0.00053523 | ||||
Approve | 21215850 | 39 days ago | IN | 0 ETH | 0.00055302 | ||||
Transfer | 21178458 | 44 days ago | IN | 0 ETH | 0.00147844 | ||||
Transfer | 20974450 | 73 days ago | IN | 0 ETH | 0.00089307 | ||||
Approve | 20974249 | 73 days ago | IN | 0 ETH | 0.00024066 | ||||
Approve | 20974218 | 73 days ago | IN | 0 ETH | 0.00028241 | ||||
Approve | 20974211 | 73 days ago | IN | 0 ETH | 0.00046751 | ||||
Transfer | 20865796 | 88 days ago | IN | 0 ETH | 0.00148518 | ||||
Approve | 20807006 | 96 days ago | IN | 0 ETH | 0.00043519 | ||||
Transfer | 20606683 | 124 days ago | IN | 0 ETH | 0.00005439 | ||||
Approve | 20606669 | 124 days ago | IN | 0 ETH | 0.0000229 | ||||
Approve | 20606663 | 124 days ago | IN | 0 ETH | 0.00004215 | ||||
Approve | 20575680 | 128 days ago | IN | 0 ETH | 0.00012554 | ||||
Approve | 20546444 | 132 days ago | IN | 0 ETH | 0.00002142 | ||||
Approve | 20546316 | 132 days ago | IN | 0 ETH | 0.00002354 | ||||
Approve | 20546298 | 132 days ago | IN | 0 ETH | 0.00003935 | ||||
Approve | 20537866 | 134 days ago | IN | 0 ETH | 0.00005002 | ||||
Approve | 20494246 | 140 days ago | IN | 0 ETH | 0.00006385 | ||||
Transfer | 20415894 | 151 days ago | IN | 0 ETH | 0.00010401 | ||||
Approve | 20415860 | 151 days ago | IN | 0 ETH | 0.00006706 | ||||
Approve | 20376470 | 156 days ago | IN | 0 ETH | 0.00013901 | ||||
Approve | 20320580 | 164 days ago | IN | 0 ETH | 0.00078092 | ||||
Transfer | 20171978 | 185 days ago | IN | 0 ETH | 0.00020369 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18546907 | 412 days ago | 0.01296372 ETH |
Loading...
Loading
Contract Name:
HUNDRED
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract HUNDRED is ERC20, Ownable { uint256 private constant TOTAL_SUPPLY = 101_000_000_000 * 10**18; uint256 public constant lockPeriod = 100 hours; address public uniswapPair; IUniswapV2Router02 public uniswapRouter; event RouterUpdated(address indexed oldRouter, address indexed newRouter, address indexed newPair); event ExcludedFromLockPeriod(address indexed account); event IncludedInTimeLock(address indexed account); event Blacklisted(address indexed account); event Unblacklisted(address indexed account); mapping(address => uint256) public timeStamps; mapping(address => bool) public excludedFromLockPeriod; mapping(address => bool) public uniswapPairs; mapping(address => bool) public blacklisted; constructor() ERC20("HUNDRED", "HUNDRED") { _mint(msg.sender, TOTAL_SUPPLY); IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapRouter = _uniswapRouter; uniswapPair = IUniswapV2Factory(_uniswapRouter.factory()) .createPair(address(this), _uniswapRouter.WETH()); // Exclude owner/dev wallet and router from lock period excludedFromLockPeriod[msg.sender] = true; excludedFromLockPeriod[address(uniswapRouter)] = true; emit ExcludedFromLockPeriod(msg.sender); emit ExcludedFromLockPeriod(address(uniswapRouter)); } function setNewRouter(address _newRouterAddress) external onlyOwner { require(_newRouterAddress != address(0), "New router address cannot be the zero address"); IUniswapV2Router02 _newRouter = IUniswapV2Router02(_newRouterAddress); address _pair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this), _newRouter.WETH()); require(_pair != address(0), "New pair not found"); // Update the uniswapRouter and uniswapPair addresses uniswapRouter = _newRouter; uniswapPairs[_pair] = true; } function excludeFromLockPeriod(address _address) external onlyOwner { excludedFromLockPeriod[_address] = true; } function includeInTimeLock(address _address) external onlyOwner { excludedFromLockPeriod[_address] = false; } function transfer(address recipient, uint256 amount) public override returns (bool) { address sender = _msgSender(); _transfer(sender, recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = allowance(sender, _msgSender()); require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function _transfer(address sender, address recipient, uint256 amount) internal override { require(!blacklisted[sender], "Sender is blacklisted"); require(!blacklisted[recipient], "Recipient is blacklisted"); require(amount > 0, "Transfer amount must be greater than zero"); require(balanceOf(sender) >= amount, "Insufficient balance"); // Check if sender is in the time lock period if (!excludedFromLockPeriod[sender] && sender != owner() && sender != address(uniswapRouter)) { require(block.timestamp >= timeStamps[sender], "Time lock is still active"); } // Check if recipient is in the time lock period if (!excludedFromLockPeriod[recipient] && recipient != owner() && recipient != address(uniswapRouter)) { require(timeStamps[recipient] == 0 || block.timestamp >= timeStamps[recipient], "Recipient in time lock"); timeStamps[recipient] = block.timestamp + lockPeriod; } super._transfer(sender, recipient, amount); } function blacklistAddress(address _address) external onlyOwner { require(!blacklisted[_address], "Address is already blacklisted"); blacklisted[_address] = true; emit Blacklisted(_address); } function unblacklistAddress(address _address) external onlyOwner { require(blacklisted[_address], "Address is not blacklisted"); blacklisted[_address] = false; emit Unblacklisted(_address); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","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":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludedFromLockPeriod","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"IncludedInTimeLock","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":"oldRouter","type":"address"},{"indexed":true,"internalType":"address","name":"newRouter","type":"address"},{"indexed":true,"internalType":"address","name":"newPair","type":"address"}],"name":"RouterUpdated","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":true,"internalType":"address","name":"account","type":"address"}],"name":"Unblacklisted","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeFromLockPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromLockPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeInTimeLock","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":"lockPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRouterAddress","type":"address"}],"name":"setNewRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"timeStamps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"unblacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040805180820182526007808252661215539114915160ca1b6020808401828152855180870190965292855284015281519192916200005491600391620003e6565b5080516200006a906004906020840190620003e6565b5050506200008762000081620002c960201b60201c565b620002cd565b620000a0336c0146593deb0d429807880000006200031f565b600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051829163c45a0155916004808301926020929190829003018186803b1580156200010157600080fd5b505afa15801562000116573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013c91906200048c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200018557600080fd5b505afa1580156200019a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c091906200048c565b6040518363ffffffff1660e01b8152600401620001df929190620004bc565b602060405180830381600087803b158015620001fa57600080fd5b505af11580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023591906200048c565b600680546001600160a01b0319166001600160a01b0392831617905533600081815260096020526040808220805460ff19908116600190811790925560075490951683528183208054909516179093559151909160008051602062001a9883398151915291a26007546040516001600160a01b039091169060008051602062001a9883398151915290600090a25062000578565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003515760405162461bcd60e51b81526004016200034890620004d6565b60405180910390fd5b6200035f60008383620003e1565b806002600082825462000373919062000516565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620003c79085906200050d565b60405180910390a3620003dd60008383620003e1565b5050565b505050565b828054620003f4906200053b565b90600052602060002090601f01602090048101928262000418576000855562000463565b82601f106200043357805160ff191683800117855562000463565b8280016001018555821562000463579182015b828111156200046357825182559160200191906001019062000446565b506200047192915062000475565b5090565b5b8082111562000471576000815560010162000476565b6000602082840312156200049e578081fd5b81516001600160a01b0381168114620004b5578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200053657634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200055057607f821691505b602082108114156200057257634e487b7160e01b600052602260045260246000fd5b50919050565b61151080620005886000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063735de9f7116100de578063c831f60611610097578063eafb5a3c11610071578063eafb5a3c1461031e578063f2fde38b14610331578063f3290d7514610344578063fdf3dd9c146103575761018e565b8063c831f606146102e5578063dbac26e9146102f8578063dd62ed3e1461030b5761018e565b8063735de9f7146102925780638da5cb5b146102a757806395d89b41146102af578063a457c2d7146102b7578063a9059cbb146102ca578063c816841b146102dd5761018e565b8063313ce5671161014b57806345e349491161012557806345e349491461025157806367e00e881461026457806370a0823114610277578063715018a61461028a5761018e565b8063313ce5671461022157806339509351146102365780633fd8b02f146102495761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d1578063227b453f146101e657806323b872dd146101fb5780633078381c1461020e575b600080fd5b61019b61036a565b6040516101a89190610f54565b60405180910390f35b6101c46101bf366004610ef0565b6103fc565b6040516101a89190610f49565b6101d961041e565b6040516101a8919061142e565b6101f96101f4366004610e39565b610424565b005b6101c4610209366004610eb0565b61044d565b6101c461021c366004610e39565b6104b9565b6102296104ce565b6040516101a89190611437565b6101c4610244366004610ef0565b6104d3565b6101d96104fa565b6101f961025f366004610e39565b610501565b6101c4610272366004610e39565b61058a565b6101d9610285366004610e39565b61059f565b6101f96105ba565b61029a6105ce565b6040516101a89190610f1b565b61029a6105dd565b61019b6105ec565b6101c46102c5366004610ef0565b6105fb565b6101c46102d8366004610ef0565b610643565b61029a61065b565b6101d96102f3366004610e39565b61066a565b6101c4610306366004610e39565b61067c565b6101d9610319366004610e78565b610691565b6101f961032c366004610e39565b6106bc565b6101f961033f366004610e39565b6108b2565b6101f9610352366004610e39565b6108ec565b6101f9610365366004610e39565b610979565b60606003805461037990611474565b80601f01602080910402602001604051908101604052809291908181526020018280546103a590611474565b80156103f25780601f106103c7576101008083540402835291602001916103f2565b820191906000526020600020905b8154815290600101906020018083116103d557829003601f168201915b5050505050905090565b6000806104076109a5565b90506104148185856109a9565b5060019392505050565b60025490565b61042c610a5d565b6001600160a01b03166000908152600960205260409020805460ff19169055565b600061045a848484610a9c565b6000610468856103196109a5565b9050828110156104935760405162461bcd60e51b815260040161048a90611200565b60405180910390fd5b6104ae8561049f6109a5565b6104a9868561145d565b6109a9565b506001949350505050565b60096020526000908152604090205460ff1681565b601290565b6000806104de6109a5565b90506104148185856104f08589610691565b6104a99190611445565b62057e4081565b610509610a5d565b6001600160a01b0381166000908152600b602052604090205460ff166105415760405162461bcd60e51b815260040161048a9061130b565b6001600160a01b0381166000818152600b6020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b600a6020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b6105c2610a5d565b6105cc6000610ce0565b565b6007546001600160a01b031681565b6005546001600160a01b031690565b60606004805461037990611474565b6000806106066109a5565b905060006106148286610691565b9050838110156106365760405162461bcd60e51b815260040161048a906113b2565b6104ae82868684036109a9565b60008061064e6109a5565b9050610414818585610a9c565b6006546001600160a01b031681565b60086020526000908152604090205481565b600b6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106c4610a5d565b6001600160a01b0381166106ea5760405162461bcd60e51b815260040161048a9061101a565b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561072a57600080fd5b505afa15801561073e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107629190610e5c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156107aa57600080fd5b505afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e29190610e5c565b6040518363ffffffff1660e01b81526004016107ff929190610f2f565b602060405180830381600087803b15801561081957600080fd5b505af115801561082d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108519190610e5c565b90506001600160a01b0381166108795760405162461bcd60e51b815260040161048a90611386565b600780546001600160a01b0319166001600160a01b03938416179055166000908152600a60205260409020805460ff1916600117905550565b6108ba610a5d565b6001600160a01b0381166108e05760405162461bcd60e51b815260040161048a90611067565b6108e981610ce0565b50565b6108f4610a5d565b6001600160a01b0381166000908152600b602052604090205460ff161561092d5760405162461bcd60e51b815260040161048a906111c9565b6001600160a01b0381166000818152600b6020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b610981610a5d565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b3390565b6001600160a01b0383166109cf5760405162461bcd60e51b815260040161048a90611342565b6001600160a01b0382166109f55760405162461bcd60e51b815260040161048a906110ad565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a5090859061142e565b60405180910390a3505050565b610a656109a5565b6001600160a01b0316610a766105dd565b6001600160a01b0316146105cc5760405162461bcd60e51b815260040161048a90611248565b6001600160a01b0383166000908152600b602052604090205460ff1615610ad55760405162461bcd60e51b815260040161048a9061119a565b6001600160a01b0382166000908152600b602052604090205460ff1615610b0e5760405162461bcd60e51b815260040161048a906110ef565b60008111610b2e5760405162461bcd60e51b815260040161048a9061127d565b80610b388461059f565b1015610b565760405162461bcd60e51b815260040161048a9061116c565b6001600160a01b03831660009081526009602052604090205460ff16158015610b985750610b826105dd565b6001600160a01b0316836001600160a01b031614155b8015610bb257506007546001600160a01b03848116911614155b15610bef576001600160a01b038316600090815260086020526040902054421015610bef5760405162461bcd60e51b815260040161048a906113f7565b6001600160a01b03821660009081526009602052604090205460ff16158015610c315750610c1b6105dd565b6001600160a01b0316826001600160a01b031614155b8015610c4b57506007546001600160a01b03838116911614155b15610cd0576001600160a01b0382166000908152600860205260409020541580610c8d57506001600160a01b0382166000908152600860205260409020544210155b610ca95760405162461bcd60e51b815260040161048a90610fea565b610cb662057e4042611445565b6001600160a01b0383166000908152600860205260409020555b610cdb838383610d32565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d585760405162461bcd60e51b815260040161048a906112c6565b6001600160a01b038216610d7e5760405162461bcd60e51b815260040161048a90610fa7565b610d89838383610cdb565b6001600160a01b03831660009081526020819052604090205481811015610dc25760405162461bcd60e51b815260040161048a90611126565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e2090869061142e565b60405180910390a3610e33848484610cdb565b50505050565b600060208284031215610e4a578081fd5b8135610e55816114c5565b9392505050565b600060208284031215610e6d578081fd5b8151610e55816114c5565b60008060408385031215610e8a578081fd5b8235610e95816114c5565b91506020830135610ea5816114c5565b809150509250929050565b600080600060608486031215610ec4578081fd5b8335610ecf816114c5565b92506020840135610edf816114c5565b929592945050506040919091013590565b60008060408385031215610f02578182fd5b8235610f0d816114c5565b946020939093013593505050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610f8057858101830151858201604001528201610f64565b81811115610f915783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260169082015275526563697069656e7420696e2074696d65206c6f636b60501b604082015260600190565b6020808252602d908201527f4e657720726f7574657220616464726573732063616e6e6f742062652074686560408201526c207a65726f206164647265737360981b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526018908201527f526563697069656e7420697320626c61636b6c69737465640000000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b60208082526015908201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604082015260600190565b6020808252601e908201527f4164647265737320697320616c726561647920626c61636b6c69737465640000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f41646472657373206973206e6f7420626c61636b6c6973746564000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526012908201527113995dc81c185a5c881b9bdd08199bdd5b9960721b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60208082526019908201527f54696d65206c6f636b206973207374696c6c2061637469766500000000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611458576114586114af565b500190565b60008282101561146f5761146f6114af565b500390565b60028104600182168061148857607f821691505b602082108114156114a957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146108e957600080fdfea2646970667358221220e7283c80849fb168d52143ee8a4a52705470adf181d7f17394f2b5a43a0b97db64736f6c63430008000033c93bc17a700271bf59796cbfa01b47b8b95654209793470e3cdbadf87465a843
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063735de9f7116100de578063c831f60611610097578063eafb5a3c11610071578063eafb5a3c1461031e578063f2fde38b14610331578063f3290d7514610344578063fdf3dd9c146103575761018e565b8063c831f606146102e5578063dbac26e9146102f8578063dd62ed3e1461030b5761018e565b8063735de9f7146102925780638da5cb5b146102a757806395d89b41146102af578063a457c2d7146102b7578063a9059cbb146102ca578063c816841b146102dd5761018e565b8063313ce5671161014b57806345e349491161012557806345e349491461025157806367e00e881461026457806370a0823114610277578063715018a61461028a5761018e565b8063313ce5671461022157806339509351146102365780633fd8b02f146102495761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d1578063227b453f146101e657806323b872dd146101fb5780633078381c1461020e575b600080fd5b61019b61036a565b6040516101a89190610f54565b60405180910390f35b6101c46101bf366004610ef0565b6103fc565b6040516101a89190610f49565b6101d961041e565b6040516101a8919061142e565b6101f96101f4366004610e39565b610424565b005b6101c4610209366004610eb0565b61044d565b6101c461021c366004610e39565b6104b9565b6102296104ce565b6040516101a89190611437565b6101c4610244366004610ef0565b6104d3565b6101d96104fa565b6101f961025f366004610e39565b610501565b6101c4610272366004610e39565b61058a565b6101d9610285366004610e39565b61059f565b6101f96105ba565b61029a6105ce565b6040516101a89190610f1b565b61029a6105dd565b61019b6105ec565b6101c46102c5366004610ef0565b6105fb565b6101c46102d8366004610ef0565b610643565b61029a61065b565b6101d96102f3366004610e39565b61066a565b6101c4610306366004610e39565b61067c565b6101d9610319366004610e78565b610691565b6101f961032c366004610e39565b6106bc565b6101f961033f366004610e39565b6108b2565b6101f9610352366004610e39565b6108ec565b6101f9610365366004610e39565b610979565b60606003805461037990611474565b80601f01602080910402602001604051908101604052809291908181526020018280546103a590611474565b80156103f25780601f106103c7576101008083540402835291602001916103f2565b820191906000526020600020905b8154815290600101906020018083116103d557829003601f168201915b5050505050905090565b6000806104076109a5565b90506104148185856109a9565b5060019392505050565b60025490565b61042c610a5d565b6001600160a01b03166000908152600960205260409020805460ff19169055565b600061045a848484610a9c565b6000610468856103196109a5565b9050828110156104935760405162461bcd60e51b815260040161048a90611200565b60405180910390fd5b6104ae8561049f6109a5565b6104a9868561145d565b6109a9565b506001949350505050565b60096020526000908152604090205460ff1681565b601290565b6000806104de6109a5565b90506104148185856104f08589610691565b6104a99190611445565b62057e4081565b610509610a5d565b6001600160a01b0381166000908152600b602052604090205460ff166105415760405162461bcd60e51b815260040161048a9061130b565b6001600160a01b0381166000818152600b6020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b600a6020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b6105c2610a5d565b6105cc6000610ce0565b565b6007546001600160a01b031681565b6005546001600160a01b031690565b60606004805461037990611474565b6000806106066109a5565b905060006106148286610691565b9050838110156106365760405162461bcd60e51b815260040161048a906113b2565b6104ae82868684036109a9565b60008061064e6109a5565b9050610414818585610a9c565b6006546001600160a01b031681565b60086020526000908152604090205481565b600b6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106c4610a5d565b6001600160a01b0381166106ea5760405162461bcd60e51b815260040161048a9061101a565b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561072a57600080fd5b505afa15801561073e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107629190610e5c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156107aa57600080fd5b505afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e29190610e5c565b6040518363ffffffff1660e01b81526004016107ff929190610f2f565b602060405180830381600087803b15801561081957600080fd5b505af115801561082d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108519190610e5c565b90506001600160a01b0381166108795760405162461bcd60e51b815260040161048a90611386565b600780546001600160a01b0319166001600160a01b03938416179055166000908152600a60205260409020805460ff1916600117905550565b6108ba610a5d565b6001600160a01b0381166108e05760405162461bcd60e51b815260040161048a90611067565b6108e981610ce0565b50565b6108f4610a5d565b6001600160a01b0381166000908152600b602052604090205460ff161561092d5760405162461bcd60e51b815260040161048a906111c9565b6001600160a01b0381166000818152600b6020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b610981610a5d565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b3390565b6001600160a01b0383166109cf5760405162461bcd60e51b815260040161048a90611342565b6001600160a01b0382166109f55760405162461bcd60e51b815260040161048a906110ad565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a5090859061142e565b60405180910390a3505050565b610a656109a5565b6001600160a01b0316610a766105dd565b6001600160a01b0316146105cc5760405162461bcd60e51b815260040161048a90611248565b6001600160a01b0383166000908152600b602052604090205460ff1615610ad55760405162461bcd60e51b815260040161048a9061119a565b6001600160a01b0382166000908152600b602052604090205460ff1615610b0e5760405162461bcd60e51b815260040161048a906110ef565b60008111610b2e5760405162461bcd60e51b815260040161048a9061127d565b80610b388461059f565b1015610b565760405162461bcd60e51b815260040161048a9061116c565b6001600160a01b03831660009081526009602052604090205460ff16158015610b985750610b826105dd565b6001600160a01b0316836001600160a01b031614155b8015610bb257506007546001600160a01b03848116911614155b15610bef576001600160a01b038316600090815260086020526040902054421015610bef5760405162461bcd60e51b815260040161048a906113f7565b6001600160a01b03821660009081526009602052604090205460ff16158015610c315750610c1b6105dd565b6001600160a01b0316826001600160a01b031614155b8015610c4b57506007546001600160a01b03838116911614155b15610cd0576001600160a01b0382166000908152600860205260409020541580610c8d57506001600160a01b0382166000908152600860205260409020544210155b610ca95760405162461bcd60e51b815260040161048a90610fea565b610cb662057e4042611445565b6001600160a01b0383166000908152600860205260409020555b610cdb838383610d32565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d585760405162461bcd60e51b815260040161048a906112c6565b6001600160a01b038216610d7e5760405162461bcd60e51b815260040161048a90610fa7565b610d89838383610cdb565b6001600160a01b03831660009081526020819052604090205481811015610dc25760405162461bcd60e51b815260040161048a90611126565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e2090869061142e565b60405180910390a3610e33848484610cdb565b50505050565b600060208284031215610e4a578081fd5b8135610e55816114c5565b9392505050565b600060208284031215610e6d578081fd5b8151610e55816114c5565b60008060408385031215610e8a578081fd5b8235610e95816114c5565b91506020830135610ea5816114c5565b809150509250929050565b600080600060608486031215610ec4578081fd5b8335610ecf816114c5565b92506020840135610edf816114c5565b929592945050506040919091013590565b60008060408385031215610f02578182fd5b8235610f0d816114c5565b946020939093013593505050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610f8057858101830151858201604001528201610f64565b81811115610f915783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260169082015275526563697069656e7420696e2074696d65206c6f636b60501b604082015260600190565b6020808252602d908201527f4e657720726f7574657220616464726573732063616e6e6f742062652074686560408201526c207a65726f206164647265737360981b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526018908201527f526563697069656e7420697320626c61636b6c69737465640000000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260149082015273496e73756666696369656e742062616c616e636560601b604082015260600190565b60208082526015908201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604082015260600190565b6020808252601e908201527f4164647265737320697320616c726561647920626c61636b6c69737465640000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f41646472657373206973206e6f7420626c61636b6c6973746564000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526012908201527113995dc81c185a5c881b9bdd08199bdd5b9960721b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60208082526019908201527f54696d65206c6f636b206973207374696c6c2061637469766500000000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611458576114586114af565b500190565b60008282101561146f5761146f6114af565b500390565b60028104600182168061148857607f821691505b602082108114156114a957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146108e957600080fdfea2646970667358221220e7283c80849fb168d52143ee8a4a52705470adf181d7f17394f2b5a43a0b97db64736f6c63430008000033
Loading...
Loading
Loading...
Loading
OVERVIEW
$HUNDRED is the ONLY memecoin with anti-paper hands protection.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.