Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 76 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17546377 | 513 days ago | IN | 0 ETH | 0.00066256 | ||||
Approve | 17546324 | 513 days ago | IN | 0 ETH | 0.0007248 | ||||
Approve | 17546324 | 513 days ago | IN | 0 ETH | 0.0007248 | ||||
Approve | 17545649 | 513 days ago | IN | 0 ETH | 0.00064051 | ||||
Approve | 17545644 | 513 days ago | IN | 0 ETH | 0.00066182 | ||||
Approve | 17545624 | 513 days ago | IN | 0 ETH | 0.00079302 | ||||
Approve | 17545621 | 513 days ago | IN | 0 ETH | 0.00299799 | ||||
Approve | 17545620 | 513 days ago | IN | 0 ETH | 0.00063104 | ||||
Approve | 17545607 | 513 days ago | IN | 0 ETH | 0.00093214 | ||||
Approve | 17545600 | 513 days ago | IN | 0 ETH | 0.00119389 | ||||
Approve | 17545595 | 513 days ago | IN | 0 ETH | 0.00093611 | ||||
Approve | 17545577 | 513 days ago | IN | 0 ETH | 0.00066857 | ||||
Approve | 17545574 | 513 days ago | IN | 0 ETH | 0.00066982 | ||||
Renounce Ownersh... | 17545573 | 513 days ago | IN | 0 ETH | 0.00029297 | ||||
Set Fees | 17545570 | 513 days ago | IN | 0 ETH | 0.00036889 | ||||
Approve | 17545553 | 513 days ago | IN | 0 ETH | 0.00081147 | ||||
Approve | 17545551 | 513 days ago | IN | 0 ETH | 0.00077096 | ||||
Approve | 17545551 | 513 days ago | IN | 0 ETH | 0.00093342 | ||||
Set Fees | 17545550 | 513 days ago | IN | 0 ETH | 0.00051715 | ||||
Approve | 17545549 | 513 days ago | IN | 0 ETH | 0.00079107 | ||||
Approve | 17545548 | 513 days ago | IN | 0 ETH | 0.00079647 | ||||
Approve | 17545546 | 513 days ago | IN | 0 ETH | 0.00065812 | ||||
Approve | 17545546 | 513 days ago | IN | 0 ETH | 0.00089076 | ||||
Approve | 17545545 | 513 days ago | IN | 0 ETH | 0.00076534 | ||||
Approve | 17545544 | 513 days ago | IN | 0 ETH | 0.00067561 |
Latest 16 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17545551 | 513 days ago | 0.11541099 ETH | ||||
17545551 | 513 days ago | 0.11541099 ETH | ||||
17545550 | 513 days ago | 0.1108306 ETH | ||||
17545550 | 513 days ago | 0.1108306 ETH | ||||
17545547 | 513 days ago | 0.1177652 ETH | ||||
17545547 | 513 days ago | 0.1177652 ETH | ||||
17545547 | 513 days ago | 0.1253068 ETH | ||||
17545547 | 513 days ago | 0.1253068 ETH | ||||
17545544 | 513 days ago | 0.27230164 ETH | ||||
17545544 | 513 days ago | 0.27230164 ETH | ||||
17545535 | 513 days ago | 0.1056162 ETH | ||||
17545535 | 513 days ago | 0.1056162 ETH | ||||
17545533 | 513 days ago | 0.1056162 ETH | ||||
17545533 | 513 days ago | 0.1056162 ETH | ||||
17545524 | 513 days ago | 0.32985015 ETH | ||||
17545524 | 513 days ago | 0.32985015 ETH |
Loading...
Loading
Contract Name:
MSN
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-23 */ // Website: https://msncoin.vip // Twitter: https://twitter.com/msn_erc20 // Telegram: https://t.me/msncoinportal // 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: @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/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/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: contracts/MSN.sol pragma solidity ^0.8.12; contract MSN is Ownable, ERC20 { using Address for address payable; using SafeMath for uint256; IUniswapV2Router02 public router; address public pair; bool private swapping = false; bool private swapEnabled = false; bool public tradingEnabled = false; uint256 public supply = 100_000_000_000 * 10 ** 18; uint256 private swapTokensAtAmount = supply * 5 / 1000; uint256 public maxTxAmount = supply * 20 / 1000; uint256 public maxWalletAmount = supply * 20 / 1000; uint256 public totalBuyTax = 0; uint256 public totalSellTax = 0; address private msnWallet = address(0x83094F378b26D1B1fA27c5C2E9064ff37D156c3F); address private marketingWallet = address(0xd9f2fc1B0269b296C23dfc743279a19D60db5a02); mapping (address => bool) private _excludedFromFees; modifier inSwap() { if (!swapping) { swapping = true; _; swapping = false; } } constructor() ERC20("MSN Messenger", "MSN") { _mint(marketingWallet, supply * 5 / 100); _mint(msg.sender, supply * 95 / 100); IUniswapV2Router02 _router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address _pair = IUniswapV2Factory(_router.factory()) .createPair(address(this), _router.WETH()); router = _router; pair = _pair; _excludedFromFees[address(this)] = true; _excludedFromFees[msnWallet] = true; _excludedFromFees[marketingWallet] = true; _excludedFromFees[msg.sender] = true; _excludedFromFees[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true; _excludedFromFees[address(0xdead)] = true; _excludedFromFees[address(0x0000000000000000000000000000000000000000)] = true; } function _transfer(address sender, address recipient, uint256 amount) internal override { require(amount > 0, "Transfer amount must be greater than zero"); if(!_excludedFromFees[sender] && !_excludedFromFees[recipient] && !swapping){ require(tradingEnabled, "Trading not active yet"); require(amount <= maxTxAmount, "You are exceeding maxTxAmount"); if(recipient != pair){ require(balanceOf(recipient) + amount <= maxWalletAmount, "You are exceeding maxWalletAmount"); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if (canSwap && swapEnabled && !swapping && sender != pair && contractTokenBalance > 0) { swapForFees(contractTokenBalance); } } uint256 fee; if (swapping || _excludedFromFees[sender] || _excludedFromFees[recipient]) { fee = 0; } else{ if(recipient == pair) { fee = amount * totalSellTax / 100; } else { fee = amount * totalBuyTax / 100; } } super._transfer(sender, recipient, amount - fee); if(fee > 0) { super._transfer(sender, address(this) ,fee); } } function swapForFees(uint256 amount) private inSwap { swapTokensForETH(amount); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { uint256 reward = address(this).balance; payable(msnWallet).sendValue(reward); } } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function startTrading() external onlyOwner { require(!tradingEnabled, "Trading already active"); tradingEnabled = true; swapEnabled = true; totalBuyTax = 15; totalSellTax = 40; } function setFees(uint256 buy, uint256 sell) external onlyOwner { require(buy <= 10, "Cannot be upper than 10% tax on buy"); require(sell <= 20, "Cannot be upper than 20% tax on sell"); totalBuyTax = buy; totalSellTax = sell; } function setSettingsSwap(bool swap) external onlyOwner { swapEnabled = swap; } receive() external payable {} } library Address{ 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"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"swap","type":"bool"}],"name":"setSettingsSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526007805462ffffff60a01b191690556c01431e0fae6d7217caa000000060088190556103e890620000379060056200054e565b6200004391906200056e565b6009556103e860085460146200005a91906200054e565b6200006691906200056e565b600a556103e860085460146200007d91906200054e565b6200008991906200056e565b600b555f600c819055600d55600e80546001600160a01b03199081167383094f378b26d1b1fa27c5c2e9064ff37d156c3f17909155600f805490911673d9f2fc1b0269b296c23dfc743279a19d60db5a02179055348015620000e9575f80fd5b506040518060400160405280600d81526020016c26a9a71026b2b9b9b2b733b2b960991b8152506040518060400160405280600381526020016226a9a760e91b81525062000146620001406200041c60201b60201c565b62000420565b60046200015483826200062d565b5060056200016382826200062d565b5050600f546008546200019f92506001600160a01b03909116906064906200018d9060056200054e565b6200019991906200056e565b6200046f565b620001b7336064600854605f6200018d91906200054e565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002339190620006f5565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a59190620006f5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002f0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003169190620006f5565b600680546001600160a01b03199081166001600160a01b03958616179091556007805490911691841691909117905550305f90815260106020526040808220805460ff199081166001908117909255600e54851684528284208054821683179055600f549094168352818320805485168217905533835290822080548416821790557feb1861b62122c39d7846b597c3c20bac261ab9032a26ee7d64c4c7f875977df880548416821790557f9e93e1db4a1f807cc22b2aecf4deeb0bf5745f1ecb319e87c68c5624c0fa6b6980548416821790559080527f6e0956cda88cad152e89927e53611735b61a5c762d1428573c6931b0a5efcb0180549092161790556200073a565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620004ca5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f828254620004dd919062000724565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200056857620005686200053a565b92915050565b5f826200058957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620005b757607f821691505b602082108103620005d657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000535575f81815260208120601f850160051c81016020861015620006045750805b601f850160051c820191505b81811015620006255782815560010162000610565b505050505050565b81516001600160401b038111156200064957620006496200058e565b62000661816200065a8454620005a2565b84620005dc565b602080601f83116001811462000697575f84156200067f5750858301515b5f19600386901b1c1916600185901b17855562000625565b5f85815260208120601f198616915b82811015620006c757888601518255948401946001909101908401620006a6565b5085821015620006e557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000706575f80fd5b81516001600160a01b03811681146200071d575f80fd5b9392505050565b808201808211156200056857620005686200053a565b6114e880620007485f395ff3fe608060405260043610610164575f3560e01c80634ada218b116100cd578063a457c2d711610087578063aa4bde2811610062578063aa4bde28146103f0578063dd62ed3e14610405578063f2fde38b14610424578063f887ea4014610443575f80fd5b8063a457c2d714610393578063a8aa1b31146103b2578063a9059cbb146103d1575f80fd5b80634ada218b146102d257806370a08231146102f2578063715018a6146103265780638c0b5e221461033a5780638da5cb5b1461034f57806395d89b411461037f575f80fd5b80631bff78981161011e5780631bff78981461023b57806323b872dd14610250578063293230b81461026f578063313ce56714610283578063395093511461029e57806346469afb146102bd575f80fd5b8063047fc9aa1461016f57806306fdde0314610197578063095ea7b3146101b85780630b78f9c0146101e757806318160ddd146102085780631baaa30a1461021c575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b5061018460085481565b6040519081526020015b60405180910390f35b3480156101a2575f80fd5b506101ab610462565b60405161018e919061120d565b3480156101c3575f80fd5b506101d76101d236600461126c565b6104f2565b604051901515815260200161018e565b3480156101f2575f80fd5b50610206610201366004611296565b61050b565b005b348015610213575f80fd5b50600354610184565b348015610227575f80fd5b506102066102363660046112b6565b6105dd565b348015610246575f80fd5b50610184600d5481565b34801561025b575f80fd5b506101d761026a3660046112dc565b610603565b34801561027a575f80fd5b50610206610626565b34801561028e575f80fd5b506040516012815260200161018e565b3480156102a9575f80fd5b506101d76102b836600461126c565b6106a2565b3480156102c8575f80fd5b50610184600c5481565b3480156102dd575f80fd5b506007546101d790600160b01b900460ff1681565b3480156102fd575f80fd5b5061018461030c36600461131a565b6001600160a01b03165f9081526001602052604090205490565b348015610331575f80fd5b506102066106c3565b348015610345575f80fd5b50610184600a5481565b34801561035a575f80fd5b505f546001600160a01b03165b6040516001600160a01b03909116815260200161018e565b34801561038a575f80fd5b506101ab6106d6565b34801561039e575f80fd5b506101d76103ad36600461126c565b6106e5565b3480156103bd575f80fd5b50600754610367906001600160a01b031681565b3480156103dc575f80fd5b506101d76103eb36600461126c565b61075f565b3480156103fb575f80fd5b50610184600b5481565b348015610410575f80fd5b5061018461041f366004611335565b61076c565b34801561042f575f80fd5b5061020661043e36600461131a565b610796565b34801561044e575f80fd5b50600654610367906001600160a01b031681565b6060600480546104719061136c565b80601f016020809104026020016040519081016040528092919081815260200182805461049d9061136c565b80156104e85780601f106104bf576101008083540402835291602001916104e8565b820191905f5260205f20905b8154815290600101906020018083116104cb57829003601f168201915b5050505050905090565b5f336104ff81858561080f565b60019150505b92915050565b610513610932565b600a8211156105755760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206265207570706572207468616e2031302520746178206f6e2060448201526262757960e81b60648201526084015b60405180910390fd5b60148111156105d25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206265207570706572207468616e2032302520746178206f6e206044820152631cd95b1b60e21b606482015260840161056c565b600c91909155600d55565b6105e5610932565b60078054911515600160a81b0260ff60a81b19909216919091179055565b5f3361061085828561098b565b61061b858585610a03565b506001949350505050565b61062e610932565b600754600160b01b900460ff16156106815760405162461bcd60e51b815260206004820152601660248201527554726164696e6720616c72656164792061637469766560501b604482015260640161056c565b6007805461ffff60a81b191661010160a81b179055600f600c556028600d55565b5f336104ff8185856106b4838361076c565b6106be91906113b8565b61080f565b6106cb610932565b6106d45f610d4c565b565b6060600580546104719061136c565b5f33816106f2828661076c565b9050838110156107525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161056c565b61061b828686840361080f565b5f336104ff818585610a03565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61079e610932565b6001600160a01b0381166108035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056c565b61080c81610d4c565b50565b6001600160a01b0383166108715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161056c565b6001600160a01b0382166108d25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161056c565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b031633146106d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056c565b5f610996848461076c565b90505f1981146109fd57818110156109f05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161056c565b6109fd848484840361080f565b50505050565b5f8111610a645760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161056c565b6001600160a01b0383165f9081526010602052604090205460ff16158015610aa457506001600160a01b0382165f9081526010602052604090205460ff16155b8015610aba5750600754600160a01b900460ff16155b15610c7457600754600160b01b900460ff16610b115760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b604482015260640161056c565b600a54811115610b635760405162461bcd60e51b815260206004820152601d60248201527f596f752061726520657863656564696e67206d61785478416d6f756e74000000604482015260640161056c565b6007546001600160a01b03838116911614610bfc57600b5481610b9a846001600160a01b03165f9081526001602052604090205490565b610ba491906113b8565b1115610bfc5760405162461bcd60e51b815260206004820152602160248201527f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e6044820152601d60fa1b606482015260840161056c565b305f9081526001602052604090205460095481108015908190610c285750600754600160a81b900460ff165b8015610c3e5750600754600160a01b900460ff16155b8015610c5857506007546001600160a01b03868116911614155b8015610c6357505f82115b15610c7157610c7182610d9b565b50505b6007545f90600160a01b900460ff1680610ca557506001600160a01b0384165f9081526010602052604090205460ff165b80610cc757506001600160a01b0383165f9081526010602052604090205460ff165b15610cd357505f610d27565b6007546001600160a01b0390811690841603610d0a576064600d5483610cf991906113cb565b610d0391906113e2565b9050610d27565b6064600c5483610d1a91906113cb565b610d2491906113e2565b90505b610d3b8484610d368486611401565b610dfa565b80156109fd576109fd843083610dfa565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600754600160a01b900460ff1661080c576007805460ff60a01b1916600160a01b179055610dc881610fa3565b478015610de957600e544790610de7906001600160a01b0316826110f3565b505b506007805460ff60a01b1916905550565b6001600160a01b038316610e5e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161056c565b6001600160a01b038216610ec05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161056c565b6001600160a01b0383165f9081526001602052604090205481811015610f375760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161056c565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f969086815260200190565b60405180910390a36109fd565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610fd657610fd6611414565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561102d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110519190611428565b8160018151811061106457611064611414565b6001600160a01b03928316602091820292909201015260065461108a913091168461080f565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906110c29085905f90869030904290600401611443565b5f604051808303815f87803b1580156110d9575f80fd5b505af11580156110eb573d5f803e3d5ffd5b505050505050565b804710156111435760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161056c565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f811461118c576040519150601f19603f3d011682016040523d82523d5f602084013e611191565b606091505b50509050806112085760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161056c565b505050565b5f6020808352835180828501525f5b818110156112385785810183015185820160400152820161121c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461080c575f80fd5b5f806040838503121561127d575f80fd5b823561128881611258565b946020939093013593505050565b5f80604083850312156112a7575f80fd5b50508035926020909101359150565b5f602082840312156112c6575f80fd5b813580151581146112d5575f80fd5b9392505050565b5f805f606084860312156112ee575f80fd5b83356112f981611258565b9250602084013561130981611258565b929592945050506040919091013590565b5f6020828403121561132a575f80fd5b81356112d581611258565b5f8060408385031215611346575f80fd5b823561135181611258565b9150602083013561136181611258565b809150509250929050565b600181811c9082168061138057607f821691505b60208210810361139e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610505576105056113a4565b8082028115828204841417610505576105056113a4565b5f826113fc57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610505576105056113a4565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611438575f80fd5b81516112d581611258565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114915784516001600160a01b03168352938301939183019160010161146c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a8fbab8c06946ff05432242f8c1f0f1ba755a3f41c86d3c2a14965d35f2ea0cb64736f6c63430008140033
Deployed Bytecode
0x608060405260043610610164575f3560e01c80634ada218b116100cd578063a457c2d711610087578063aa4bde2811610062578063aa4bde28146103f0578063dd62ed3e14610405578063f2fde38b14610424578063f887ea4014610443575f80fd5b8063a457c2d714610393578063a8aa1b31146103b2578063a9059cbb146103d1575f80fd5b80634ada218b146102d257806370a08231146102f2578063715018a6146103265780638c0b5e221461033a5780638da5cb5b1461034f57806395d89b411461037f575f80fd5b80631bff78981161011e5780631bff78981461023b57806323b872dd14610250578063293230b81461026f578063313ce56714610283578063395093511461029e57806346469afb146102bd575f80fd5b8063047fc9aa1461016f57806306fdde0314610197578063095ea7b3146101b85780630b78f9c0146101e757806318160ddd146102085780631baaa30a1461021c575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b5061018460085481565b6040519081526020015b60405180910390f35b3480156101a2575f80fd5b506101ab610462565b60405161018e919061120d565b3480156101c3575f80fd5b506101d76101d236600461126c565b6104f2565b604051901515815260200161018e565b3480156101f2575f80fd5b50610206610201366004611296565b61050b565b005b348015610213575f80fd5b50600354610184565b348015610227575f80fd5b506102066102363660046112b6565b6105dd565b348015610246575f80fd5b50610184600d5481565b34801561025b575f80fd5b506101d761026a3660046112dc565b610603565b34801561027a575f80fd5b50610206610626565b34801561028e575f80fd5b506040516012815260200161018e565b3480156102a9575f80fd5b506101d76102b836600461126c565b6106a2565b3480156102c8575f80fd5b50610184600c5481565b3480156102dd575f80fd5b506007546101d790600160b01b900460ff1681565b3480156102fd575f80fd5b5061018461030c36600461131a565b6001600160a01b03165f9081526001602052604090205490565b348015610331575f80fd5b506102066106c3565b348015610345575f80fd5b50610184600a5481565b34801561035a575f80fd5b505f546001600160a01b03165b6040516001600160a01b03909116815260200161018e565b34801561038a575f80fd5b506101ab6106d6565b34801561039e575f80fd5b506101d76103ad36600461126c565b6106e5565b3480156103bd575f80fd5b50600754610367906001600160a01b031681565b3480156103dc575f80fd5b506101d76103eb36600461126c565b61075f565b3480156103fb575f80fd5b50610184600b5481565b348015610410575f80fd5b5061018461041f366004611335565b61076c565b34801561042f575f80fd5b5061020661043e36600461131a565b610796565b34801561044e575f80fd5b50600654610367906001600160a01b031681565b6060600480546104719061136c565b80601f016020809104026020016040519081016040528092919081815260200182805461049d9061136c565b80156104e85780601f106104bf576101008083540402835291602001916104e8565b820191905f5260205f20905b8154815290600101906020018083116104cb57829003601f168201915b5050505050905090565b5f336104ff81858561080f565b60019150505b92915050565b610513610932565b600a8211156105755760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206265207570706572207468616e2031302520746178206f6e2060448201526262757960e81b60648201526084015b60405180910390fd5b60148111156105d25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206265207570706572207468616e2032302520746178206f6e206044820152631cd95b1b60e21b606482015260840161056c565b600c91909155600d55565b6105e5610932565b60078054911515600160a81b0260ff60a81b19909216919091179055565b5f3361061085828561098b565b61061b858585610a03565b506001949350505050565b61062e610932565b600754600160b01b900460ff16156106815760405162461bcd60e51b815260206004820152601660248201527554726164696e6720616c72656164792061637469766560501b604482015260640161056c565b6007805461ffff60a81b191661010160a81b179055600f600c556028600d55565b5f336104ff8185856106b4838361076c565b6106be91906113b8565b61080f565b6106cb610932565b6106d45f610d4c565b565b6060600580546104719061136c565b5f33816106f2828661076c565b9050838110156107525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161056c565b61061b828686840361080f565b5f336104ff818585610a03565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61079e610932565b6001600160a01b0381166108035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056c565b61080c81610d4c565b50565b6001600160a01b0383166108715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161056c565b6001600160a01b0382166108d25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161056c565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b031633146106d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056c565b5f610996848461076c565b90505f1981146109fd57818110156109f05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161056c565b6109fd848484840361080f565b50505050565b5f8111610a645760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161056c565b6001600160a01b0383165f9081526010602052604090205460ff16158015610aa457506001600160a01b0382165f9081526010602052604090205460ff16155b8015610aba5750600754600160a01b900460ff16155b15610c7457600754600160b01b900460ff16610b115760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b604482015260640161056c565b600a54811115610b635760405162461bcd60e51b815260206004820152601d60248201527f596f752061726520657863656564696e67206d61785478416d6f756e74000000604482015260640161056c565b6007546001600160a01b03838116911614610bfc57600b5481610b9a846001600160a01b03165f9081526001602052604090205490565b610ba491906113b8565b1115610bfc5760405162461bcd60e51b815260206004820152602160248201527f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e6044820152601d60fa1b606482015260840161056c565b305f9081526001602052604090205460095481108015908190610c285750600754600160a81b900460ff165b8015610c3e5750600754600160a01b900460ff16155b8015610c5857506007546001600160a01b03868116911614155b8015610c6357505f82115b15610c7157610c7182610d9b565b50505b6007545f90600160a01b900460ff1680610ca557506001600160a01b0384165f9081526010602052604090205460ff165b80610cc757506001600160a01b0383165f9081526010602052604090205460ff165b15610cd357505f610d27565b6007546001600160a01b0390811690841603610d0a576064600d5483610cf991906113cb565b610d0391906113e2565b9050610d27565b6064600c5483610d1a91906113cb565b610d2491906113e2565b90505b610d3b8484610d368486611401565b610dfa565b80156109fd576109fd843083610dfa565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600754600160a01b900460ff1661080c576007805460ff60a01b1916600160a01b179055610dc881610fa3565b478015610de957600e544790610de7906001600160a01b0316826110f3565b505b506007805460ff60a01b1916905550565b6001600160a01b038316610e5e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161056c565b6001600160a01b038216610ec05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161056c565b6001600160a01b0383165f9081526001602052604090205481811015610f375760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161056c565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f969086815260200190565b60405180910390a36109fd565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610fd657610fd6611414565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561102d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110519190611428565b8160018151811061106457611064611414565b6001600160a01b03928316602091820292909201015260065461108a913091168461080f565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906110c29085905f90869030904290600401611443565b5f604051808303815f87803b1580156110d9575f80fd5b505af11580156110eb573d5f803e3d5ffd5b505050505050565b804710156111435760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161056c565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f811461118c576040519150601f19603f3d011682016040523d82523d5f602084013e611191565b606091505b50509050806112085760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161056c565b505050565b5f6020808352835180828501525f5b818110156112385785810183015185820160400152820161121c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461080c575f80fd5b5f806040838503121561127d575f80fd5b823561128881611258565b946020939093013593505050565b5f80604083850312156112a7575f80fd5b50508035926020909101359150565b5f602082840312156112c6575f80fd5b813580151581146112d5575f80fd5b9392505050565b5f805f606084860312156112ee575f80fd5b83356112f981611258565b9250602084013561130981611258565b929592945050506040919091013590565b5f6020828403121561132a575f80fd5b81356112d581611258565b5f8060408385031215611346575f80fd5b823561135181611258565b9150602083013561136181611258565b809150509250929050565b600181811c9082168061138057607f821691505b60208210810361139e57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610505576105056113a4565b8082028115828204841417610505576105056113a4565b5f826113fc57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610505576105056113a4565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611438575f80fd5b81516112d581611258565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114915784516001600160a01b03168352938301939183019160010161146c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a8fbab8c06946ff05432242f8c1f0f1ba755a3f41c86d3c2a14965d35f2ea0cb64736f6c63430008140033
Deployed Bytecode Sourcemap
35813:4624:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36115:50;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;36115:50:0;;;;;;;;16372:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;18732:201::-;;;;;;;;;;-1:-1:-1;18732:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;18732:201:0;1205:187:1;40030:267:0;;;;;;;;;;-1:-1:-1;40030:267:0;;;;;:::i;:::-;;:::i;:::-;;17501:108;;;;;;;;;;-1:-1:-1;17589:12:0;;17501:108;;40305:92;;;;;;;;;;-1:-1:-1;40305:92:0;;;;;:::i;:::-;;:::i;36384:31::-;;;;;;;;;;;;;;;;19513:261;;;;;;;;;;-1:-1:-1;19513:261:0;;;;;:::i;:::-;;:::i;39794:228::-;;;;;;;;;;;;;:::i;17343:93::-;;;;;;;;;;-1:-1:-1;17343:93:0;;17426:2;2531:36:1;;2519:2;2504:18;17343:93:0;2389:184:1;20183:238:0;;;;;;;;;;-1:-1:-1;20183:238:0;;;;;:::i;:::-;;:::i;36347:30::-;;;;;;;;;;;;;;;;36072:34;;;;;;;;;;-1:-1:-1;36072:34:0;;;;-1:-1:-1;;;36072:34:0;;;;;;17672:127;;;;;;;;;;-1:-1:-1;17672:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17773:18:0;17746:7;17773:18;;;:9;:18;;;;;;;17672:127;9827:103;;;;;;;;;;;;;:::i;36233:47::-;;;;;;;;;;;;;;;;9186:87;;;;;;;;;;-1:-1:-1;9232:7:0;9259:6;-1:-1:-1;;;;;9259:6:0;9186:87;;;-1:-1:-1;;;;;2994:32:1;;;2976:51;;2964:2;2949:18;9186:87:0;2830:203:1;16591:104:0;;;;;;;;;;;;;:::i;20924:436::-;;;;;;;;;;-1:-1:-1;20924:436:0;;;;;:::i;:::-;;:::i;35969:19::-;;;;;;;;;;-1:-1:-1;35969:19:0;;;;-1:-1:-1;;;;;35969:19:0;;;18005:193;;;;;;;;;;-1:-1:-1;18005:193:0;;;;;:::i;:::-;;:::i;36287:51::-;;;;;;;;;;;;;;;;18261:151;;;;;;;;;;-1:-1:-1;18261:151:0;;;;;:::i;:::-;;:::i;10085:201::-;;;;;;;;;;-1:-1:-1;10085:201:0;;;;;:::i;:::-;;:::i;35930:32::-;;;;;;;;;;-1:-1:-1;35930:32:0;;;;-1:-1:-1;;;;;35930:32:0;;;16372:100;16426:13;16459:5;16452:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16372:100;:::o;18732:201::-;18815:4;7817:10;18871:32;7817:10;18887:7;18896:6;18871:8;:32::i;:::-;18921:4;18914:11;;;18732:201;;;;;:::o;40030:267::-;9072:13;:11;:13::i;:::-;40119:2:::1;40112:3;:9;;40104:57;;;::::0;-1:-1:-1;;;40104:57:0;;4253:2:1;40104:57:0::1;::::0;::::1;4235:21:1::0;4292:2;4272:18;;;4265:30;4331:34;4311:18;;;4304:62;-1:-1:-1;;;4382:18:1;;;4375:33;4425:19;;40104:57:0::1;;;;;;;;;40188:2;40180:4;:10;;40172:59;;;::::0;-1:-1:-1;;;40172:59:0;;4657:2:1;40172:59:0::1;::::0;::::1;4639:21:1::0;4696:2;4676:18;;;4669:30;4735:34;4715:18;;;4708:62;-1:-1:-1;;;4786:18:1;;;4779:34;4830:19;;40172:59:0::1;4455:400:1::0;40172:59:0::1;40242:11;:17:::0;;;;40270:12:::1;:19:::0;40030:267::o;40305:92::-;9072:13;:11;:13::i;:::-;40371:11:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;40371:18:0::1;-1:-1:-1::0;;;;40371:18:0;;::::1;::::0;;;::::1;::::0;;40305:92::o;19513:261::-;19610:4;7817:10;19668:38;19684:4;7817:10;19699:6;19668:15;:38::i;:::-;19717:27;19727:4;19733:2;19737:6;19717:9;:27::i;:::-;-1:-1:-1;19762:4:0;;19513:261;-1:-1:-1;;;;19513:261:0:o;39794:228::-;9072:13;:11;:13::i;:::-;39857:14:::1;::::0;-1:-1:-1;;;39857:14:0;::::1;;;39856:15;39848:50;;;::::0;-1:-1:-1;;;39848:50:0;;5062:2:1;39848:50:0::1;::::0;::::1;5044:21:1::0;5101:2;5081:18;;;5074:30;-1:-1:-1;;;5120:18:1;;;5113:52;5182:18;;39848:50:0::1;4860:346:1::0;39848:50:0::1;39909:14;:21:::0;;-1:-1:-1;;;;39941:18:0;-1:-1:-1;;;39941:18:0;;;39984:2:::1;39970:11;:16:::0;40012:2:::1;39997:12;:17:::0;39794:228::o;20183:238::-;20271:4;7817:10;20327:64;7817:10;20343:7;20380:10;20352:25;7817:10;20343:7;20352:9;:25::i;:::-;:38;;;;:::i;:::-;20327:8;:64::i;9827:103::-;9072:13;:11;:13::i;:::-;9892:30:::1;9919:1;9892:18;:30::i;:::-;9827:103::o:0;16591:104::-;16647:13;16680:7;16673:14;;;;;:::i;20924:436::-;21017:4;7817:10;21017:4;21100:25;7817:10;21117:7;21100:9;:25::i;:::-;21073:52;;21164:15;21144:16;:35;;21136:85;;;;-1:-1:-1;;;21136:85:0;;5675:2:1;21136:85:0;;;5657:21:1;5714:2;5694:18;;;5687:30;5753:34;5733:18;;;5726:62;-1:-1:-1;;;5804:18:1;;;5797:35;5849:19;;21136:85:0;5473:401:1;21136:85:0;21257:60;21266:5;21273:7;21301:15;21282:16;:34;21257:8;:60::i;18005:193::-;18084:4;7817:10;18140:28;7817:10;18157:2;18161:6;18140:9;:28::i;18261:151::-;-1:-1:-1;;;;;18377:18:0;;;18350:7;18377:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18261:151::o;10085:201::-;9072:13;:11;:13::i;:::-;-1:-1:-1;;;;;10174:22:0;::::1;10166:73;;;::::0;-1:-1:-1;;;10166:73:0;;6081:2:1;10166:73:0::1;::::0;::::1;6063:21:1::0;6120:2;6100:18;;;6093:30;6159:34;6139:18;;;6132:62;-1:-1:-1;;;6210:18:1;;;6203:36;6256:19;;10166:73:0::1;5879:402:1::0;10166:73:0::1;10250:28;10269:8;10250:18;:28::i;:::-;10085:201:::0;:::o;24917:346::-;-1:-1:-1;;;;;25019:19:0;;25011:68;;;;-1:-1:-1;;;25011:68:0;;6488:2:1;25011:68:0;;;6470:21:1;6527:2;6507:18;;;6500:30;6566:34;6546:18;;;6539:62;-1:-1:-1;;;6617:18:1;;;6610:34;6661:19;;25011:68:0;6286:400:1;25011:68:0;-1:-1:-1;;;;;25098:21:0;;25090:68;;;;-1:-1:-1;;;25090:68:0;;6893:2:1;25090:68:0;;;6875:21:1;6932:2;6912:18;;;6905:30;6971:34;6951:18;;;6944:62;-1:-1:-1;;;7022:18:1;;;7015:32;7064:19;;25090:68:0;6691:398:1;25090:68:0;-1:-1:-1;;;;;25171:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25223:32;;160:25:1;;;25223:32:0;;133:18:1;25223:32:0;;;;;;;24917:346;;;:::o;9351:132::-;9232:7;9259:6;-1:-1:-1;;;;;9259:6:0;7817:10;9415:23;9407:68;;;;-1:-1:-1;;;9407:68:0;;7296:2:1;9407:68:0;;;7278:21:1;;;7315:18;;;7308:30;7374:34;7354:18;;;7347:62;7426:18;;9407:68:0;7094:356:1;25554:419:0;25655:24;25682:25;25692:5;25699:7;25682:9;:25::i;:::-;25655:52;;-1:-1:-1;;25722:16:0;:37;25718:248;;25804:6;25784:16;:26;;25776:68;;;;-1:-1:-1;;;25776:68:0;;7657:2:1;25776:68:0;;;7639:21:1;7696:2;7676:18;;;7669:30;7735:31;7715:18;;;7708:59;7784:18;;25776:68:0;7455:353:1;25776:68:0;25888:51;25897:5;25904:7;25932:6;25913:16;:25;25888:8;:51::i;:::-;25644:329;25554:419;;;:::o;37694:1398::-;37810:1;37801:6;:10;37793:64;;;;-1:-1:-1;;;37793:64:0;;8015:2:1;37793:64:0;;;7997:21:1;8054:2;8034:18;;;8027:30;8093:34;8073:18;;;8066:62;-1:-1:-1;;;8144:18:1;;;8137:39;8193:19;;37793:64:0;7813:405:1;37793:64:0;-1:-1:-1;;;;;37874:25:0;;;;;;:17;:25;;;;;;;;37873:26;:59;;;;-1:-1:-1;;;;;;37904:28:0;;;;;;:17;:28;;;;;;;;37903:29;37873:59;:72;;;;-1:-1:-1;37937:8:0;;-1:-1:-1;;;37937:8:0;;;;37936:9;37873:72;37870:710;;;37969:14;;-1:-1:-1;;;37969:14:0;;;;37961:49;;;;-1:-1:-1;;;37961:49:0;;8425:2:1;37961:49:0;;;8407:21:1;8464:2;8444:18;;;8437:30;-1:-1:-1;;;8483:18:1;;;8476:52;8545:18;;37961:49:0;8223:346:1;37961:49:0;38043:11;;38033:6;:21;;38025:63;;;;-1:-1:-1;;;38025:63:0;;8776:2:1;38025:63:0;;;8758:21:1;8815:2;8795:18;;;8788:30;8854:31;8834:18;;;8827:59;8903:18;;38025:63:0;8574:353:1;38025:63:0;38119:4;;-1:-1:-1;;;;;38106:17:0;;;38119:4;;38106:17;38103:151;;38185:15;;38175:6;38152:20;38162:9;-1:-1:-1;;;;;17773:18:0;17746:7;17773:18;;;:9;:18;;;;;;;17672:127;38152:20;:29;;;;:::i;:::-;:48;;38144:94;;;;-1:-1:-1;;;38144:94:0;;9134:2:1;38144:94:0;;;9116:21:1;9173:2;9153:18;;;9146:30;9212:34;9192:18;;;9185:62;-1:-1:-1;;;9263:18:1;;;9256:31;9304:19;;38144:94:0;8932:397:1;38144:94:0;38319:4;38270:28;17773:18;;;:9;:18;;;;;;38379;;38355:42;;;;;;;38418:22;;-1:-1:-1;38429:11:0;;-1:-1:-1;;;38429:11:0;;;;38418:22;:35;;;;-1:-1:-1;38445:8:0;;-1:-1:-1;;;38445:8:0;;;;38444:9;38418:35;:53;;;;-1:-1:-1;38467:4:0;;-1:-1:-1;;;;;38457:14:0;;;38467:4;;38457:14;;38418:53;:81;;;;;38498:1;38475:20;:24;38418:81;38414:155;;;38520:33;38532:20;38520:11;:33::i;:::-;37946:634;;37870:710;38618:8;;38592:11;;-1:-1:-1;;;38618:8:0;;;;;:37;;-1:-1:-1;;;;;;38630:25:0;;;;;;:17;:25;;;;;;;;38618:37;:69;;;-1:-1:-1;;;;;;38659:28:0;;;;;;:17;:28;;;;;;;;38618:69;38614:316;;;-1:-1:-1;38710:1:0;38614:316;;;38759:4;;-1:-1:-1;;;;;38759:4:0;;;38746:17;;;;38743:176;;38814:3;38799:12;;38790:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;38784:33;;38743:176;;;38900:3;38886:11;;38877:6;:20;;;;:::i;:::-;:26;;;;:::i;:::-;38871:32;;38743:176;38942:48;38958:6;38966:9;38977:12;38986:3;38977:6;:12;:::i;:::-;38942:15;:48::i;:::-;39004:7;;39001:82;;39028:43;39044:6;39060:4;39067:3;39028:15;:43::i;10446:191::-;10520:16;10539:6;;-1:-1:-1;;;;;10556:17:0;;;-1:-1:-1;;;;;;10556:17:0;;;;;;10589:40;;10539:6;;;;;;;10589:40;;10520:16;10589:40;10509:128;10446:191;:::o;39100:310::-;36710:8;;-1:-1:-1;;;36710:8:0;;;;36705:104;;36735:8;:15;;-1:-1:-1;;;;36735:15:0;-1:-1:-1;;;36735:15:0;;;39163:24:::1;39180:6:::0;39163:16:::1;:24::i;:::-;39227:21;39263:22:::0;;39259:144:::1;;39363:9;::::0;39319:21:::1;::::0;39355:36:::1;::::0;-1:-1:-1;;;;;39363:9:0::1;39319:21:::0;39355:28:::1;:36::i;:::-;39287:116;39259:144;-1:-1:-1::0;36781:8:0;:16;;-1:-1:-1;;;;36781:16:0;;;39100:310;:::o;21830:806::-;-1:-1:-1;;;;;21927:18:0;;21919:68;;;;-1:-1:-1;;;21919:68:0;;10064:2:1;21919:68:0;;;10046:21:1;10103:2;10083:18;;;10076:30;10142:34;10122:18;;;10115:62;-1:-1:-1;;;10193:18:1;;;10186:35;10238:19;;21919:68:0;9862:401:1;21919:68:0;-1:-1:-1;;;;;22006:16:0;;21998:64;;;;-1:-1:-1;;;21998:64:0;;10470:2:1;21998:64:0;;;10452:21:1;10509:2;10489:18;;;10482:30;10548:34;10528:18;;;10521:62;-1:-1:-1;;;10599:18:1;;;10592:33;10642:19;;21998:64:0;10268:399:1;21998:64:0;-1:-1:-1;;;;;22148:15:0;;22126:19;22148:15;;;:9;:15;;;;;;22182:21;;;;22174:72;;;;-1:-1:-1;;;22174:72:0;;10874:2:1;22174:72:0;;;10856:21:1;10913:2;10893:18;;;10886:30;10952:34;10932:18;;;10925:62;-1:-1:-1;;;11003:18:1;;;10996:36;11049:19;;22174:72:0;10672:402:1;22174:72:0;-1:-1:-1;;;;;22282:15:0;;;;;;;:9;:15;;;;;;22300:20;;;22282:38;;22500:13;;;;;;;;;;:23;;;;;;22552:26;;;;;;22314:6;160:25:1;;148:2;133:18;;14:177;22552:26:0;;;;;;;;22591:37;40463:317;39418:368;39508:16;;;39522:1;39508:16;;;;;;;;39484:21;;39508:16;;;;;;;;;;-1:-1:-1;39508:16:0;39484:40;;39553:4;39535;39540:1;39535:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39535:23:0;;;:7;;;;;;;;;;:23;;;;39579:6;;:13;;;-1:-1:-1;;;39579:13:0;;;;:6;;;;;:11;;:13;;;;;39535:7;;39579:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39569:4;39574:1;39569:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39569:23:0;;;:7;;;;;;;;;:23;39635:6;;39603:53;;39620:4;;39635:6;39644:11;39603:8;:53::i;:::-;39667:6;;:111;;-1:-1:-1;;;39667:111:0;;-1:-1:-1;;;;;39667:6:0;;;;:57;;:111;;39725:11;;39667:6;;39741:4;;39755;;39762:15;;39667:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39473:313;39418:368;:::o;40463:317::-;40578:6;40553:21;:31;;40545:73;;;;-1:-1:-1;;;40545:73:0;;12786:2:1;40545:73:0;;;12768:21:1;12825:2;12805:18;;;12798:30;12864:31;12844:18;;;12837:59;12913:18;;40545:73:0;12584:353:1;40545:73:0;40632:12;40650:9;-1:-1:-1;;;;;40650:14:0;40672:6;40650:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40631:52;;;40702:7;40694:78;;;;-1:-1:-1;;;40694:78:0;;13354:2:1;40694:78:0;;;13336:21:1;13393:2;13373:18;;;13366:30;13432:34;13412:18;;;13405:62;13503:28;13483:18;;;13476:56;13549:19;;40694:78:0;13152:422:1;40694:78:0;40534:246;40463:317;;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:248::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;-1:-1:-1;;1565:23:1;;;1635:2;1620:18;;;1607:32;;-1:-1:-1;1397:248:1:o;1650:273::-;1706:6;1759:2;1747:9;1738:7;1734:23;1730:32;1727:52;;;1775:1;1772;1765:12;1727:52;1814:9;1801:23;1867:5;1860:13;1853:21;1846:5;1843:32;1833:60;;1889:1;1886;1879:12;1833:60;1912:5;1650:273;-1:-1:-1;;;1650:273:1:o;1928:456::-;2005:6;2013;2021;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;2129:9;2116:23;2148:31;2173:5;2148:31;:::i;:::-;2198:5;-1:-1:-1;2255:2:1;2240:18;;2227:32;2268:33;2227:32;2268:33;:::i;:::-;1928:456;;2320:7;;-1:-1:-1;;;2374:2:1;2359:18;;;;2346:32;;1928:456::o;2578:247::-;2637:6;2690:2;2678:9;2669:7;2665:23;2661:32;2658:52;;;2706:1;2703;2696:12;2658:52;2745:9;2732:23;2764:31;2789:5;2764:31;:::i;3038:388::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3222:9;3209:23;3241:31;3266:5;3241:31;:::i;:::-;3291:5;-1:-1:-1;3348:2:1;3333:18;;3320:32;3361:33;3320:32;3361:33;:::i;:::-;3413:7;3403:17;;;3038:388;;;;;:::o;3666:380::-;3745:1;3741:12;;;;3788;;;3809:61;;3863:4;3855:6;3851:17;3841:27;;3809:61;3916:2;3908:6;3905:14;3885:18;3882:38;3879:161;;3962:10;3957:3;3953:20;3950:1;3943:31;3997:4;3994:1;3987:15;4025:4;4022:1;4015:15;3879:161;;3666:380;;;:::o;5211:127::-;5272:10;5267:3;5263:20;5260:1;5253:31;5303:4;5300:1;5293:15;5327:4;5324:1;5317:15;5343:125;5408:9;;;5429:10;;;5426:36;;;5442:18;;:::i;9334:168::-;9407:9;;;9438;;9455:15;;;9449:22;;9435:37;9425:71;;9476:18;;:::i;9507:217::-;9547:1;9573;9563:132;;9617:10;9612:3;9608:20;9605:1;9598:31;9652:4;9649:1;9642:15;9680:4;9677:1;9670:15;9563:132;-1:-1:-1;9709:9:1;;9507:217::o;9729:128::-;9796:9;;;9817:11;;;9814:37;;;9831:18;;:::i;11211:127::-;11272:10;11267:3;11263:20;11260:1;11253:31;11303:4;11300:1;11293:15;11327:4;11324:1;11317:15;11343:251;11413:6;11466:2;11454:9;11445:7;11441:23;11437:32;11434:52;;;11482:1;11479;11472:12;11434:52;11514:9;11508:16;11533:31;11558:5;11533:31;:::i;11599:980::-;11861:4;11909:3;11898:9;11894:19;11940:6;11929:9;11922:25;11966:2;12004:6;11999:2;11988:9;11984:18;11977:34;12047:3;12042:2;12031:9;12027:18;12020:31;12071:6;12106;12100:13;12137:6;12129;12122:22;12175:3;12164:9;12160:19;12153:26;;12214:2;12206:6;12202:15;12188:29;;12235:1;12245:195;12259:6;12256:1;12253:13;12245:195;;;12324:13;;-1:-1:-1;;;;;12320:39:1;12308:52;;12415:15;;;;12380:12;;;;12356:1;12274:9;12245:195;;;-1:-1:-1;;;;;;;12496:32:1;;;;12491:2;12476:18;;12469:60;-1:-1:-1;;;12560:3:1;12545:19;12538:35;12457:3;11599:980;-1:-1:-1;;;11599:980:1:o
Swarm Source
ipfs://a8fbab8c06946ff05432242f8c1f0f1ba755a3f41c86d3c2a14965d35f2ea0cb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.