Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 RAM
Holders
175
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
850,432.037078244871185844 RAMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RuneAMM
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED /* > Ord.0.18.0 Website: http://www.runeamm.io Dapp: http://app.runeamm.io 𝕏: https://twitter.com/RuneAMM Telegram: https://t.me/RuneAMM Token Name : RuneAMM Token Ticker : $RAM */ pragma solidity ^0.8.23; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; 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; } contract RuneAMM is Ownable, ERC20 { uint256 _totalSupply = 100_000_000 * 10 ** 18; IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public pair; uint256 private _maxWallet = _totalSupply / 250; bool private _tradingEnable; address public bitcoinPool; bool public limit = true; uint256 public swapTokenAt = 12_000 ether; uint256 public maxWalletTime; uint256 public tradingTime; uint256 private _initial = 30; uint256 private _reduce = 20; uint256 private _final = 5; uint256 private _buy; uint256 private _sell; // _reduce / 2 mapping(address => bool) private _isExcludedFromFees; error MaxTxAmountExceeded(); error MaxWalletAmountExceeded(); error NotAuthorized(); event Launched(); event RemoveLimit(); event SwapBack(uint256 amount); constructor() ERC20("RuneAMM", "RAM") Ownable(_msgSender()) { bitcoinPool = address(0x5955Ae37B5aB5d1Dd3f73C37719f56587E4a048C); pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[bitcoinPool] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _isExcludedFromFees[address(0xdead)] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } function burn(uint256 value) external { _burn(_msgSender(), value); } function setSwapTokenAt(uint256 _swapTokenAt) external onlyOwner { require( _swapTokenAt <= _totalSupply / 50, "Value must be less than or equal to supply / 50" ); swapTokenAt = _swapTokenAt; } function enableTrading() external onlyOwner { require(!_tradingEnable, "Cannot re-enable trading"); _tradingEnable = true; tradingTime = block.timestamp; maxWalletTime = block.timestamp + 3 minutes; emit Launched(); } function removeLimit() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; emit RemoveLimit(); } function _update( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swapping ) { super._update(from, to, amount); return; } require(_tradingEnable, "Trading is not open"); if (limit) { if (to != pair && balanceOf(to) + amount > _maxWallet) { revert MaxWalletAmountExceeded(); } } if (to == pair && balanceOf(address(this)) >= swapTokenAt) { swapBack(); } uint256 _fees; // on Buy if (from == pair) { _buy++; _fees = (amount * (_buy > _reduce ? _final : _initial)) / 100; } else if (to == pair) { // on Sell _sell++; _fees = (amount * (_sell > _reduce ? _final : _initial)) / 100; } if (_fees > 0) { super._update(from, address(this), _fees); amount = amount - _fees; } super._update(from, to, amount); } bool private _swapping = false; modifier onSwap() { _swapping = true; _; _swapping = false; } function swapBack() private onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), swapTokenAt); router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 currentETH = address(this).balance; _safeTransferETH(bitcoinPool, currentETH); emit SwapBack(swapTokenAt); } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function setBitcoinPool(address _newAddress) external { if (_msgSender() != owner() || _msgSender() != bitcoinPool) { revert NotAuthorized(); } bitcoinPool = _newAddress; } function rescueETH(uint256 amount) external { if (_msgSender() != owner() || _msgSender() != bitcoinPool) { revert NotAuthorized(); } if (amount == 0) { amount = address(this).balance; } _safeTransferETH(_msgSender(), amount); } function _safeTransferETH(address to, uint256 amount) private { (bool _sent, ) = payable(to).call{value: amount}(""); require(_sent, "send ETH failed"); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
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); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "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"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"Launched","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":[],"name":"RemoveLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bitcoinPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletTime","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":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setBitcoinPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokenAt","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","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":[],"name":"tradingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526a52b7d2dcc80cd2e4000000600655737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525060fa6006546200006b9190620014ba565b6008556001600960156101000a81548160ff02191690831515021790555069028a857425466f800000600a55601e600d556014600e556005600f556000601360006101000a81548160ff021916908315150217905550348015620000ce57600080fd5b506040518060400160405280600781526020017f52756e65414d4d000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f52414d00000000000000000000000000000000000000000000000000000000008152506200014b6200065060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001c05760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001b7919062001537565b60405180910390fd5b620001d1816200065860201b60201c565b508160049081620001e39190620017c4565b508060059081620001f59190620017c4565b505050735955ae37b5ab5d1dd3f73c37719f56587e4a048c600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c19190620018e1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003519190620018e1565b6040518363ffffffff1660e01b81526004016200037092919062001913565b6020604051808303816000875af115801562000390573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b69190620018e1565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260006200040c6200065060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016012600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000606620005f76200065060201b60201c565b6006546200071c60201b60201c565b6200064a6200061a6200065060201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620007a960201b60201c565b62001d9e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007915760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000788919062001537565b60405180910390fd5b620007a560008383620007c360201b60201c565b5050565b620007be838383600162000c9460201b60201c565b505050565b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620008655750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806200091a5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620009195750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620009325750601360009054906101000a900460ff165b1562000951576200094b83838362000e7460201b60201c565b62000c8f565b600960009054906101000a900460ff16620009a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099a90620019a1565b60405180910390fd5b600960159054906101000a900460ff161562000a6f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801562000a3657506008548162000a2884620010a760201b60201c565b62000a349190620019c3565b115b1562000a6e576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000adf5750600a5462000adc30620010a760201b60201c565b10155b1562000af65762000af5620010f060201b60201c565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000ba4576010600081548092919062000b6390620019fe565b91905055506064600e546010541162000b7f57600d5462000b83565b600f545b8362000b90919062001a4b565b62000b9c9190620014ba565b905062000c4c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c4b576011600081548092919062000c0f90620019fe565b91905055506064600e546011541162000c2b57600d5462000c2f565b600f545b8362000c3c919062001a4b565b62000c489190620014ba565b90505b5b600081111562000c7a5762000c6984308362000e7460201b60201c565b808262000c77919062001a96565b91505b62000c8d84848462000e7460201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000d095760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000d00919062001537565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000d7e5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000d75919062001537565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000e6e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000e65919062001ae2565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000eca57806003600082825462000ebd9190620019c3565b9250508190555062000fa2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000f5a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000f519392919062001aff565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000fed57806003600082825403925050819055506200103b565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200109a919062001ae2565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156200112b576200112a6200155f565b5b6040519080825280602002602001820160405280156200115a5781602001602082028036833780820191505090505b509050308160008151811062001175576200117462001b3c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012239190620018e1565b816001815181106200123a576200123962001b3c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506200128b30608051600a54620007a960201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b8152600401620012d395949392919062001c7c565b600060405180830381600087803b158015620012ee57600080fd5b505af115801562001303573d6000803e3d6000fd5b50505050600047905062001340600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200139a60201b60201c565b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600a5460405162001373919062001ae2565b60405180910390a150506000601360006101000a81548160ff021916908315150217905550565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051620013c29062001d15565b60006040518083038185875af1925050503d806000811462001401576040519150601f19603f3d011682016040523d82523d6000602084013e62001406565b606091505b50509050806200144d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620014449062001d7c565b60405180910390fd5b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620014c78262001452565b9150620014d48362001452565b925082620014e757620014e66200145c565b5b828204905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200151f82620014f2565b9050919050565b620015318162001512565b82525050565b60006020820190506200154e600083018462001526565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620015d657607f821691505b602082108103620015ec57620015eb6200158e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620016567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001617565b62001662868362001617565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620016a56200169f620016998462001452565b6200167a565b62001452565b9050919050565b6000819050919050565b620016c18362001684565b620016d9620016d082620016ac565b84845462001624565b825550505050565b600090565b620016f0620016e1565b620016fd818484620016b6565b505050565b5b81811015620017255762001719600082620016e6565b60018101905062001703565b5050565b601f82111562001774576200173e81620015f2565b620017498462001607565b8101602085101562001759578190505b62001771620017688562001607565b83018262001702565b50505b505050565b600082821c905092915050565b6000620017996000198460080262001779565b1980831691505092915050565b6000620017b4838362001786565b9150826002028217905092915050565b620017cf8262001554565b67ffffffffffffffff811115620017eb57620017ea6200155f565b5b620017f78254620015bd565b6200180482828562001729565b600060209050601f8311600181146200183c576000841562001827578287015190505b620018338582620017a6565b865550620018a3565b601f1984166200184c86620015f2565b60005b8281101562001876578489015182556001820191506020850194506020810190506200184f565b8683101562001896578489015162001892601f89168262001786565b8355505b6001600288020188555050505b505050505050565b600080fd5b620018bb8162001512565b8114620018c757600080fd5b50565b600081519050620018db81620018b0565b92915050565b600060208284031215620018fa57620018f9620018ab565b5b60006200190a84828501620018ca565b91505092915050565b60006040820190506200192a600083018562001526565b62001939602083018462001526565b9392505050565b600082825260208201905092915050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b60006200198960138362001940565b9150620019968262001951565b602082019050919050565b60006020820190508181036000830152620019bc816200197a565b9050919050565b6000620019d08262001452565b9150620019dd8362001452565b9250828201905080821115620019f857620019f76200148b565b5b92915050565b600062001a0b8262001452565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001a405762001a3f6200148b565b5b600182019050919050565b600062001a588262001452565b915062001a658362001452565b925082820262001a758162001452565b9150828204841483151762001a8f5762001a8e6200148b565b5b5092915050565b600062001aa38262001452565b915062001ab08362001452565b925082820390508181111562001acb5762001aca6200148b565b5b92915050565b62001adc8162001452565b82525050565b600060208201905062001af9600083018462001ad1565b92915050565b600060608201905062001b16600083018662001526565b62001b25602083018562001ad1565b62001b34604083018462001ad1565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001b9662001b9062001b8a8462001b6b565b6200167a565b62001452565b9050919050565b62001ba88162001b75565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001be58162001512565b82525050565b600062001bf9838362001bda565b60208301905092915050565b6000602082019050919050565b600062001c1f8262001bae565b62001c2b818562001bb9565b935062001c388362001bca565b8060005b8381101562001c6f57815162001c53888262001beb565b975062001c608362001c05565b92505060018101905062001c3c565b5085935050505092915050565b600060a08201905062001c93600083018862001ad1565b62001ca2602083018762001b9d565b818103604083015262001cb6818662001c12565b905062001cc7606083018562001526565b62001cd6608083018462001ad1565b9695505050505050565b600081905092915050565b50565b600062001cfd60008362001ce0565b915062001d0a8262001ceb565b600082019050919050565b600062001d228262001cee565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b600062001d64600f8362001940565b915062001d718262001d2c565b602082019050919050565b6000602082019050818103600083015262001d978162001d55565b9050919050565b60805161285862001dc860003960008181611bb901528181611c9a0152611cc301526128586000f3fe6080604052600436106101855760003560e01c8063864b3167116100d1578063a8aa1b311161008a578063bc17b30c11610064578063bc17b30c14610557578063d9eebcb014610582578063dd62ed3e146105ad578063f2fde38b146105ea5761018c565b8063a8aa1b31146104c4578063a9059cbb146104ef578063b8158d601461052c5761018c565b8063864b3167146103da5780638a8c523c146104035780638da5cb5b1461041a57806395d89b41146104455780639e252f0014610470578063a4d66daf146104995761018c565b8063313ce5671161013e57806370a082311161011857806370a082311461031e578063715018a61461035b57806373bc5a36146103725780637b16cea01461039d5761018c565b8063313ce567146102b357806342966c68146102de57806362256589146103075761018c565b806306fdde0314610191578063095ea7b3146101bc5780630a6a3ea5146101f957806316697fc51461022257806318160ddd1461024b57806323b872dd146102765761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610613565b6040516101b39190611e70565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611f2b565b6106a5565b6040516101f09190611f86565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190611fa1565b6106c8565b005b34801561022e57600080fd5b5061024960048036038101906102449190611ffa565b6107e1565b005b34801561025757600080fd5b50610260610844565b60405161026d9190612049565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612064565b61084e565b6040516102aa9190611f86565b60405180910390f35b3480156102bf57600080fd5b506102c861087d565b6040516102d591906120d3565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906120ee565b610886565b005b34801561031357600080fd5b5061031c61089a565b005b34801561032a57600080fd5b5061034560048036038101906103409190611fa1565b610943565b6040516103529190612049565b60405180910390f35b34801561036757600080fd5b5061037061098c565b005b34801561037e57600080fd5b506103876109a0565b6040516103949190612049565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190611fa1565b6109a6565b6040516103d19190611f86565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906120ee565b6109fc565b005b34801561040f57600080fd5b50610418610a5f565b005b34801561042657600080fd5b5061042f610b1a565b60405161043c919061212a565b60405180910390f35b34801561045157600080fd5b5061045a610b43565b6040516104679190611e70565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906120ee565b610bd5565b005b3480156104a557600080fd5b506104ae610cca565b6040516104bb9190611f86565b60405180910390f35b3480156104d057600080fd5b506104d9610cdd565b6040516104e6919061212a565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190611f2b565b610d03565b6040516105239190611f86565b60405180910390f35b34801561053857600080fd5b50610541610d26565b60405161054e9190612049565b60405180910390f35b34801561056357600080fd5b5061056c610d2c565b6040516105799190612049565b60405180910390f35b34801561058e57600080fd5b50610597610d32565b6040516105a4919061212a565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190612145565b610d58565b6040516105e19190612049565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190611fa1565b610ddf565b005b606060048054610622906121b4565b80601f016020809104026020016040519081016040528092919081815260200182805461064e906121b4565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6000806106b0610e65565b90506106bd818585610e6d565b600191505092915050565b6106d0610b1a565b73ffffffffffffffffffffffffffffffffffffffff166106ee610e65565b73ffffffffffffffffffffffffffffffffffffffff161415806107665750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661074d610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b1561079d576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6107e9610e7f565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b600080610859610e65565b9050610866858285610f06565b610871858585610f9a565b60019150509392505050565b60006012905090565b610897610891610e65565b8261108e565b50565b6108a2610e7f565b600960159054906101000a900460ff166108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e890612231565b60405180910390fd5b6000600960156101000a81548160ff0219169083151502179055506006546008819055507f2d53e1bd10978dd02f36cd1d3680151195d9f7358e0c867bc753abecafb55e4360405160405180910390a1565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610994610e7f565b61099e6000611110565b565b600a5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a04610e7f565b6032600654610a1391906122af565b811115610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612352565b60405180910390fd5b80600a8190555050565b610a67610e7f565b600960009054906101000a900460ff1615610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906123be565b60405180910390fd5b6001600960006101000a81548160ff02191690831515021790555042600c8190555060b442610ae691906123de565b600b819055507fba61a96074b3d636edeee92caddc86293c917d5b6818b7d3698bb52e02ec86c860405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b52906121b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e906121b4565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b610bdd610b1a565b73ffffffffffffffffffffffffffffffffffffffff16610bfb610e65565b73ffffffffffffffffffffffffffffffffffffffff16141580610c735750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c5a610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610caa576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610cb6574790505b610cc7610cc1610e65565b826111d4565b50565b600960159054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d0e610e65565b9050610d1b818585610f9a565b600191505092915050565b600c5481565b600b5481565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610de7610e7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e595760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e50919061212a565b60405180910390fd5b610e6281611110565b50565b600033905090565b610e7a8383836001611285565b505050565b610e87610e65565b73ffffffffffffffffffffffffffffffffffffffff16610ea5610b1a565b73ffffffffffffffffffffffffffffffffffffffff1614610f0457610ec8610e65565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610efb919061212a565b60405180910390fd5b565b6000610f128484610d58565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f945781811015610f84578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f7b93929190612412565b60405180910390fd5b610f9384848484036000611285565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611003919061212a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611075919061212a565b60405180910390fd5b61108983838361145c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111005760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110f7919061212a565b60405180910390fd5b61110c8260008361145c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516111fa9061247a565b60006040518083038185875af1925050503d8060008114611237576040519150601f19603f3d011682016040523d82523d6000602084013e61123c565b606091505b5050905080611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906124db565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112f75760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112ee919061212a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113695760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611360919061212a565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611456578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161144d9190612049565b60405180910390a35b50505050565b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114fd5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806115b05750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156115af5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115c75750601360009054906101000a900460ff165b156115dc576115d78383836118d7565b6118d2565b600960009054906101000a900460ff1661162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290612547565b60405180910390fd5b600960159054906101000a900460ff16156116ea57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116b25750600854816116a684610943565b6116b091906123de565b115b156116e9576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156117515750600a5461174e30610943565b10155b1561175f5761175e611aff565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361180357601060008154809291906117c990612567565b91905055506064600e54601054116117e357600d546117e7565b600f545b836117f291906125af565b6117fc91906122af565b90506118a2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118a1576011600081548092919061186b90612567565b91905055506064600e546011541161188557600d54611889565b600f545b8361189491906125af565b61189e91906122af565b90505b5b60008111156118c5576118b68430836118d7565b80826118c291906125f1565b91505b6118d08484846118d7565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361192957806003600082825461191d91906123de565b925050819055506119fe565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119b6578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016119ad93929190612412565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a475780600360008282540392505081905550611a95565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611af29190612049565b60405180910390a3505050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b3757611b36612625565b5b604051908082528060200260200182016040528015611b655781602001602082028036833780820191505090505b5090503081600081518110611b7d57611b7c612654565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c469190612698565b81600181518110611c5a57611c59612654565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cc1307f0000000000000000000000000000000000000000000000000000000000000000600a54610e6d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b8152600401611d259594939291906127c8565b600060405180830381600087803b158015611d3f57600080fd5b505af1158015611d53573d6000803e3d6000fd5b505050506000479050611d88600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826111d4565b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600a54604051611db99190612049565b60405180910390a150506000601360006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e1a578082015181840152602081019050611dff565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e4282611de0565b611e4c8185611deb565b9350611e5c818560208601611dfc565b611e6581611e26565b840191505092915050565b60006020820190508181036000830152611e8a8184611e37565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ec282611e97565b9050919050565b611ed281611eb7565b8114611edd57600080fd5b50565b600081359050611eef81611ec9565b92915050565b6000819050919050565b611f0881611ef5565b8114611f1357600080fd5b50565b600081359050611f2581611eff565b92915050565b60008060408385031215611f4257611f41611e92565b5b6000611f5085828601611ee0565b9250506020611f6185828601611f16565b9150509250929050565b60008115159050919050565b611f8081611f6b565b82525050565b6000602082019050611f9b6000830184611f77565b92915050565b600060208284031215611fb757611fb6611e92565b5b6000611fc584828501611ee0565b91505092915050565b611fd781611f6b565b8114611fe257600080fd5b50565b600081359050611ff481611fce565b92915050565b6000806040838503121561201157612010611e92565b5b600061201f85828601611ee0565b925050602061203085828601611fe5565b9150509250929050565b61204381611ef5565b82525050565b600060208201905061205e600083018461203a565b92915050565b60008060006060848603121561207d5761207c611e92565b5b600061208b86828701611ee0565b935050602061209c86828701611ee0565b92505060406120ad86828701611f16565b9150509250925092565b600060ff82169050919050565b6120cd816120b7565b82525050565b60006020820190506120e860008301846120c4565b92915050565b60006020828403121561210457612103611e92565b5b600061211284828501611f16565b91505092915050565b61212481611eb7565b82525050565b600060208201905061213f600083018461211b565b92915050565b6000806040838503121561215c5761215b611e92565b5b600061216a85828601611ee0565b925050602061217b85828601611ee0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121cc57607f821691505b6020821081036121df576121de612185565b5b50919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b600061221b601683611deb565b9150612226826121e5565b602082019050919050565b6000602082019050818103600083015261224a8161220e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ba82611ef5565b91506122c583611ef5565b9250826122d5576122d4612251565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20737570706c79202f2035300000000000000000000000000000000000602082015250565b600061233c602f83611deb565b9150612347826122e0565b604082019050919050565b6000602082019050818103600083015261236b8161232f565b9050919050565b7f43616e6e6f742072652d656e61626c652074726164696e670000000000000000600082015250565b60006123a8601883611deb565b91506123b382612372565b602082019050919050565b600060208201905081810360008301526123d78161239b565b9050919050565b60006123e982611ef5565b91506123f483611ef5565b925082820190508082111561240c5761240b612280565b5b92915050565b6000606082019050612427600083018661211b565b612434602083018561203a565b612441604083018461203a565b949350505050565b600081905092915050565b50565b6000612464600083612449565b915061246f82612454565b600082019050919050565b600061248582612457565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b60006124c5600f83611deb565b91506124d08261248f565b602082019050919050565b600060208201905081810360008301526124f4816124b8565b9050919050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000612531601383611deb565b915061253c826124fb565b602082019050919050565b6000602082019050818103600083015261256081612524565b9050919050565b600061257282611ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036125a4576125a3612280565b5b600182019050919050565b60006125ba82611ef5565b91506125c583611ef5565b92508282026125d381611ef5565b915082820484148315176125ea576125e9612280565b5b5092915050565b60006125fc82611ef5565b915061260783611ef5565b925082820390508181111561261f5761261e612280565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061269281611ec9565b92915050565b6000602082840312156126ae576126ad611e92565b5b60006126bc84828501612683565b91505092915050565b6000819050919050565b6000819050919050565b60006126f46126ef6126ea846126c5565b6126cf565b611ef5565b9050919050565b612704816126d9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61273f81611eb7565b82525050565b60006127518383612736565b60208301905092915050565b6000602082019050919050565b60006127758261270a565b61277f8185612715565b935061278a83612726565b8060005b838110156127bb5781516127a28882612745565b97506127ad8361275d565b92505060018101905061278e565b5085935050505092915050565b600060a0820190506127dd600083018861203a565b6127ea60208301876126fb565b81810360408301526127fc818661276a565b905061280b606083018561211b565b612818608083018461203a565b969550505050505056fea264697066735822122037737e8b1a7d0c3bf8ae9d632d4dd35276b3c8b5097e2e0585f45e2aebfaace864736f6c63430008180033
Deployed Bytecode
0x6080604052600436106101855760003560e01c8063864b3167116100d1578063a8aa1b311161008a578063bc17b30c11610064578063bc17b30c14610557578063d9eebcb014610582578063dd62ed3e146105ad578063f2fde38b146105ea5761018c565b8063a8aa1b31146104c4578063a9059cbb146104ef578063b8158d601461052c5761018c565b8063864b3167146103da5780638a8c523c146104035780638da5cb5b1461041a57806395d89b41146104455780639e252f0014610470578063a4d66daf146104995761018c565b8063313ce5671161013e57806370a082311161011857806370a082311461031e578063715018a61461035b57806373bc5a36146103725780637b16cea01461039d5761018c565b8063313ce567146102b357806342966c68146102de57806362256589146103075761018c565b806306fdde0314610191578063095ea7b3146101bc5780630a6a3ea5146101f957806316697fc51461022257806318160ddd1461024b57806323b872dd146102765761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610613565b6040516101b39190611e70565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611f2b565b6106a5565b6040516101f09190611f86565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190611fa1565b6106c8565b005b34801561022e57600080fd5b5061024960048036038101906102449190611ffa565b6107e1565b005b34801561025757600080fd5b50610260610844565b60405161026d9190612049565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612064565b61084e565b6040516102aa9190611f86565b60405180910390f35b3480156102bf57600080fd5b506102c861087d565b6040516102d591906120d3565b60405180910390f35b3480156102ea57600080fd5b50610305600480360381019061030091906120ee565b610886565b005b34801561031357600080fd5b5061031c61089a565b005b34801561032a57600080fd5b5061034560048036038101906103409190611fa1565b610943565b6040516103529190612049565b60405180910390f35b34801561036757600080fd5b5061037061098c565b005b34801561037e57600080fd5b506103876109a0565b6040516103949190612049565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190611fa1565b6109a6565b6040516103d19190611f86565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc91906120ee565b6109fc565b005b34801561040f57600080fd5b50610418610a5f565b005b34801561042657600080fd5b5061042f610b1a565b60405161043c919061212a565b60405180910390f35b34801561045157600080fd5b5061045a610b43565b6040516104679190611e70565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906120ee565b610bd5565b005b3480156104a557600080fd5b506104ae610cca565b6040516104bb9190611f86565b60405180910390f35b3480156104d057600080fd5b506104d9610cdd565b6040516104e6919061212a565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190611f2b565b610d03565b6040516105239190611f86565b60405180910390f35b34801561053857600080fd5b50610541610d26565b60405161054e9190612049565b60405180910390f35b34801561056357600080fd5b5061056c610d2c565b6040516105799190612049565b60405180910390f35b34801561058e57600080fd5b50610597610d32565b6040516105a4919061212a565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190612145565b610d58565b6040516105e19190612049565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190611fa1565b610ddf565b005b606060048054610622906121b4565b80601f016020809104026020016040519081016040528092919081815260200182805461064e906121b4565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6000806106b0610e65565b90506106bd818585610e6d565b600191505092915050565b6106d0610b1a565b73ffffffffffffffffffffffffffffffffffffffff166106ee610e65565b73ffffffffffffffffffffffffffffffffffffffff161415806107665750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661074d610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b1561079d576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6107e9610e7f565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b600080610859610e65565b9050610866858285610f06565b610871858585610f9a565b60019150509392505050565b60006012905090565b610897610891610e65565b8261108e565b50565b6108a2610e7f565b600960159054906101000a900460ff166108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e890612231565b60405180910390fd5b6000600960156101000a81548160ff0219169083151502179055506006546008819055507f2d53e1bd10978dd02f36cd1d3680151195d9f7358e0c867bc753abecafb55e4360405160405180910390a1565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610994610e7f565b61099e6000611110565b565b600a5481565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a04610e7f565b6032600654610a1391906122af565b811115610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612352565b60405180910390fd5b80600a8190555050565b610a67610e7f565b600960009054906101000a900460ff1615610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae906123be565b60405180910390fd5b6001600960006101000a81548160ff02191690831515021790555042600c8190555060b442610ae691906123de565b600b819055507fba61a96074b3d636edeee92caddc86293c917d5b6818b7d3698bb52e02ec86c860405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b52906121b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e906121b4565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b610bdd610b1a565b73ffffffffffffffffffffffffffffffffffffffff16610bfb610e65565b73ffffffffffffffffffffffffffffffffffffffff16141580610c735750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c5a610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610caa576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610cb6574790505b610cc7610cc1610e65565b826111d4565b50565b600960159054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d0e610e65565b9050610d1b818585610f9a565b600191505092915050565b600c5481565b600b5481565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610de7610e7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e595760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e50919061212a565b60405180910390fd5b610e6281611110565b50565b600033905090565b610e7a8383836001611285565b505050565b610e87610e65565b73ffffffffffffffffffffffffffffffffffffffff16610ea5610b1a565b73ffffffffffffffffffffffffffffffffffffffff1614610f0457610ec8610e65565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610efb919061212a565b60405180910390fd5b565b6000610f128484610d58565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f945781811015610f84578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f7b93929190612412565b60405180910390fd5b610f9384848484036000611285565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611003919061212a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611075919061212a565b60405180910390fd5b61108983838361145c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111005760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110f7919061212a565b60405180910390fd5b61110c8260008361145c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516111fa9061247a565b60006040518083038185875af1925050503d8060008114611237576040519150601f19603f3d011682016040523d82523d6000602084013e61123c565b606091505b5050905080611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906124db565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112f75760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112ee919061212a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113695760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611360919061212a565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611456578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161144d9190612049565b60405180910390a35b50505050565b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114fd5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806115b05750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156115af5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115c75750601360009054906101000a900460ff165b156115dc576115d78383836118d7565b6118d2565b600960009054906101000a900460ff1661162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290612547565b60405180910390fd5b600960159054906101000a900460ff16156116ea57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116b25750600854816116a684610943565b6116b091906123de565b115b156116e9576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156117515750600a5461174e30610943565b10155b1561175f5761175e611aff565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361180357601060008154809291906117c990612567565b91905055506064600e54601054116117e357600d546117e7565b600f545b836117f291906125af565b6117fc91906122af565b90506118a2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118a1576011600081548092919061186b90612567565b91905055506064600e546011541161188557600d54611889565b600f545b8361189491906125af565b61189e91906122af565b90505b5b60008111156118c5576118b68430836118d7565b80826118c291906125f1565b91505b6118d08484846118d7565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361192957806003600082825461191d91906123de565b925050819055506119fe565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119b6578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016119ad93929190612412565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a475780600360008282540392505081905550611a95565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611af29190612049565b60405180910390a3505050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b3757611b36612625565b5b604051908082528060200260200182016040528015611b655781602001602082028036833780820191505090505b5090503081600081518110611b7d57611b7c612654565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c469190612698565b81600181518110611c5a57611c59612654565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cc1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600a54610e6d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b8152600401611d259594939291906127c8565b600060405180830381600087803b158015611d3f57600080fd5b505af1158015611d53573d6000803e3d6000fd5b505050506000479050611d88600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826111d4565b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600a54604051611db99190612049565b60405180910390a150506000601360006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e1a578082015181840152602081019050611dff565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e4282611de0565b611e4c8185611deb565b9350611e5c818560208601611dfc565b611e6581611e26565b840191505092915050565b60006020820190508181036000830152611e8a8184611e37565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ec282611e97565b9050919050565b611ed281611eb7565b8114611edd57600080fd5b50565b600081359050611eef81611ec9565b92915050565b6000819050919050565b611f0881611ef5565b8114611f1357600080fd5b50565b600081359050611f2581611eff565b92915050565b60008060408385031215611f4257611f41611e92565b5b6000611f5085828601611ee0565b9250506020611f6185828601611f16565b9150509250929050565b60008115159050919050565b611f8081611f6b565b82525050565b6000602082019050611f9b6000830184611f77565b92915050565b600060208284031215611fb757611fb6611e92565b5b6000611fc584828501611ee0565b91505092915050565b611fd781611f6b565b8114611fe257600080fd5b50565b600081359050611ff481611fce565b92915050565b6000806040838503121561201157612010611e92565b5b600061201f85828601611ee0565b925050602061203085828601611fe5565b9150509250929050565b61204381611ef5565b82525050565b600060208201905061205e600083018461203a565b92915050565b60008060006060848603121561207d5761207c611e92565b5b600061208b86828701611ee0565b935050602061209c86828701611ee0565b92505060406120ad86828701611f16565b9150509250925092565b600060ff82169050919050565b6120cd816120b7565b82525050565b60006020820190506120e860008301846120c4565b92915050565b60006020828403121561210457612103611e92565b5b600061211284828501611f16565b91505092915050565b61212481611eb7565b82525050565b600060208201905061213f600083018461211b565b92915050565b6000806040838503121561215c5761215b611e92565b5b600061216a85828601611ee0565b925050602061217b85828601611ee0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121cc57607f821691505b6020821081036121df576121de612185565b5b50919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b600061221b601683611deb565b9150612226826121e5565b602082019050919050565b6000602082019050818103600083015261224a8161220e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ba82611ef5565b91506122c583611ef5565b9250826122d5576122d4612251565b5b828204905092915050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c60008201527f20746f20737570706c79202f2035300000000000000000000000000000000000602082015250565b600061233c602f83611deb565b9150612347826122e0565b604082019050919050565b6000602082019050818103600083015261236b8161232f565b9050919050565b7f43616e6e6f742072652d656e61626c652074726164696e670000000000000000600082015250565b60006123a8601883611deb565b91506123b382612372565b602082019050919050565b600060208201905081810360008301526123d78161239b565b9050919050565b60006123e982611ef5565b91506123f483611ef5565b925082820190508082111561240c5761240b612280565b5b92915050565b6000606082019050612427600083018661211b565b612434602083018561203a565b612441604083018461203a565b949350505050565b600081905092915050565b50565b6000612464600083612449565b915061246f82612454565b600082019050919050565b600061248582612457565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b60006124c5600f83611deb565b91506124d08261248f565b602082019050919050565b600060208201905081810360008301526124f4816124b8565b9050919050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000612531601383611deb565b915061253c826124fb565b602082019050919050565b6000602082019050818103600083015261256081612524565b9050919050565b600061257282611ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036125a4576125a3612280565b5b600182019050919050565b60006125ba82611ef5565b91506125c583611ef5565b92508282026125d381611ef5565b915082820484148315176125ea576125e9612280565b5b5092915050565b60006125fc82611ef5565b915061260783611ef5565b925082820390508181111561261f5761261e612280565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061269281611ec9565b92915050565b6000602082840312156126ae576126ad611e92565b5b60006126bc84828501612683565b91505092915050565b6000819050919050565b6000819050919050565b60006126f46126ef6126ea846126c5565b6126cf565b611ef5565b9050919050565b612704816126d9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61273f81611eb7565b82525050565b60006127518383612736565b60208301905092915050565b6000602082019050919050565b60006127758261270a565b61277f8185612715565b935061278a83612726565b8060005b838110156127bb5781516127a28882612745565b97506127ad8361275d565b92505060018101905061278e565b5085935050505092915050565b600060a0820190506127dd600083018861203a565b6127ea60208301876126fb565b81810360408301526127fc818661276a565b905061280b606083018561211b565b612818608083018461203a565b969550505050505056fea264697066735822122037737e8b1a7d0c3bf8ae9d632d4dd35276b3c8b5097e2e0585f45e2aebfaace864736f6c63430008180033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.