Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 22 from a total of 22 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 18840326 | 805 days ago | IN | 0 ETH | 0.00179071 | ||||
| Transfer | 18835926 | 806 days ago | IN | 0 ETH | 0.00506747 | ||||
| Transfer | 18834484 | 806 days ago | IN | 0 ETH | 0.00316376 | ||||
| Transfer | 18834457 | 806 days ago | IN | 0 ETH | 0.00544479 | ||||
| Transfer | 18834331 | 806 days ago | IN | 0 ETH | 0.00369637 | ||||
| Transfer | 18829699 | 807 days ago | IN | 0 ETH | 0.00474837 | ||||
| Transfer | 18829603 | 807 days ago | IN | 0 ETH | 0.00423215 | ||||
| Transfer | 18826378 | 807 days ago | IN | 0 ETH | 0.00598963 | ||||
| Transfer | 18824982 | 808 days ago | IN | 0 ETH | 0.00302579 | ||||
| Transfer | 18824693 | 808 days ago | IN | 0 ETH | 0.00361923 | ||||
| Transfer | 18824315 | 808 days ago | IN | 0 ETH | 0.00291514 | ||||
| Transfer | 18824211 | 808 days ago | IN | 0 ETH | 0.00325904 | ||||
| Transfer | 18824117 | 808 days ago | IN | 0 ETH | 0.00156216 | ||||
| Transfer | 18824091 | 808 days ago | IN | 0 ETH | 0.00253542 | ||||
| Transfer | 18824002 | 808 days ago | IN | 0 ETH | 0.0025965 | ||||
| Transfer | 18823896 | 808 days ago | IN | 0 ETH | 0.00163874 | ||||
| Transfer | 18823862 | 808 days ago | IN | 0 ETH | 0.00492632 | ||||
| Transfer | 18823826 | 808 days ago | IN | 0 ETH | 0.00292612 | ||||
| Transfer | 18823772 | 808 days ago | IN | 0 ETH | 0.00270276 | ||||
| Transfer | 18823503 | 808 days ago | IN | 0 ETH | 0.00337442 | ||||
| Transfer | 18823397 | 808 days ago | IN | 0 ETH | 0.00302942 | ||||
| Transfer | 18823306 | 808 days ago | IN | 0 ETH | 0.00373815 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 11 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
|||
|---|---|---|---|---|---|---|---|---|
| Token1 | 18834457 | 806 days ago | 0 ETH | |||||
| Token0 | 18834457 | 806 days ago | 0 ETH | |||||
| Get Reserves | 18834457 | 806 days ago | 0 ETH | |||||
| Get Amounts Out | 18834457 | 806 days ago | 0 ETH | |||||
| Token1 | 18823862 | 808 days ago | 0 ETH | |||||
| Token0 | 18823862 | 808 days ago | 0 ETH | |||||
| Get Reserves | 18823862 | 808 days ago | 0 ETH | |||||
| Get Amounts Out | 18823862 | 808 days ago | 0 ETH | |||||
| Create Pair | 18792056 | 812 days ago | 0 ETH | |||||
| Factory | 18792056 | 812 days ago | 0 ETH | |||||
| WETH | 18792056 | 812 days ago | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Rat
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/**
Rampage Access Token - https://rampage.bot
https://www.youtube.com/watch?v=r6l_9reaLz0
Cope harder, bitches. You can't stop this, and you sure as fuck can't steal it like you tried to.
_..----.._ _
.' .--. "-.(0)_
'-.__.-'"'=:| , _)_ \__ . c\'-..
'''------'---''---'-"
*/
// SPDX-License-Identifier: UNLICENSED
// File @openzeppelin/contracts/utils/Context.sol@v4.9.3
// 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/Ownable.sol@v4.9.3
// OpenZeppelin Contracts (last updated v4.9.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. 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);
}
}
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.9.3
// 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);
}
// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.9.3
// 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/ERC20.sol@v4.9.3
// OpenZeppelin Contracts (last updated v4.9.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].
*
* 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 {}
}
// File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol@v1.1.0-beta.0
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
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);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable returns (uint[] memory amounts);
function swapTokensForExactETH(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactTokensForETH(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapETHForExactTokens(
uint amountOut,
address[] calldata path,
address to,
uint deadline
) external payable returns (uint[] memory amounts);
function quote(
uint amountA,
uint reserveA,
uint reserveB
) external pure returns (uint amountB);
function getAmountOut(
uint amountIn,
uint reserveIn,
uint reserveOut
) external pure returns (uint amountOut);
function getAmountIn(
uint amountOut,
uint reserveIn,
uint reserveOut
) external pure returns (uint amountIn);
function getAmountsOut(
uint amountIn,
address[] calldata path
) external view returns (uint[] memory amounts);
function getAmountsIn(
uint amountOut,
address[] calldata path
) external view returns (uint[] memory amounts);
}
// File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol@v1.1.0-beta.0
pragma solidity >=0.6.2;
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
// File @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol@v1.0.0
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(
address tokenA,
address tokenB
) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// File @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol@v1.0.0
pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(
address owner,
address spender
) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(
address from,
address to,
uint value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(
address owner,
address spender,
uint value,
uint deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(
address indexed sender,
uint amount0,
uint amount1,
address indexed to
);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves()
external
view
returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(
uint amount0Out,
uint amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
// File contracts/rat.sol
pragma solidity ^0.8.9;
contract Rat is ERC20, Ownable {
address private WETH;
address public constant uniswapV2Router02 =
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
IUniswapV2Pair public pairContract;
IUniswapV2Router02 public router;
address public pair;
mapping(address => uint256) private buyBlock;
address private feeReceiver = 0x2E35f28BaC16588fa1dD55B995a6c07B2D15aB68;
uint16 public feeInitialPercentageBuy = 500;
uint16 public feeInitialPercentageSell = 500;
uint16 public feePercentageBuy = 500;
uint16 public feePercentageSell = 500;
uint16 public burnFeePercentage = 0;
uint256 public maxTokenAmountPerWallet = 0 * 10 ** decimals();
uint256 public maxTokenAmountPerTransaction = 0 * 10 ** decimals();
uint256 private buyCount = 0;
uint256 private initialBuyCountTreshold = 0;
uint256 public swapTreshold = 100000000000000000;
bool private inSwap = false;
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
constructor() ERC20(unicode"Rat", unicode"RAT") {
router = IUniswapV2Router02(uniswapV2Router02);
WETH = router.WETH();
pair = IUniswapV2Factory(router.factory()).createPair(
WETH,
address(this)
);
pairContract = IUniswapV2Pair(pair);
_approve(address(this), uniswapV2Router02, type(uint256).max);
_approve(address(this), pair, type(uint256).max);
_approve(msg.sender, uniswapV2Router02, type(uint256).max);
_mint(msg.sender, (8888888) * 10 ** decimals());
}
receive() external payable {}
modifier isBot(address from, address to) {
require(
block.number > buyBlock[from] || block.number > buyBlock[to],
"Cannot perform more than one transaction in the same block"
);
_;
buyBlock[from] = block.number;
buyBlock[to] = block.number;
}
function checkMaxTransactionAmountExceeded(uint256 amount) private view {
if (msg.sender != owner() || msg.sender != address(this))
require(
amount <= maxTokenAmountPerTransaction,
"Max token per transaction exceeded"
);
}
function checkMaxWalletAmountExceeded(
address to,
uint256 amount
) private view {
if (msg.sender != owner() || to != address(this))
require(
balanceOf(to) + amount <= maxTokenAmountPerWallet,
"Max token per wallet exceeded"
);
}
function calculateTokenAmountInETH(
uint256 amount
) public view returns (uint256) {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = WETH;
try router.getAmountsOut(amount, path) returns (
uint[] memory amountsOut
) {
return amountsOut[1];
} catch {
return 0;
}
}
function swapBalanceToETHAndSend() private lockTheSwap {
uint256 amountIn = balanceOf(address(this));
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = WETH;
router.swapExactTokensForETHSupportingFeeOnTransferTokens(
amountIn,
0,
path,
address(this),
block.timestamp
);
payable(feeReceiver).transfer(address(this).balance);
}
function distributeFees() private {
uint256 amountInETH = calculateTokenAmountInETH(
balanceOf(address(this))
);
(uint112 reserve0, uint112 reserve1, ) = pairContract.getReserves();
uint256 totalETHInPool;
if (pairContract.token0() == WETH) totalETHInPool = uint256(reserve0);
else if (pairContract.token1() == WETH)
totalETHInPool = uint256(reserve1);
if (amountInETH > swapTreshold) swapBalanceToETHAndSend();
}
function _transfer(
address from,
address to,
uint256 amount
) internal override isBot(from, to) {
if (
from == owner() ||
to == owner() ||
from == feeReceiver ||
to == feeReceiver ||
from == feeReceiver ||
to == feeReceiver ||
inSwap
) {
super._transfer(from, to, amount);
} else {
uint256 feePercentage = feePercentageBuy;
bool buying = from == pair && to != uniswapV2Router02;
bool selling = from != uniswapV2Router02 && to == pair;
if (msg.sender != pair && !inSwap) distributeFees();
if (buying) {
if (buyCount < initialBuyCountTreshold) {
feePercentage = feeInitialPercentageBuy;
buyCount++;
} else {
feePercentage = feePercentageBuy;
}
}
if (selling) {
if (buyCount < initialBuyCountTreshold) {
feePercentage = feeInitialPercentageSell;
} else {
feePercentage = feePercentageSell;
}
}
uint256 feeAmount = (amount * feePercentage) / (10000);
uint256 burnFeeAmount = (amount * burnFeePercentage) / (10000);
uint256 finalAmount = (amount - (feeAmount + burnFeeAmount));
if (maxTokenAmountPerTransaction > 0)
checkMaxTransactionAmountExceeded(amount);
if (buying && maxTokenAmountPerWallet > 0)
checkMaxWalletAmountExceeded(to, finalAmount);
if (burnFeeAmount > 0) _burn(from, burnFeeAmount);
super._transfer(from, address(this), feeAmount);
super._transfer(from, to, finalAmount);
}
}
function manualSwap() public {
if (msg.sender == feeReceiver) {
swapBalanceToETHAndSend();
}
}
function removeLimits() public {
if (msg.sender == feeReceiver) {
maxTokenAmountPerWallet = 0;
maxTokenAmountPerTransaction = 0;
}
}
function removeTaxes() public {
if (msg.sender == feeReceiver) {
feePercentageBuy = 0;
feePercentageSell = 0;
burnFeePercentage = 0;
}
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "byzantium",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"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":"burnFeePercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateTokenAmountInETH","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":"feeInitialPercentageBuy","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeInitialPercentageSell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentageBuy","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentageSell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenAmountPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerWallet","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairContract","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"uniswapV2Router02","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052600b80547fffff000000000000000000000000000000000000000000000000000000000000167b01f401f401f401f42e35f28bac16588fa1dd55b995a6c07b2d15ab681790556200005d6401000000006200048a810204565b6200006a90600a62000960565b6200007790600062000978565b600c556200008d6401000000006200048a810204565b6200009a90600a62000960565b620000a790600062000978565b600d556000600e819055600f5567016345785d8a00006010556011805460ff19169055348015620000d757600080fd5b5060408051808201825260038082527f5261740000000000000000000000000000000000000000000000000000000000602080840191825284518086019095528285527f52415400000000000000000000000000000000000000000000000000000000009085015282519293926200015192919062000789565b5080516200016790600490602084019062000789565b50505062000196620001876200048f640100000000026401000000009004565b64010000000062000493810204565b60088054600160a060020a031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155604080517fad5c4648000000000000000000000000000000000000000000000000000000008152905163ad5c464891600480820192602092909190829003018186803b1580156200020f57600080fd5b505afa15801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a91906200099a565b60068054600160a060020a031916600160a060020a03928316179055600854604080517fc45a01550000000000000000000000000000000000000000000000000000000081529051919092169163c45a0155916004808301926020929190829003018186803b158015620002bd57600080fd5b505afa158015620002d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f891906200099a565b6006546040517fc9c65396000000000000000000000000000000000000000000000000000000008152600160a060020a03918216600482015230602482015291169063c9c6539690604401602060405180830381600087803b1580156200035e57600080fd5b505af115801562000373573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039991906200099a565b60098054600160a060020a0392909216600160a060020a0319928316811790915560078054909216179055620003f030737a250d5630b4cf539739df2c5dacb4c659f2488d600019640100000000620004e5810204565b60095462000415903090600160a060020a0316600019640100000000620004e5810204565b6200044133737a250d5630b4cf539739df2c5dacb4c659f2488d600019640100000000620004e5810204565b6200048433620004596401000000006200048a810204565b6200046690600a62000960565b62000475906287a23862000978565b64010000000062000679810204565b62000a36565b601290565b3390565b60058054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a03831662000580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b600160a060020a03821662000618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840162000577565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600160a060020a038216620006eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000577565b620007026000838364010000000062000784810204565b8060026000828254620007169190620009c5565b9091555050600160a060020a038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620007806000838364010000000062000784810204565b5050565b505050565b8280546200079790620009e0565b90600052602060002090601f016020900481019282620007bb576000855562000806565b82601f10620007d657805160ff191683800117855562000806565b8280016001018555821562000806579182015b8281111562000806578251825591602001919060010190620007e9565b506200081492915062000818565b5090565b5b8082111562000814576000815560010162000819565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181815b80851115620008a15781600019048211156200088357620008836200082f565b808516156200089157918102915b6002909404939080029062000863565b509250929050565b600082620008ba575060016200095a565b81620008c9575060006200095a565b8160018114620008e25760028114620008ed576200090e565b60019150506200095a565b60ff8411156200090157620009016200082f565b8360020a9150506200095a565b5060208310610133831016604e8410600b841016171562000933575081810a6200095a565b6200093f83836200085e565b80600019048211156200095657620009566200082f565b0290505b92915050565b60006200097160ff841683620008a9565b9392505050565b60008160001904831182151516156200099557620009956200082f565b500290565b600060208284031215620009ad57600080fd5b8151600160a060020a03811681146200097157600080fd5b60008219821115620009db57620009db6200082f565b500190565b600281046001821680620009f557607f821691505b6020821081141562000a30577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b611d868062000a466000396000f3fe6080604052600436106101d55760003560e060020a90048063715018a6116100fb578063a8aa1b3111610099578063dd62ed3e11610068578063dd62ed3e1461058b578063e52fb9ec146105ab578063f2fde38b146105c1578063f887ea40146105e157600080fd5b8063a8aa1b31146104f0578063a9059cbb14610510578063ab99904214610530578063c4ceb3391461056957600080fd5b80639277883d116100d55780639277883d1461047357806395d89b4114610493578063a457c2d7146104a8578063a7c6402c146104c857600080fd5b8063715018a61461042b578063751039fc146104405780638da5cb5b1461045557600080fd5b8063395093511161017357806351bc3c851161014257806351bc3c85146103b3578063685fbc6b146103ca57806369e1ea7f146103e057806370a08231146103f557600080fd5b8063395093511461030e5780633a4ceedd1461032e578063418bce8a146103655780634d709adf1461037b57600080fd5b806318160ddd116101af57806318160ddd1461028057806323b872dd1461029f578063313ce567146102bf5780633912a2c3146102db57600080fd5b80630214c463146101e157806306fdde031461022e578063095ea7b31461025057600080fd5b366101dc57005b600080fd5b3480156101ed57600080fd5b50600b5461021690760100000000000000000000000000000000000000000000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b34801561023a57600080fd5b50610243610601565b6040516102259190611904565b34801561025c57600080fd5b5061027061026b36600461196e565b610693565b6040519015158152602001610225565b34801561028c57600080fd5b506002545b604051908152602001610225565b3480156102ab57600080fd5b506102706102ba36600461199a565b6106ab565b3480156102cb57600080fd5b5060405160128152602001610225565b3480156102e757600080fd5b50600b546102169074010000000000000000000000000000000000000000900461ffff1681565b34801561031a57600080fd5b5061027061032936600461196e565b6106cf565b34801561033a57600080fd5b50600b54610216907801000000000000000000000000000000000000000000000000900461ffff1681565b34801561037157600080fd5b50610291600d5481565b34801561038757600080fd5b5060075461039b90600160a060020a031681565b604051600160a060020a039091168152602001610225565b3480156103bf57600080fd5b506103c86106f1565b005b3480156103d657600080fd5b50610291600c5481565b3480156103ec57600080fd5b506103c861070e565b34801561040157600080fd5b506102916104103660046119db565b600160a060020a031660009081526020819052604090205490565b34801561043757600080fd5b506103c861074b565b34801561044c57600080fd5b506103c861075d565b34801561046157600080fd5b50600554600160a060020a031661039b565b34801561047f57600080fd5b5061029161048e3660046119ff565b61077c565b34801561049f57600080fd5b506102436108c2565b3480156104b457600080fd5b506102706104c336600461196e565b6108d1565b3480156104d457600080fd5b5061039b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104fc57600080fd5b5060095461039b90600160a060020a031681565b34801561051c57600080fd5b5061027061052b36600461196e565b61096c565b34801561053c57600080fd5b50600b54610216907a010000000000000000000000000000000000000000000000000000900461ffff1681565b34801561057557600080fd5b50600b546102169060e060020a900461ffff1681565b34801561059757600080fd5b506102916105a6366004611a18565b61097a565b3480156105b757600080fd5b5061029160105481565b3480156105cd57600080fd5b506103c86105dc3660046119db565b6109a5565b3480156105ed57600080fd5b5060085461039b90600160a060020a031681565b60606003805461061090611a51565b80601f016020809104026020016040519081016040528092919081815260200182805461063c90611a51565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b6000336106a1818585610a38565b5060019392505050565b6000336106b9858285610b97565b6106c4858585610c14565b506001949350505050565b6000336106a18185856106e2838361097a565b6106ec9190611aa2565b610a38565b600b54600160a060020a031633141561070c5761070c611004565b565b600b54600160a060020a031633141561070c57600b80547fffff000000000000ffffffffffffffffffffffffffffffffffffffffffffffff169055565b610753611162565b61070c60006111bf565b600b54600160a060020a031633141561070c576000600c819055600d55565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106107b5576107b5611ad3565b600160a060020a0392831660209182029290920101526006548251911690829060019081106107e6576107e6611ad3565b600160a060020a0392831660209182029290920101526008546040517fd06ca61f00000000000000000000000000000000000000000000000000000000815291169063d06ca61f9061083e9086908590600401611b30565b60006040518083038186803b15801561085657600080fd5b505afa92505050801561088b57506040513d6000823e601f3d908101601f191682016040526108889190810190611b51565b60015b6108985750600092915050565b806001815181106108ab576108ab611ad3565b602002602001015192505050919050565b50919050565b60606004805461061090611a51565b600033816108df828661097a565b90508381101561095f5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106c48286868403610a38565b6000336106a1818585610c14565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6109ad611162565b600160a060020a038116610a2c5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610956565b610a35816111bf565b50565b600160a060020a038316610ab65760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a038216610b355760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610ba3848461097a565b90506000198114610c0e5781811015610c015760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610956565b610c0e8484848403610a38565b50505050565b600160a060020a0383166000908152600a602052604090205483908390431180610c555750600160a060020a0381166000908152600a602052604090205443115b610cca5760405160e560020a62461bcd02815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b0000000000006064820152608401610956565b600554600160a060020a0386811691161480610cf35750600554600160a060020a038581169116145b80610d0b5750600b54600160a060020a038681169116145b80610d235750600b54600160a060020a038581169116145b80610d3b5750600b54600160a060020a038681169116145b80610d535750600b54600160a060020a038581169116145b80610d60575060115460ff165b15610d7557610d7085858561121e565b610fd5565b600b54600954780100000000000000000000000000000000000000000000000090910461ffff1690600090600160a060020a03908116908816148015610dd85750600160a060020a038616737a250d5630b4cf539739df2c5dacb4c659f2488d14155b90506000600160a060020a038816737a250d5630b4cf539739df2c5dacb4c659f2488d14801590610e165750600954600160a060020a038881169116145b600954909150600160a060020a03163314801590610e37575060115460ff16155b15610e4457610e44611414565b8115610eb757600f54600e541015610e9157600b54600e80547401000000000000000000000000000000000000000090920461ffff1694506000610e8783611c0e565b9190505550610eb7565b600b547801000000000000000000000000000000000000000000000000900461ffff1692505b8015610f1957600f54600e541015610ef157600b54760100000000000000000000000000000000000000000000900461ffff169250610f19565b600b547a010000000000000000000000000000000000000000000000000000900461ffff1692505b6000612710610f288589611c29565b610f329190611c48565b600b5490915060009061271090610f549060e060020a900461ffff168a611c29565b610f5e9190611c48565b90506000610f6c8284611aa2565b610f76908a611c6d565b600d5490915015610f8a57610f8a89611659565b848015610f9957506000600c54115b15610fa857610fa88a826116f3565b8115610fb857610fb88b8361179d565b610fc38b308561121e565b610fce8b8b8361121e565b5050505050505b600160a060020a039182166000908152600a602052604080822043908190559290931681529190912055505050565b6011805460ff1916600117905530600090815260208181526040808320548151600280825260608201845291949390929083019080368337019050509050308160008151811061105657611056611ad3565b600160a060020a03928316602091820292909201015260065482519116908290600190811061108757611087611ad3565b600160a060020a0392831660209182029290920101526008546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906110e6908590600090869030904290600401611c84565b600060405180830381600087803b15801561110057600080fd5b505af1158015611114573d6000803e3d6000fd5b5050600b54604051600160a060020a039091169250303180156108fc029250906000818181858888f19350505050158015611153573d6000803e3d6000fd5b50506011805460ff1916905550565b600554600160a060020a0316331461070c5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610956565b60058054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a03831661129d5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a03821661131c5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a038316600090815260208190526040902054818110156113ae5760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c0e565b3060009081526020819052604081205461142d9061077c565b9050600080600760009054906101000a9004600160a060020a0316600160a060020a0316630902f1ac6040518163ffffffff1660e060020a02815260040160606040518083038186803b15801561148357600080fd5b505afa158015611497573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114bb9190611ce3565b50600654600754604080517f0dfe16810000000000000000000000000000000000000000000000000000000081529051949650929450600093600160a060020a03928316939290911691630dfe1681916004808301926020929190829003018186803b15801561152a57600080fd5b505afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115629190611d33565b600160a060020a0316141561158857506dffffffffffffffffffffffffffff8216611647565b600654600754604080517fd21220a70000000000000000000000000000000000000000000000000000000081529051600160a060020a03938416939092169163d21220a791600480820192602092909190829003018186803b1580156115ed57600080fd5b505afa158015611601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116259190611d33565b600160a060020a0316141561164757506dffffffffffffffffffffffffffff81165b601054841115610c0e57610c0e611004565b600554600160a060020a0316331415806116735750333014155b15610a3557600d54811115610a355760405160e560020a62461bcd02815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e2065786365656460448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600554600160a060020a0316331415806117165750600160a060020a0382163014155b1561179957600c548161173e84600160a060020a031660009081526020819052604090205490565b6117489190611aa2565b11156117995760405160e560020a62461bcd02815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c65742065786365656465640000006044820152606401610956565b5050565b600160a060020a03821661181c5760405160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a038216600090815260208190526040902054818110156118ae5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b8a565b600060208083528351808285015260005b8181101561193157858101830151858201604001528201611915565b81811115611943576000604083870101525b50601f01601f1916929092016040019392505050565b600160a060020a0381168114610a3557600080fd5b6000806040838503121561198157600080fd5b823561198c81611959565b946020939093013593505050565b6000806000606084860312156119af57600080fd5b83356119ba81611959565b925060208401356119ca81611959565b929592945050506040919091013590565b6000602082840312156119ed57600080fd5b81356119f881611959565b9392505050565b600060208284031215611a1157600080fd5b5035919050565b60008060408385031215611a2b57600080fd5b8235611a3681611959565b91506020830135611a4681611959565b809150509250929050565b600281046001821680611a6557607f821691505b602082108114156108bc5760e060020a634e487b7102600052602260045260246000fd5b60e060020a634e487b7102600052601160045260246000fd5b60008219821115611ab557611ab5611a89565b500190565b60e060020a634e487b7102600052604160045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611b25578151600160a060020a031687529582019590820190600101611b00565b509495945050505050565b828152604060208201526000611b496040830184611aec565b949350505050565b60006020808385031215611b6457600080fd5b825167ffffffffffffffff80821115611b7c57600080fd5b818501915085601f830112611b9057600080fd5b815181811115611ba257611ba2611aba565b838102604051601f19603f83011681018181108582111715611bc657611bc6611aba565b604052918252848201925083810185019188831115611be457600080fd5b938501935b82851015611c0257845184529385019392850192611be9565b98975050505050505050565b6000600019821415611c2257611c22611a89565b5060010190565b6000816000190483118215151615611c4357611c43611a89565b500290565b600082611c685760e060020a634e487b7102600052601260045260246000fd5b500490565b600082821015611c7f57611c7f611a89565b500390565b85815284602082015260a060408201526000611ca360a0830186611aec565b600160a060020a0394909416606083015250608001529392505050565b80516dffffffffffffffffffffffffffff81168114611cde57600080fd5b919050565b600080600060608486031215611cf857600080fd5b611d0184611cc0565b9250611d0f60208501611cc0565b9150604084015163ffffffff81168114611d2857600080fd5b809150509250925092565b600060208284031215611d4557600080fd5b81516119f88161195956fea2646970667358221220aa08ea78fc52599f6acf58fa1cf4f67572929861893157d7b141f2345017191364736f6c63430008090033
Deployed Bytecode
0x6080604052600436106101d55760003560e060020a90048063715018a6116100fb578063a8aa1b3111610099578063dd62ed3e11610068578063dd62ed3e1461058b578063e52fb9ec146105ab578063f2fde38b146105c1578063f887ea40146105e157600080fd5b8063a8aa1b31146104f0578063a9059cbb14610510578063ab99904214610530578063c4ceb3391461056957600080fd5b80639277883d116100d55780639277883d1461047357806395d89b4114610493578063a457c2d7146104a8578063a7c6402c146104c857600080fd5b8063715018a61461042b578063751039fc146104405780638da5cb5b1461045557600080fd5b8063395093511161017357806351bc3c851161014257806351bc3c85146103b3578063685fbc6b146103ca57806369e1ea7f146103e057806370a08231146103f557600080fd5b8063395093511461030e5780633a4ceedd1461032e578063418bce8a146103655780634d709adf1461037b57600080fd5b806318160ddd116101af57806318160ddd1461028057806323b872dd1461029f578063313ce567146102bf5780633912a2c3146102db57600080fd5b80630214c463146101e157806306fdde031461022e578063095ea7b31461025057600080fd5b366101dc57005b600080fd5b3480156101ed57600080fd5b50600b5461021690760100000000000000000000000000000000000000000000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b34801561023a57600080fd5b50610243610601565b6040516102259190611904565b34801561025c57600080fd5b5061027061026b36600461196e565b610693565b6040519015158152602001610225565b34801561028c57600080fd5b506002545b604051908152602001610225565b3480156102ab57600080fd5b506102706102ba36600461199a565b6106ab565b3480156102cb57600080fd5b5060405160128152602001610225565b3480156102e757600080fd5b50600b546102169074010000000000000000000000000000000000000000900461ffff1681565b34801561031a57600080fd5b5061027061032936600461196e565b6106cf565b34801561033a57600080fd5b50600b54610216907801000000000000000000000000000000000000000000000000900461ffff1681565b34801561037157600080fd5b50610291600d5481565b34801561038757600080fd5b5060075461039b90600160a060020a031681565b604051600160a060020a039091168152602001610225565b3480156103bf57600080fd5b506103c86106f1565b005b3480156103d657600080fd5b50610291600c5481565b3480156103ec57600080fd5b506103c861070e565b34801561040157600080fd5b506102916104103660046119db565b600160a060020a031660009081526020819052604090205490565b34801561043757600080fd5b506103c861074b565b34801561044c57600080fd5b506103c861075d565b34801561046157600080fd5b50600554600160a060020a031661039b565b34801561047f57600080fd5b5061029161048e3660046119ff565b61077c565b34801561049f57600080fd5b506102436108c2565b3480156104b457600080fd5b506102706104c336600461196e565b6108d1565b3480156104d457600080fd5b5061039b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104fc57600080fd5b5060095461039b90600160a060020a031681565b34801561051c57600080fd5b5061027061052b36600461196e565b61096c565b34801561053c57600080fd5b50600b54610216907a010000000000000000000000000000000000000000000000000000900461ffff1681565b34801561057557600080fd5b50600b546102169060e060020a900461ffff1681565b34801561059757600080fd5b506102916105a6366004611a18565b61097a565b3480156105b757600080fd5b5061029160105481565b3480156105cd57600080fd5b506103c86105dc3660046119db565b6109a5565b3480156105ed57600080fd5b5060085461039b90600160a060020a031681565b60606003805461061090611a51565b80601f016020809104026020016040519081016040528092919081815260200182805461063c90611a51565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b6000336106a1818585610a38565b5060019392505050565b6000336106b9858285610b97565b6106c4858585610c14565b506001949350505050565b6000336106a18185856106e2838361097a565b6106ec9190611aa2565b610a38565b600b54600160a060020a031633141561070c5761070c611004565b565b600b54600160a060020a031633141561070c57600b80547fffff000000000000ffffffffffffffffffffffffffffffffffffffffffffffff169055565b610753611162565b61070c60006111bf565b600b54600160a060020a031633141561070c576000600c819055600d55565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106107b5576107b5611ad3565b600160a060020a0392831660209182029290920101526006548251911690829060019081106107e6576107e6611ad3565b600160a060020a0392831660209182029290920101526008546040517fd06ca61f00000000000000000000000000000000000000000000000000000000815291169063d06ca61f9061083e9086908590600401611b30565b60006040518083038186803b15801561085657600080fd5b505afa92505050801561088b57506040513d6000823e601f3d908101601f191682016040526108889190810190611b51565b60015b6108985750600092915050565b806001815181106108ab576108ab611ad3565b602002602001015192505050919050565b50919050565b60606004805461061090611a51565b600033816108df828661097a565b90508381101561095f5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106c48286868403610a38565b6000336106a1818585610c14565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6109ad611162565b600160a060020a038116610a2c5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610956565b610a35816111bf565b50565b600160a060020a038316610ab65760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a038216610b355760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610ba3848461097a565b90506000198114610c0e5781811015610c015760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610956565b610c0e8484848403610a38565b50505050565b600160a060020a0383166000908152600a602052604090205483908390431180610c555750600160a060020a0381166000908152600a602052604090205443115b610cca5760405160e560020a62461bcd02815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b0000000000006064820152608401610956565b600554600160a060020a0386811691161480610cf35750600554600160a060020a038581169116145b80610d0b5750600b54600160a060020a038681169116145b80610d235750600b54600160a060020a038581169116145b80610d3b5750600b54600160a060020a038681169116145b80610d535750600b54600160a060020a038581169116145b80610d60575060115460ff165b15610d7557610d7085858561121e565b610fd5565b600b54600954780100000000000000000000000000000000000000000000000090910461ffff1690600090600160a060020a03908116908816148015610dd85750600160a060020a038616737a250d5630b4cf539739df2c5dacb4c659f2488d14155b90506000600160a060020a038816737a250d5630b4cf539739df2c5dacb4c659f2488d14801590610e165750600954600160a060020a038881169116145b600954909150600160a060020a03163314801590610e37575060115460ff16155b15610e4457610e44611414565b8115610eb757600f54600e541015610e9157600b54600e80547401000000000000000000000000000000000000000090920461ffff1694506000610e8783611c0e565b9190505550610eb7565b600b547801000000000000000000000000000000000000000000000000900461ffff1692505b8015610f1957600f54600e541015610ef157600b54760100000000000000000000000000000000000000000000900461ffff169250610f19565b600b547a010000000000000000000000000000000000000000000000000000900461ffff1692505b6000612710610f288589611c29565b610f329190611c48565b600b5490915060009061271090610f549060e060020a900461ffff168a611c29565b610f5e9190611c48565b90506000610f6c8284611aa2565b610f76908a611c6d565b600d5490915015610f8a57610f8a89611659565b848015610f9957506000600c54115b15610fa857610fa88a826116f3565b8115610fb857610fb88b8361179d565b610fc38b308561121e565b610fce8b8b8361121e565b5050505050505b600160a060020a039182166000908152600a602052604080822043908190559290931681529190912055505050565b6011805460ff1916600117905530600090815260208181526040808320548151600280825260608201845291949390929083019080368337019050509050308160008151811061105657611056611ad3565b600160a060020a03928316602091820292909201015260065482519116908290600190811061108757611087611ad3565b600160a060020a0392831660209182029290920101526008546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906110e6908590600090869030904290600401611c84565b600060405180830381600087803b15801561110057600080fd5b505af1158015611114573d6000803e3d6000fd5b5050600b54604051600160a060020a039091169250303180156108fc029250906000818181858888f19350505050158015611153573d6000803e3d6000fd5b50506011805460ff1916905550565b600554600160a060020a0316331461070c5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610956565b60058054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a03831661129d5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a03821661131c5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a038316600090815260208190526040902054818110156113ae5760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c0e565b3060009081526020819052604081205461142d9061077c565b9050600080600760009054906101000a9004600160a060020a0316600160a060020a0316630902f1ac6040518163ffffffff1660e060020a02815260040160606040518083038186803b15801561148357600080fd5b505afa158015611497573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114bb9190611ce3565b50600654600754604080517f0dfe16810000000000000000000000000000000000000000000000000000000081529051949650929450600093600160a060020a03928316939290911691630dfe1681916004808301926020929190829003018186803b15801561152a57600080fd5b505afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115629190611d33565b600160a060020a0316141561158857506dffffffffffffffffffffffffffff8216611647565b600654600754604080517fd21220a70000000000000000000000000000000000000000000000000000000081529051600160a060020a03938416939092169163d21220a791600480820192602092909190829003018186803b1580156115ed57600080fd5b505afa158015611601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116259190611d33565b600160a060020a0316141561164757506dffffffffffffffffffffffffffff81165b601054841115610c0e57610c0e611004565b600554600160a060020a0316331415806116735750333014155b15610a3557600d54811115610a355760405160e560020a62461bcd02815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e2065786365656460448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600554600160a060020a0316331415806117165750600160a060020a0382163014155b1561179957600c548161173e84600160a060020a031660009081526020819052604090205490565b6117489190611aa2565b11156117995760405160e560020a62461bcd02815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c65742065786365656465640000006044820152606401610956565b5050565b600160a060020a03821661181c5760405160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a038216600090815260208190526040902054818110156118ae5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610956565b600160a060020a0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b8a565b600060208083528351808285015260005b8181101561193157858101830151858201604001528201611915565b81811115611943576000604083870101525b50601f01601f1916929092016040019392505050565b600160a060020a0381168114610a3557600080fd5b6000806040838503121561198157600080fd5b823561198c81611959565b946020939093013593505050565b6000806000606084860312156119af57600080fd5b83356119ba81611959565b925060208401356119ca81611959565b929592945050506040919091013590565b6000602082840312156119ed57600080fd5b81356119f881611959565b9392505050565b600060208284031215611a1157600080fd5b5035919050565b60008060408385031215611a2b57600080fd5b8235611a3681611959565b91506020830135611a4681611959565b809150509250929050565b600281046001821680611a6557607f821691505b602082108114156108bc5760e060020a634e487b7102600052602260045260246000fd5b60e060020a634e487b7102600052601160045260246000fd5b60008219821115611ab557611ab5611a89565b500190565b60e060020a634e487b7102600052604160045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611b25578151600160a060020a031687529582019590820190600101611b00565b509495945050505050565b828152604060208201526000611b496040830184611aec565b949350505050565b60006020808385031215611b6457600080fd5b825167ffffffffffffffff80821115611b7c57600080fd5b818501915085601f830112611b9057600080fd5b815181811115611ba257611ba2611aba565b838102604051601f19603f83011681018181108582111715611bc657611bc6611aba565b604052918252848201925083810185019188831115611be457600080fd5b938501935b82851015611c0257845184529385019392850192611be9565b98975050505050505050565b6000600019821415611c2257611c22611a89565b5060010190565b6000816000190483118215151615611c4357611c43611a89565b500290565b600082611c685760e060020a634e487b7102600052601260045260246000fd5b500490565b600082821015611c7f57611c7f611a89565b500390565b85815284602082015260a060408201526000611ca360a0830186611aec565b600160a060020a0394909416606083015250608001529392505050565b80516dffffffffffffffffffffffffffff81168114611cde57600080fd5b919050565b600080600060608486031215611cf857600080fd5b611d0184611cc0565b9250611d0f60208501611cc0565b9150604084015163ffffffff81168114611d2857600080fd5b809150509250925092565b600060208284031215611d4557600080fd5b81516119f88161195956fea2646970667358221220aa08ea78fc52599f6acf58fa1cf4f67572929861893157d7b141f2345017191364736f6c63430008090033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.