Overview
Max Total Supply
10,000,000 CAFE
Holders
115 (0.00%)
Transfers
-
0 (0%)
Market
Price
$0.00 @ 0.000001 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Cafe
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-09-02
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: Cafe.sol
//SPDX-License-Identifier: MIT
/*
0xDEFCAFE - Empowering your trading journey on Dex space with lightning-fast transactions, uncompromised security, revolutionary sniping, all within an easy interface and passive income!
FEES
- Transfer: 0%
- Buy: 0%
- Sell: 10% tax goes 2%/4%/4% to Liquidity, Staking Rewards(paid in ETH), and Development & Marketing, respectively. The minimum possible sell tax is 5%, and the maximum is 20%.
SOCIALS:
Website: https://def.cafe
Telegram: https://t.me/DefCafeSociety
Twitter: https://twitter.com/0xDEFCAFE
Fast Trading Terminal: https://trading.def.cafe
*/
pragma solidity 0.8.19;
contract Cafe is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _owned;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private _excluded;
mapping (address => bool) public _automatedMarketMakerPairs;
address private _developerWallet;
address public _rewardsWallet;
uint256 private _tSupply = 10000000 * 10**9;
string private _name = "Def.Cafe";
string private _symbol = "CAFE";
uint8 private _decimals = 9;
uint256 public _Fee = 10;
uint256 private immutable _liquidityFeePercentage = 20;
uint256 private immutable _marketingFeePercentage = 40;
uint256 private immutable _rewardsFeePercentage = 40;
IUniswapV2Router02 public immutable uniswapV2Router;
address public uniswapV2Pair;
bool inSwapAndLiquify;
bool public swapAndLiquifyEnabled = true;
uint256 private minTokensToLiquify = 300 * 10**9;
uint256 private maxTokensToLiquify = 30000 * 10**9;
event SwapAndLiquifyEnabledUpdated(bool enabled);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiqudity
);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
modifier lockTheSwap {
inSwapAndLiquify = true;
_;
inSwapAndLiquify = false;
}
constructor (address _newOwner, address _router, address _dwWallet, address _rwWallet) {
transferOwnership(_newOwner);
_developerWallet = _dwWallet;
_rewardsWallet = _rwWallet;
_owned[owner()] = _tSupply;
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router);
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
uniswapV2Router = _uniswapV2Router;
_setAutomatedMarketMakerPair(uniswapV2Pair, true);
_excluded[owner()] = true;
_excluded[address(this)] = true;
emit Transfer(address(0), owner(), _tSupply);
}
function name() public view returns (string memory) {
return _name;
}
function symbol() public view returns (string memory) {
return _symbol;
}
function decimals() public view returns (uint8) {
return _decimals;
}
function totalSupply() public view override returns (uint256) {
return _tSupply;
}
function balanceOf(address account) public view override returns (uint256) {
return _owned[account];
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function excludeFromFee(address account) public onlyOwner {
_excluded[account] = true;
}
function includeInFee(address account) public onlyOwner {
_excluded[account] = false;
}
function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
swapAndLiquifyEnabled = _enabled;
emit SwapAndLiquifyEnabledUpdated(_enabled);
}
receive() external payable {}
function isExcludedFromFee(address account) public view returns(bool) {
return _excluded[account];
}
function _approve(address owner, address spender, uint256 amount) private {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _transfer(
address from,
address to,
uint256 amount
) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
uint256 contractTokenBalance = balanceOf(address(this));
bool overMinTokenBalance = contractTokenBalance >= minTokensToLiquify;
if (
overMinTokenBalance &&
!inSwapAndLiquify &&
swapAndLiquifyEnabled &&
!_excluded[from] &&
!_excluded[to] &&
!_automatedMarketMakerPairs[from]
) {
if(contractTokenBalance > maxTokensToLiquify) {
swapAndLiquify(maxTokensToLiquify);
} else {
swapAndLiquify(contractTokenBalance);
}
}
bool isEnableFee = false;
if (_automatedMarketMakerPairs[to] && !_excluded[to] && !_excluded[from]) {
isEnableFee = true;
}
(uint256 resultAmount, uint256 fees) = (amount, 0);
if(isEnableFee) {
(resultAmount, fees) = _getValues(amount);
_transferToken(from, address(this), fees);
}
_transferToken(from, to, resultAmount);
}
function swapAndLiquify(uint256 tokensToLiquify) private lockTheSwap {
uint256 singlePart = tokensToLiquify.div(100);
uint256 rewardsAndDwPart = tokensToLiquify.sub(singlePart.mul(_liquidityFeePercentage));
uint256 liquidityPart = tokensToLiquify.sub(rewardsAndDwPart);
uint256 liquidityToLiquify = liquidityPart.div(2);
uint256 liquidityToAdd = liquidityPart.sub(liquidityToLiquify);
uint256 toSwap = tokensToLiquify.sub(liquidityToAdd);
uint256 initialBalance = address(this).balance;
swapTokensForEth(toSwap);
uint256 newBalance = address(this).balance.sub(initialBalance);
uint256 toLiquidity = (newBalance.div(100)).mul(_liquidityFeePercentage);
addLiquidity(liquidityToAdd, toLiquidity);
uint256 balanceToSendDW = address(this).balance.div(2);
uint256 balanceToSendRW = address(this).balance.sub(balanceToSendDW);
payable(_developerWallet).transfer(balanceToSendDW);
payable(_rewardsWallet).transfer(balanceToSendRW);
emit SwapAndLiquify(liquidityToLiquify, newBalance, liquidityToAdd);
}
function swapTokensForEth(uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0,
0,
address(0),
block.timestamp
);
}
function _transferToken(address sender, address recipient, uint256 _amount) private {
_owned[sender] = _owned[sender].sub(_amount);
_owned[recipient] = _owned[recipient].add(_amount);
emit Transfer(sender, recipient, _amount);
}
function _getValues(uint256 _amount) private view returns (uint256, uint256) {
uint256 fees = _amount.mul(_Fee).div(10**2);
uint256 transferAmount = _amount.sub(fees);
return (transferAmount, fees);
}
function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
_automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function setMaxTokensToLiquify(uint256 amount) public onlyOwner {
require(amount <= 30000, "Variable cannot exceed 0,3 percent of the total supply.");
maxTokensToLiquify = amount * 10**9;
}
function setFee(uint256 fee) public onlyOwner {
require(fee >= 5 && fee <= 20, "Fee cannot exceed 20 percent.");
_Fee = fee;
}
function setDeveloperAddress(address adr) public onlyOwner {
_developerWallet = adr;
}
function setRewardsWallet(address adr) public onlyOwner {
_rewardsWallet = adr;
}
}
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"},{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_dwWallet","type":"address"},{"internalType":"address","name":"_rwWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":[],"name":"_Fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"setDeveloperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokensToLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"setRewardsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
662386f26fc100006007556101406040526008610100818152674465662e4361666560c01b61012052620000349082620005ce565b506040805180820190915260048152634341464560e01b60208201526009906200005f9082620005ce565b50600a805460ff19166009178155600b556014608052602860a081905260c052600c805460ff60a81b1916600160a81b1790556445d964b800600d55651b48eb57e000600e55348015620000b257600080fd5b50604051620020b4380380620020b4833981016040819052620000d591620006b7565b620000e033620003a4565b620000eb84620003f4565b600580546001600160a01b038085166001600160a01b031992831617909255600680549284169290911691909117905560075460016000620001356000546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000839050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c3919062000714565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000211573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000237919062000714565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab919062000714565b600c80546001600160a01b0319166001600160a01b0392831690811790915590821660e052620002dd90600162000477565b600160036000620002f66000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526003909252902080549091166001179055620003496000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200039191815260200190565b60405180910390a3505050505062000739565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620003fe620004cb565b6001600160a01b038116620004695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6200047481620003a4565b50565b6001600160a01b038216600081815260046020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000546001600160a01b03163314620005275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000460565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200055457607f821691505b6020821081036200057557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005c957600081815260208120601f850160051c81016020861015620005a45750805b601f850160051c820191505b81811015620005c557828155600101620005b0565b5050505b505050565b81516001600160401b03811115620005ea57620005ea62000529565b6200060281620005fb84546200053f565b846200057b565b602080601f8311600181146200063a5760008415620006215750858301515b600019600386901b1c1916600185901b178555620005c5565b600085815260208120601f198616915b828110156200066b578886015182559484019460019091019084016200064a565b50858210156200068a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b0381168114620006b257600080fd5b919050565b60008060008060808587031215620006ce57600080fd5b620006d9856200069a565b9350620006e9602086016200069a565b9250620006f9604086016200069a565b915062000709606086016200069a565b905092959194509250565b6000602082840312156200072757600080fd5b62000732826200069a565b9392505050565b60805160a05160c05160e05161191d62000797600039600081816102610152818161132c015281816113e5015281816114210152818161149b01526114f7015260005050600050506000818161101e01526110a3015261191d6000f3fe6080604052600436106101c65760003560e01c806369fe0e2d116100f7578063a457c2d711610095578063dcc345f211610064578063dcc345f21461055a578063dd62ed3e1461057a578063ea2f0b37146105c0578063f2fde38b146105e057600080fd5b8063a457c2d7146104ca578063a9059cbb146104ea578063a9b232d91461050a578063c49b9a801461053a57600080fd5b80638da5cb5b116100d15780638da5cb5b1461045757806395d89b41146104755780639a7a23d61461048a578063a1980430146104aa57600080fd5b806369fe0e2d146103ec57806370a082311461040c578063715018a61461044257600080fd5b80633532a8c81161016457806349bd5a5e1161013e57806349bd5a5e1461035c5780634a74bb021461037c5780635342acb41461039d5780635606f87d146103d657600080fd5b80633532a8c8146102fc578063395093511461031c578063437823ec1461033c57600080fd5b80631694505e116101a05780631694505e1461024f57806318160ddd1461029b57806323b872dd146102ba578063313ce567146102da57600080fd5b806306fdde03146101d2578063095ea7b3146101fd5780630ef9c73b1461022d57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610600565b6040516101f49190611575565b60405180910390f35b34801561020957600080fd5b5061021d6102183660046115d8565b610692565b60405190151581526020016101f4565b34801561023957600080fd5b5061024d610248366004611604565b6106a9565b005b34801561025b57600080fd5b506102837f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101f4565b3480156102a757600080fd5b506007545b6040519081526020016101f4565b3480156102c657600080fd5b5061021d6102d536600461161d565b610742565b3480156102e657600080fd5b50600a5460405160ff90911681526020016101f4565b34801561030857600080fd5b50600654610283906001600160a01b031681565b34801561032857600080fd5b5061021d6103373660046115d8565b6107ab565b34801561034857600080fd5b5061024d61035736600461165e565b6107e1565b34801561036857600080fd5b50600c54610283906001600160a01b031681565b34801561038857600080fd5b50600c5461021d90600160a81b900460ff1681565b3480156103a957600080fd5b5061021d6103b836600461165e565b6001600160a01b031660009081526003602052604090205460ff1690565b3480156103e257600080fd5b506102ac600b5481565b3480156103f857600080fd5b5061024d610407366004611604565b61080d565b34801561041857600080fd5b506102ac61042736600461165e565b6001600160a01b031660009081526001602052604090205490565b34801561044e57600080fd5b5061024d610878565b34801561046357600080fd5b506000546001600160a01b0316610283565b34801561048157600080fd5b506101e761088c565b34801561049657600080fd5b5061024d6104a5366004611690565b61089b565b3480156104b657600080fd5b5061024d6104c536600461165e565b610935565b3480156104d657600080fd5b5061021d6104e53660046115d8565b61095f565b3480156104f657600080fd5b5061021d6105053660046115d8565b6109ae565b34801561051657600080fd5b5061021d61052536600461165e565b60046020526000908152604090205460ff1681565b34801561054657600080fd5b5061024d6105553660046116c5565b6109bb565b34801561056657600080fd5b5061024d61057536600461165e565b610a1b565b34801561058657600080fd5b506102ac6105953660046116e0565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156105cc57600080fd5b5061024d6105db36600461165e565b610a45565b3480156105ec57600080fd5b5061024d6105fb36600461165e565b610a6e565b60606008805461060f90611719565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611719565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600061069f338484610ae7565b5060015b92915050565b6106b1610c0c565b61753081111561072e5760405162461bcd60e51b815260206004820152603760248201527f5661726961626c652063616e6e6f742065786365656420302c3320706572636560448201527f6e74206f662074686520746f74616c20737570706c792e00000000000000000060648201526084015b60405180910390fd5b61073c81633b9aca00611769565b600e5550565b600061074f848484610c66565b6107a1843361079c8560405180606001604052806028815260200161189b602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610f0e565b610ae7565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161069f91859061079c9086610f3a565b6107e9610c0c565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b610815610c0c565b60058110158015610827575060148111155b6108735760405162461bcd60e51b815260206004820152601d60248201527f4665652063616e6e6f74206578636565642032302070657263656e742e0000006044820152606401610725565b600b55565b610880610c0c565b61088a6000610f4d565b565b60606009805461060f90611719565b6108a3610c0c565b600c546001600160a01b03908116908316036109275760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610725565b6109318282610f9d565b5050565b61093d610c0c565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600061069f338461079c856040518060600160405280602581526020016118c3602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610f0e565b600061069f338484610c66565b6109c3610c0c565b600c8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610a1090831515815260200190565b60405180910390a150565b610a23610c0c565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610a4d610c0c565b6001600160a01b03166000908152600360205260409020805460ff19169055565b610a76610c0c565b6001600160a01b038116610adb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610725565b610ae481610f4d565b50565b6001600160a01b038316610b495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610725565b6001600160a01b038216610baa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610725565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000546001600160a01b0316331461088a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610725565b6001600160a01b038316610cca5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610725565b6001600160a01b038216610d2c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610725565b60008111610d8e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610725565b30600090815260016020526040902054600d5481108015908190610dbc5750600c54600160a01b900460ff16155b8015610dd15750600c54600160a81b900460ff165b8015610df657506001600160a01b03851660009081526003602052604090205460ff16155b8015610e1b57506001600160a01b03841660009081526003602052604090205460ff16155b8015610e4057506001600160a01b03851660009081526004602052604090205460ff16155b15610e6857600e54821115610e5f57610e5a600e54610ff1565b610e68565b610e6882610ff1565b6001600160a01b03841660009081526004602052604081205460ff168015610ea957506001600160a01b03851660009081526003602052604090205460ff16155b8015610ece57506001600160a01b03861660009081526003602052604090205460ff16155b15610ed7575060015b8360008215610ef957610ee9866111cd565b9092509050610ef988308361120b565b610f0488888461120b565b5050505050505050565b60008184841115610f325760405162461bcd60e51b81526004016107259190611575565b505050900390565b6000610f468284611780565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216600081815260046020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600c805460ff60a01b1916600160a01b17905560006110118260646112b1565b90506000611049611042837f00000000000000000000000000000000000000000000000000000000000000006112bd565b84906112c9565b9050600061105784836112c9565b905060006110668260026112b1565b9050600061107483836112c9565b9050600061108287836112c9565b90504761108e826112d5565b600061109a47836112c9565b905060006110d37f00000000000000000000000000000000000000000000000000000000000000006110cd8460646112b1565b906112bd565b90506110df8582611495565b60006110ec4760026112b1565b905060006110fa47836112c9565b6005546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015611135573d6000803e3d6000fd5b506006546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611170573d6000803e3d6000fd5b5060408051898152602081018690529081018890527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600c805460ff60a01b1916905550505050505050505050565b60008060006111f260646111ec600b54876112bd90919063ffffffff16565b906112b1565b9050600061120085836112c9565b959194509092505050565b6001600160a01b03831660009081526001602052604090205461122e90826112c9565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461125d9082610f3a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bff9085815260200190565b6000610f468284611793565b6000610f468284611769565b6000610f4682846117b5565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061130a5761130a6117c8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611388573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ac91906117de565b816001815181106113bf576113bf6117c8565b60200260200101906001600160a01b031690816001600160a01b03168152505061140a307f000000000000000000000000000000000000000000000000000000000000000084610ae7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061145f9085906000908690309042906004016117fb565b600060405180830381600087803b15801561147957600080fd5b505af115801561148d573d6000803e3d6000fd5b505050505050565b6114c0307f000000000000000000000000000000000000000000000000000000000000000084610ae7565b60405163f305d71960e01b8152306004820152602481018390526000604482018190526064820181905260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611549573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061156e919061186c565b5050505050565b600060208083528351808285015260005b818110156115a257858101830151858201604001528201611586565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ae457600080fd5b600080604083850312156115eb57600080fd5b82356115f6816115c3565b946020939093013593505050565b60006020828403121561161657600080fd5b5035919050565b60008060006060848603121561163257600080fd5b833561163d816115c3565b9250602084013561164d816115c3565b929592945050506040919091013590565b60006020828403121561167057600080fd5b8135610f46816115c3565b8035801515811461168b57600080fd5b919050565b600080604083850312156116a357600080fd5b82356116ae816115c3565b91506116bc6020840161167b565b90509250929050565b6000602082840312156116d757600080fd5b610f468261167b565b600080604083850312156116f357600080fd5b82356116fe816115c3565b9150602083013561170e816115c3565b809150509250929050565b600181811c9082168061172d57607f821691505b60208210810361174d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106a3576106a3611753565b808201808211156106a3576106a3611753565b6000826117b057634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106a3576106a3611753565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117f057600080fd5b8151610f46816115c3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561184b5784516001600160a01b031683529383019391830191600101611826565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561188157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a854411b1dee64931d52f3c09f5d2d638757dc742427fd8e00573e965a80956d64736f6c63430008130033000000000000000000000000e8a1ff07c76e46129c6ba47b8565e18ee1d05a500000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f2b0c7fd18b3cb22a77c2d433daa11762c46cee400000000000000000000000020b8e1f0eb17ec1d30dcb482893941ce2fe73bb7
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806369fe0e2d116100f7578063a457c2d711610095578063dcc345f211610064578063dcc345f21461055a578063dd62ed3e1461057a578063ea2f0b37146105c0578063f2fde38b146105e057600080fd5b8063a457c2d7146104ca578063a9059cbb146104ea578063a9b232d91461050a578063c49b9a801461053a57600080fd5b80638da5cb5b116100d15780638da5cb5b1461045757806395d89b41146104755780639a7a23d61461048a578063a1980430146104aa57600080fd5b806369fe0e2d146103ec57806370a082311461040c578063715018a61461044257600080fd5b80633532a8c81161016457806349bd5a5e1161013e57806349bd5a5e1461035c5780634a74bb021461037c5780635342acb41461039d5780635606f87d146103d657600080fd5b80633532a8c8146102fc578063395093511461031c578063437823ec1461033c57600080fd5b80631694505e116101a05780631694505e1461024f57806318160ddd1461029b57806323b872dd146102ba578063313ce567146102da57600080fd5b806306fdde03146101d2578063095ea7b3146101fd5780630ef9c73b1461022d57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610600565b6040516101f49190611575565b60405180910390f35b34801561020957600080fd5b5061021d6102183660046115d8565b610692565b60405190151581526020016101f4565b34801561023957600080fd5b5061024d610248366004611604565b6106a9565b005b34801561025b57600080fd5b506102837f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101f4565b3480156102a757600080fd5b506007545b6040519081526020016101f4565b3480156102c657600080fd5b5061021d6102d536600461161d565b610742565b3480156102e657600080fd5b50600a5460405160ff90911681526020016101f4565b34801561030857600080fd5b50600654610283906001600160a01b031681565b34801561032857600080fd5b5061021d6103373660046115d8565b6107ab565b34801561034857600080fd5b5061024d61035736600461165e565b6107e1565b34801561036857600080fd5b50600c54610283906001600160a01b031681565b34801561038857600080fd5b50600c5461021d90600160a81b900460ff1681565b3480156103a957600080fd5b5061021d6103b836600461165e565b6001600160a01b031660009081526003602052604090205460ff1690565b3480156103e257600080fd5b506102ac600b5481565b3480156103f857600080fd5b5061024d610407366004611604565b61080d565b34801561041857600080fd5b506102ac61042736600461165e565b6001600160a01b031660009081526001602052604090205490565b34801561044e57600080fd5b5061024d610878565b34801561046357600080fd5b506000546001600160a01b0316610283565b34801561048157600080fd5b506101e761088c565b34801561049657600080fd5b5061024d6104a5366004611690565b61089b565b3480156104b657600080fd5b5061024d6104c536600461165e565b610935565b3480156104d657600080fd5b5061021d6104e53660046115d8565b61095f565b3480156104f657600080fd5b5061021d6105053660046115d8565b6109ae565b34801561051657600080fd5b5061021d61052536600461165e565b60046020526000908152604090205460ff1681565b34801561054657600080fd5b5061024d6105553660046116c5565b6109bb565b34801561056657600080fd5b5061024d61057536600461165e565b610a1b565b34801561058657600080fd5b506102ac6105953660046116e0565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156105cc57600080fd5b5061024d6105db36600461165e565b610a45565b3480156105ec57600080fd5b5061024d6105fb36600461165e565b610a6e565b60606008805461060f90611719565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611719565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600061069f338484610ae7565b5060015b92915050565b6106b1610c0c565b61753081111561072e5760405162461bcd60e51b815260206004820152603760248201527f5661726961626c652063616e6e6f742065786365656420302c3320706572636560448201527f6e74206f662074686520746f74616c20737570706c792e00000000000000000060648201526084015b60405180910390fd5b61073c81633b9aca00611769565b600e5550565b600061074f848484610c66565b6107a1843361079c8560405180606001604052806028815260200161189b602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610f0e565b610ae7565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161069f91859061079c9086610f3a565b6107e9610c0c565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b610815610c0c565b60058110158015610827575060148111155b6108735760405162461bcd60e51b815260206004820152601d60248201527f4665652063616e6e6f74206578636565642032302070657263656e742e0000006044820152606401610725565b600b55565b610880610c0c565b61088a6000610f4d565b565b60606009805461060f90611719565b6108a3610c0c565b600c546001600160a01b03908116908316036109275760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610725565b6109318282610f9d565b5050565b61093d610c0c565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600061069f338461079c856040518060600160405280602581526020016118c3602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610f0e565b600061069f338484610c66565b6109c3610c0c565b600c8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610a1090831515815260200190565b60405180910390a150565b610a23610c0c565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610a4d610c0c565b6001600160a01b03166000908152600360205260409020805460ff19169055565b610a76610c0c565b6001600160a01b038116610adb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610725565b610ae481610f4d565b50565b6001600160a01b038316610b495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610725565b6001600160a01b038216610baa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610725565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000546001600160a01b0316331461088a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610725565b6001600160a01b038316610cca5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610725565b6001600160a01b038216610d2c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610725565b60008111610d8e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610725565b30600090815260016020526040902054600d5481108015908190610dbc5750600c54600160a01b900460ff16155b8015610dd15750600c54600160a81b900460ff165b8015610df657506001600160a01b03851660009081526003602052604090205460ff16155b8015610e1b57506001600160a01b03841660009081526003602052604090205460ff16155b8015610e4057506001600160a01b03851660009081526004602052604090205460ff16155b15610e6857600e54821115610e5f57610e5a600e54610ff1565b610e68565b610e6882610ff1565b6001600160a01b03841660009081526004602052604081205460ff168015610ea957506001600160a01b03851660009081526003602052604090205460ff16155b8015610ece57506001600160a01b03861660009081526003602052604090205460ff16155b15610ed7575060015b8360008215610ef957610ee9866111cd565b9092509050610ef988308361120b565b610f0488888461120b565b5050505050505050565b60008184841115610f325760405162461bcd60e51b81526004016107259190611575565b505050900390565b6000610f468284611780565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216600081815260046020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600c805460ff60a01b1916600160a01b17905560006110118260646112b1565b90506000611049611042837f00000000000000000000000000000000000000000000000000000000000000146112bd565b84906112c9565b9050600061105784836112c9565b905060006110668260026112b1565b9050600061107483836112c9565b9050600061108287836112c9565b90504761108e826112d5565b600061109a47836112c9565b905060006110d37f00000000000000000000000000000000000000000000000000000000000000146110cd8460646112b1565b906112bd565b90506110df8582611495565b60006110ec4760026112b1565b905060006110fa47836112c9565b6005546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015611135573d6000803e3d6000fd5b506006546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611170573d6000803e3d6000fd5b5060408051898152602081018690529081018890527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600c805460ff60a01b1916905550505050505050505050565b60008060006111f260646111ec600b54876112bd90919063ffffffff16565b906112b1565b9050600061120085836112c9565b959194509092505050565b6001600160a01b03831660009081526001602052604090205461122e90826112c9565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461125d9082610f3a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bff9085815260200190565b6000610f468284611793565b6000610f468284611769565b6000610f4682846117b5565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061130a5761130a6117c8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611388573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ac91906117de565b816001815181106113bf576113bf6117c8565b60200260200101906001600160a01b031690816001600160a01b03168152505061140a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ae7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061145f9085906000908690309042906004016117fb565b600060405180830381600087803b15801561147957600080fd5b505af115801561148d573d6000803e3d6000fd5b505050505050565b6114c0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ae7565b60405163f305d71960e01b8152306004820152602481018390526000604482018190526064820181905260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611549573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061156e919061186c565b5050505050565b600060208083528351808285015260005b818110156115a257858101830151858201604001528201611586565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ae457600080fd5b600080604083850312156115eb57600080fd5b82356115f6816115c3565b946020939093013593505050565b60006020828403121561161657600080fd5b5035919050565b60008060006060848603121561163257600080fd5b833561163d816115c3565b9250602084013561164d816115c3565b929592945050506040919091013590565b60006020828403121561167057600080fd5b8135610f46816115c3565b8035801515811461168b57600080fd5b919050565b600080604083850312156116a357600080fd5b82356116ae816115c3565b91506116bc6020840161167b565b90509250929050565b6000602082840312156116d757600080fd5b610f468261167b565b600080604083850312156116f357600080fd5b82356116fe816115c3565b9150602083013561170e816115c3565b809150509250929050565b600181811c9082168061172d57607f821691505b60208210810361174d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106a3576106a3611753565b808201808211156106a3576106a3611753565b6000826117b057634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106a3576106a3611753565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156117f057600080fd5b8151610f46816115c3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561184b5784516001600160a01b031683529383019391830191600101611826565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561188157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a854411b1dee64931d52f3c09f5d2d638757dc742427fd8e00573e965a80956d64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e8a1ff07c76e46129c6ba47b8565e18ee1d05a500000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f2b0c7fd18b3cb22a77c2d433daa11762c46cee400000000000000000000000020b8e1f0eb17ec1d30dcb482893941ce2fe73bb7
-----Decoded View---------------
Arg [0] : _newOwner (address): 0xE8A1FF07c76e46129c6ba47b8565e18EE1D05a50
Arg [1] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : _dwWallet (address): 0xF2B0c7fD18b3cB22A77C2D433dAA11762C46cEe4
Arg [3] : _rwWallet (address): 0x20B8E1F0eB17ec1D30dCB482893941CE2FE73bb7
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000e8a1ff07c76e46129c6ba47b8565e18ee1d05a50
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 000000000000000000000000f2b0c7fd18b3cb22a77c2d433daa11762c46cee4
Arg [3] : 00000000000000000000000020b8e1f0eb17ec1d30dcb482893941ce2fe73bb7
Deployed Bytecode Sourcemap
23674:9938:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25905:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26736:161;;;;;;;;;;-1:-1:-1;26736:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;26736:161:0;1023:187:1;33035:212:0;;;;;;;;;;-1:-1:-1;33035:212:0;;;;;:::i;:::-;;:::i;:::-;;24491:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1591:32:1;;;1573:51;;1561:2;1546:18;24491:51:0;1400:230:1;26182:96:0;;;;;;;;;;-1:-1:-1;26262:8:0;;26182:96;;;1781:25:1;;;1769:2;1754:18;26182:96:0;1635:177:1;26905:313:0;;;;;;;;;;-1:-1:-1;26905:313:0;;;;;:::i;:::-;;:::i;26091:83::-;;;;;;;;;;-1:-1:-1;26157:9:0;;26091:83;;26157:9;;;;2420:36:1;;2408:2;2393:18;26091:83:0;2278:184:1;24075:29:0;;;;;;;;;;-1:-1:-1;24075:29:0;;;;-1:-1:-1;;;;;24075:29:0;;;27226:218;;;;;;;;;;-1:-1:-1;27226:218:0;;;;;:::i;:::-;;:::i;27733:102::-;;;;;;;;;;-1:-1:-1;27733:102:0;;;;;:::i;:::-;;:::i;24549:28::-;;;;;;;;;;-1:-1:-1;24549:28:0;;;;-1:-1:-1;;;;;24549:28:0;;;24618:40;;;;;;;;;;-1:-1:-1;24618:40:0;;;;-1:-1:-1;;;24618:40:0;;;;;;28176:114;;;;;;;;;;-1:-1:-1;28176:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;28264:18:0;28240:4;28264:18;;;:9;:18;;;;;;;;;28176:114;24277:24;;;;;;;;;;;;;;;;33253:149;;;;;;;;;;-1:-1:-1;33253:149:0;;;;;:::i;:::-;;:::i;26286:116::-;;;;;;;;;;-1:-1:-1;26286:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;26379:15:0;26352:7;26379:15;;;:6;:15;;;;;;;26286:116;5614:103;;;;;;;;;;;;;:::i;4973:87::-;;;;;;;;;;-1:-1:-1;5019:7:0;5046:6;-1:-1:-1;;;;;5046:6:0;4973:87;;25996;;;;;;;;;;;;;:::i;32588:244::-;;;;;;;;;;-1:-1:-1;32588:244:0;;;;;:::i;:::-;;:::i;33514:95::-;;;;;;;;;;-1:-1:-1;33514:95:0;;;;;:::i;:::-;;:::i;27452:269::-;;;;;;;;;;-1:-1:-1;27452:269:0;;;;;:::i;:::-;;:::i;26410:167::-;;;;;;;;;;-1:-1:-1;26410:167:0;;;;;:::i;:::-;;:::i;23968:59::-;;;;;;;;;;-1:-1:-1;23968:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27956:171;;;;;;;;;;-1:-1:-1;27956:171:0;;;;;:::i;:::-;;:::i;33408:100::-;;;;;;;;;;-1:-1:-1;33408:100:0;;;;;:::i;:::-;;:::i;26585:143::-;;;;;;;;;;-1:-1:-1;26585:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;26693:18:0;;;26666:7;26693:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26585:143;27847:101;;;;;;;;;;-1:-1:-1;27847:101:0;;;;;:::i;:::-;;:::i;5872:201::-;;;;;;;;;;-1:-1:-1;5872:201:0;;;;;:::i;:::-;;:::i;25905:83::-;25942:13;25975:5;25968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25905:83;:::o;26736:161::-;26811:4;26828:39;3604:10;26851:7;26860:6;26828:8;:39::i;:::-;-1:-1:-1;26885:4:0;26736:161;;;;;:::o;33035:212::-;4859:13;:11;:13::i;:::-;33128:5:::1;33118:6;:15;;33110:83;;;::::0;-1:-1:-1;;;33110:83:0;;4577:2:1;33110:83:0::1;::::0;::::1;4559:21:1::0;4616:2;4596:18;;;4589:30;4655:34;4635:18;;;4628:62;4726:25;4706:18;;;4699:53;4769:19;;33110:83:0::1;;;;;;;;;33225:14;:6:::0;33234:5:::1;33225:14;:::i;:::-;33204:18;:35:::0;-1:-1:-1;33035:212:0:o;26905:313::-;27003:4;27020:36;27030:6;27038:9;27049:6;27020:9;:36::i;:::-;27067:121;27076:6;3604:10;27098:89;27136:6;27098:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27098:19:0;;;;;;:11;:19;;;;;;;;3604:10;27098:33;;;;;;;;;;:37;:89::i;:::-;27067:8;:121::i;:::-;-1:-1:-1;27206:4:0;26905:313;;;;;:::o;27226:218::-;3604:10;27314:4;27363:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27363:34:0;;;;;;;;;;27314:4;;27331:83;;27354:7;;27363:50;;27402:10;27363:38;:50::i;27733:102::-;4859:13;:11;:13::i;:::-;-1:-1:-1;;;;;27802:18:0::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;27802:25:0::1;27823:4;27802:25;::::0;;27733:102::o;33253:149::-;4859:13;:11;:13::i;:::-;33325:1:::1;33318:3;:8;;:21;;;;;33337:2;33330:3;:9;;33318:21;33310:63;;;::::0;-1:-1:-1;;;33310:63:0;;5306:2:1;33310:63:0::1;::::0;::::1;5288:21:1::0;5345:2;5325:18;;;5318:30;5384:31;5364:18;;;5357:59;5433:18;;33310:63:0::1;5104:353:1::0;33310:63:0::1;33384:4;:10:::0;33253:149::o;5614:103::-;4859:13;:11;:13::i;:::-;5679:30:::1;5706:1;5679:18;:30::i;:::-;5614:103::o:0;25996:87::-;26035:13;26068:7;26061:14;;;;;:::i;32588:244::-;4859:13;:11;:13::i;:::-;32695::::1;::::0;-1:-1:-1;;;;;32695:13:0;;::::1;32687:21:::0;;::::1;::::0;32679:91:::1;;;::::0;-1:-1:-1;;;32679:91:0;;5664:2:1;32679:91:0::1;::::0;::::1;5646:21:1::0;5703:2;5683:18;;;5676:30;5742:34;5722:18;;;5715:62;5813:27;5793:18;;;5786:55;5858:19;;32679:91:0::1;5462:421:1::0;32679:91:0::1;32783:41;32812:4;32818:5;32783:28;:41::i;:::-;32588:244:::0;;:::o;33514:95::-;4859:13;:11;:13::i;:::-;33581:14:::1;:20:::0;;-1:-1:-1;;;;;;33581:20:0::1;-1:-1:-1::0;;;;;33581:20:0;;;::::1;::::0;;;::::1;::::0;;33514:95::o;27452:269::-;27545:4;27562:129;3604:10;27585:7;27594:96;27633:15;27594:96;;;;;;;;;;;;;;;;;3604:10;27594:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27594:34:0;;;;;;;;;;;;:38;:96::i;26410:167::-;26488:4;26505:42;3604:10;26529:9;26540:6;26505:9;:42::i;27956:171::-;4859:13;:11;:13::i;:::-;28033:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;28033:32:0::1;-1:-1:-1::0;;;;28033:32:0;;::::1;;::::0;;28081:38:::1;::::0;::::1;::::0;::::1;::::0;28057:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;28081:38:0::1;;;;;;;;27956:171:::0;:::o;33408:100::-;4859:13;:11;:13::i;:::-;33478:16:::1;:22:::0;;-1:-1:-1;;;;;;33478:22:0::1;-1:-1:-1::0;;;;;33478:22:0;;;::::1;::::0;;;::::1;::::0;;33408:100::o;27847:101::-;4859:13;:11;:13::i;:::-;-1:-1:-1;;;;;27914:18:0::1;27935:5;27914:18:::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;27914:26:0::1;::::0;;27847:101::o;5872:201::-;4859:13;:11;:13::i;:::-;-1:-1:-1;;;;;5961:22:0;::::1;5953:73;;;::::0;-1:-1:-1;;;5953:73:0;;6090:2:1;5953:73:0::1;::::0;::::1;6072:21:1::0;6129:2;6109:18;;;6102:30;6168:34;6148:18;;;6141:62;-1:-1:-1;;;6219:18:1;;;6212:36;6265:19;;5953:73:0::1;5888:402:1::0;5953:73:0::1;6037:28;6056:8;6037:18;:28::i;:::-;5872:201:::0;:::o;28298:337::-;-1:-1:-1;;;;;28391:19:0;;28383:68;;;;-1:-1:-1;;;28383:68:0;;6497:2:1;28383:68:0;;;6479:21:1;6536:2;6516:18;;;6509:30;6575:34;6555:18;;;6548:62;-1:-1:-1;;;6626:18:1;;;6619:34;6670:19;;28383:68:0;6295:400:1;28383:68:0;-1:-1:-1;;;;;28470:21:0;;28462:68;;;;-1:-1:-1;;;28462:68:0;;6902:2:1;28462:68:0;;;6884:21:1;6941:2;6921:18;;;6914:30;6980:34;6960:18;;;6953:62;-1:-1:-1;;;7031:18:1;;;7024:32;7073:19;;28462:68:0;6700:398:1;28462:68:0;-1:-1:-1;;;;;28543:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28595:32;;1781:25:1;;;28595:32:0;;1754:18:1;28595:32:0;;;;;;;;28298:337;;;:::o;5138:132::-;5019:7;5046:6;-1:-1:-1;;;;;5046:6:0;3604:10;5202:23;5194:68;;;;-1:-1:-1;;;5194:68:0;;7305:2:1;5194:68:0;;;7287:21:1;;;7324:18;;;7317:30;7383:34;7363:18;;;7356:62;7435:18;;5194:68:0;7103:356:1;28643:1400:0;-1:-1:-1;;;;;28765:18:0;;28757:68;;;;-1:-1:-1;;;28757:68:0;;7666:2:1;28757:68:0;;;7648:21:1;7705:2;7685:18;;;7678:30;7744:34;7724:18;;;7717:62;-1:-1:-1;;;7795:18:1;;;7788:35;7840:19;;28757:68:0;7464:401:1;28757:68:0;-1:-1:-1;;;;;28844:16:0;;28836:64;;;;-1:-1:-1;;;28836:64:0;;8072:2:1;28836:64:0;;;8054:21:1;8111:2;8091:18;;;8084:30;8150:34;8130:18;;;8123:62;-1:-1:-1;;;8201:18:1;;;8194:33;8244:19;;28836:64:0;7870:399:1;28836:64:0;28928:1;28919:6;:10;28911:64;;;;-1:-1:-1;;;28911:64:0;;8476:2:1;28911:64:0;;;8458:21:1;8515:2;8495:18;;;8488:30;8554:34;8534:18;;;8527:62;-1:-1:-1;;;8605:18:1;;;8598:39;8654:19;;28911:64:0;8274:405:1;28911:64:0;29037:4;28988:28;26379:15;;;:6;:15;;;;;;29115:18;;29091:42;;;;;;;29162:53;;-1:-1:-1;29199:16:0;;-1:-1:-1;;;29199:16:0;;;;29198:17;29162:53;:91;;;;-1:-1:-1;29232:21:0;;-1:-1:-1;;;29232:21:0;;;;29162:91;:124;;;;-1:-1:-1;;;;;;29271:15:0;;;;;;:9;:15;;;;;;;;29270:16;29162:124;:155;;;;-1:-1:-1;;;;;;29304:13:0;;;;;;:9;:13;;;;;;;;29303:14;29162:155;:205;;;;-1:-1:-1;;;;;;29335:32:0;;;;;;:26;:32;;;;;;;;29334:33;29162:205;29144:454;;;29420:18;;29397:20;:41;29394:192;;;29459:34;29474:18;;29459:14;:34::i;:::-;29394:192;;;29534:36;29549:20;29534:14;:36::i;:::-;-1:-1:-1;;;;;29647:30:0;;29608:16;29647:30;;;:26;:30;;;;;;;;:48;;;;-1:-1:-1;;;;;;29682:13:0;;;;;;:9;:13;;;;;;;;29681:14;29647:48;:68;;;;-1:-1:-1;;;;;;29700:15:0;;;;;;:9;:15;;;;;;;;29699:16;29647:68;29643:119;;;-1:-1:-1;29746:4:0;29643:119;29822:6;29783:20;29851:137;;;;29904:18;29915:6;29904:10;:18::i;:::-;29881:41;;-1:-1:-1;29881:41:0;-1:-1:-1;29936:41:0;29951:4;29965;29881:41;29936:14;:41::i;:::-;29997:38;30012:4;30018:2;30022:12;29997:14;:38::i;:::-;28746:1297;;;;;28643:1400;;;:::o;21219:206::-;21305:7;21366:12;21358:6;;;;21350:29;;;;-1:-1:-1;;;21350:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;21401:5:0;;;21219:206::o;18940:98::-;18998:7;19025:5;19029:1;19025;:5;:::i;:::-;19018:12;18940:98;-1:-1:-1;;;18940:98:0:o;6233:191::-;6307:16;6326:6;;-1:-1:-1;;;;;6343:17:0;;;-1:-1:-1;;;;;;6343:17:0;;;;;;6376:40;;6326:6;;;;;;;6376:40;;6307:16;6376:40;6296:128;6233:191;:::o;32840:189::-;-1:-1:-1;;;;;32923:32:0;;;;;;:26;:32;;;;;;:40;;-1:-1:-1;;32923:40:0;;;;;;;;;;32981;;32923;;:32;32981:40;;;32840:189;;:::o;30051:1159::-;25083:16;:23;;-1:-1:-1;;;;25083:23:0;-1:-1:-1;;;25083:23:0;;;;30152:24:::1;:15:::0;30172:3:::1;30152:19;:24::i;:::-;30131:45:::0;-1:-1:-1;30187:24:0::1;30214:60;30234:39;30131:45:::0;30249:23:::1;30234:14;:39::i;:::-;30214:15:::0;;:19:::1;:60::i;:::-;30187:87:::0;-1:-1:-1;30285:21:0::1;30309:37;:15:::0;30187:87;30309:19:::1;:37::i;:::-;30285:61:::0;-1:-1:-1;30357:26:0::1;30386:20;30285:61:::0;30404:1:::1;30386:17;:20::i;:::-;30357:49:::0;-1:-1:-1;30417:22:0::1;30442:37;:13:::0;30357:49;30442:17:::1;:37::i;:::-;30417:62:::0;-1:-1:-1;30490:14:0::1;30507:35;:15:::0;30417:62;30507:19:::1;:35::i;:::-;30490:52:::0;-1:-1:-1;30580:21:0::1;30614:24;30490:52:::0;30614:16:::1;:24::i;:::-;30659:18;30680:41;:21;30706:14:::0;30680:25:::1;:41::i;:::-;30659:62:::0;-1:-1:-1;30732:19:0::1;30754:50;30780:23;30755:19;30659:62:::0;30770:3:::1;30755:14;:19::i;:::-;30754:25:::0;::::1;:50::i;:::-;30732:72;;30815:41;30828:14;30844:11;30815:12;:41::i;:::-;30867:23;30893:28;:21;30919:1;30893:25;:28::i;:::-;30867:54:::0;-1:-1:-1;30932:23:0::1;30958:42;:21;30867:54:::0;30958:25:::1;:42::i;:::-;31019:16;::::0;31011:51:::1;::::0;30932:68;;-1:-1:-1;;;;;;31019:16:0::1;::::0;31011:51;::::1;;;::::0;31046:15;;31019:16:::1;31011:51:::0;31019:16;31011:51;31046:15;31019:16;31011:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;31081:14:0::1;::::0;31073:49:::1;::::0;-1:-1:-1;;;;;31081:14:0;;::::1;::::0;31073:49;::::1;;;::::0;31106:15;;31081:14:::1;31073:49:::0;31081:14;31073:49;31106:15;31081:14;31073:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;31140:62:0::1;::::0;;9016:25:1;;;9072:2;9057:18;;9050:34;;;9100:18;;;9093:34;;;31140:62:0::1;::::0;9004:2:1;8989:18;31140:62:0::1;;;;;;;-1:-1:-1::0;;25129:16:0;:24;;-1:-1:-1;;;;25129:24:0;;;-1:-1:-1;;;;;;;;;;30051:1159:0:o;32350:232::-;32409:7;32418;32438:12;32453:28;32475:5;32453:17;32465:4;;32453:7;:11;;:17;;;;:::i;:::-;:21;;:28::i;:::-;32438:43;-1:-1:-1;32492:22:0;32517:17;:7;32438:43;32517:11;:17::i;:::-;32492:42;32569:4;;-1:-1:-1;32350:232:0;;-1:-1:-1;;;32350:232:0:o;32078:263::-;-1:-1:-1;;;;;32190:14:0;;;;;;:6;:14;;;;;;:27;;32209:7;32190:18;:27::i;:::-;-1:-1:-1;;;;;32173:14:0;;;;;;;:6;:14;;;;;;:44;;;;32248:17;;;;;;;:30;;32270:7;32248:21;:30::i;:::-;-1:-1:-1;;;;;32228:17:0;;;;;;;:6;:17;;;;;;;:50;;;;32297:36;;;;;;;;;;32325:7;1781:25:1;;1769:2;1754:18;;1635:177;20077:98:0;20135:7;20162:5;20166:1;20162;:5;:::i;19678:98::-;19736:7;19763:5;19767:1;19763;:5;:::i;19321:98::-;19379:7;19406:5;19410:1;19406;:5;:::i;31218:477::-;31310:16;;;31324:1;31310:16;;;;;;;;31286:21;;31310:16;;;;;;;;;;-1:-1:-1;31310:16:0;31286:40;;31355:4;31337;31342:1;31337:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31337:23:0;;;-1:-1:-1;;;;;31337:23:0;;;;;31381:15;-1:-1:-1;;;;;31381:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31371:4;31376:1;31371:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31371:32:0;;;-1:-1:-1;;;;;31371:32:0;;;;;31416:62;31433:4;31448:15;31466:11;31416:8;:62::i;:::-;31491:196;;-1:-1:-1;;;31491:196:0;;-1:-1:-1;;;;;31491:15:0;:66;;;;:196;;31572:11;;31598:1;;31614:4;;31641;;31661:15;;31491:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31273:422;31218:477;:::o;31703:367::-;31784:62;31801:4;31816:15;31834:11;31784:8;:62::i;:::-;31859:203;;-1:-1:-1;;;31859:203:0;;31931:4;31859:203;;;11339:34:1;11389:18;;;11382:34;;;31977:1:0;11432:18:1;;;11425:34;;;11475:18;;;11468:34;;;11518:19;;;11511:44;32036:15:0;11571:19:1;;;11564:35;31859:15:0;-1:-1:-1;;;;;31859:31:0;;;;31898:9;;11273:19:1;;31859:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31703:367;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:1;;1215:180;-1:-1:-1;1215:180:1:o;1817:456::-;1894:6;1902;1910;1963:2;1951:9;1942:7;1938:23;1934:32;1931:52;;;1979:1;1976;1969:12;1931:52;2018:9;2005:23;2037:31;2062:5;2037:31;:::i;:::-;2087:5;-1:-1:-1;2144:2:1;2129:18;;2116:32;2157:33;2116:32;2157:33;:::i;:::-;1817:456;;2209:7;;-1:-1:-1;;;2263:2:1;2248:18;;;;2235:32;;1817:456::o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3021:60;2927:160;;;:::o;3092:315::-;3157:6;3165;3218:2;3206:9;3197:7;3193:23;3189:32;3186:52;;;3234:1;3231;3224:12;3186:52;3273:9;3260:23;3292:31;3317:5;3292:31;:::i;:::-;3342:5;-1:-1:-1;3366:35:1;3397:2;3382:18;;3366:35;:::i;:::-;3356:45;;3092:315;;;;;:::o;3412:180::-;3468:6;3521:2;3509:9;3500:7;3496:23;3492:32;3489:52;;;3537:1;3534;3527:12;3489:52;3560:26;3576:9;3560:26;:::i;3597:388::-;3665:6;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3781:9;3768:23;3800:31;3825:5;3800:31;:::i;:::-;3850:5;-1:-1:-1;3907:2:1;3892:18;;3879:32;3920:33;3879:32;3920:33;:::i;:::-;3972:7;3962:17;;;3597:388;;;;;:::o;3990:380::-;4069:1;4065:12;;;;4112;;;4133:61;;4187:4;4179:6;4175:17;4165:27;;4133:61;4240:2;4232:6;4229:14;4209:18;4206:38;4203:161;;4286:10;4281:3;4277:20;4274:1;4267:31;4321:4;4318:1;4311:15;4349:4;4346:1;4339:15;4203:161;;3990:380;;;:::o;4799:127::-;4860:10;4855:3;4851:20;4848:1;4841:31;4891:4;4888:1;4881:15;4915:4;4912:1;4905:15;4931:168;5004:9;;;5035;;5052:15;;;5046:22;;5032:37;5022:71;;5073:18;;:::i;8684:125::-;8749:9;;;8770:10;;;8767:36;;;8783:18;;:::i;9138:217::-;9178:1;9204;9194:132;;9248:10;9243:3;9239:20;9236:1;9229:31;9283:4;9280:1;9273:15;9311:4;9308:1;9301:15;9194:132;-1:-1:-1;9340:9:1;;9138:217::o;9360:128::-;9427:9;;;9448:11;;;9445:37;;;9462:18;;:::i;9625:127::-;9686:10;9681:3;9677:20;9674:1;9667:31;9717:4;9714:1;9707:15;9741:4;9738:1;9731:15;9757:251;9827:6;9880:2;9868:9;9859:7;9855:23;9851:32;9848:52;;;9896:1;9893;9886:12;9848:52;9928:9;9922:16;9947:31;9972:5;9947:31;:::i;10013:980::-;10275:4;10323:3;10312:9;10308:19;10354:6;10343:9;10336:25;10380:2;10418:6;10413:2;10402:9;10398:18;10391:34;10461:3;10456:2;10445:9;10441:18;10434:31;10485:6;10520;10514:13;10551:6;10543;10536:22;10589:3;10578:9;10574:19;10567:26;;10628:2;10620:6;10616:15;10602:29;;10649:1;10659:195;10673:6;10670:1;10667:13;10659:195;;;10738:13;;-1:-1:-1;;;;;10734:39:1;10722:52;;10829:15;;;;10794:12;;;;10770:1;10688:9;10659:195;;;-1:-1:-1;;;;;;;10910:32:1;;;;10905:2;10890:18;;10883:60;-1:-1:-1;;;10974:3:1;10959:19;10952:35;10871:3;10013:980;-1:-1:-1;;;10013:980:1:o;11610:306::-;11698:6;11706;11714;11767:2;11755:9;11746:7;11742:23;11738:32;11735:52;;;11783:1;11780;11773:12;11735:52;11812:9;11806:16;11796:26;;11862:2;11851:9;11847:18;11841:25;11831:35;;11906:2;11895:9;11891:18;11885:25;11875:35;;11610:306;;;;;:::o
Swarm Source
ipfs://a854411b1dee64931d52f3c09f5d2d638757dc742427fd8e00573e965a80956d
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.
Add Token to MetaMask (Web3)