Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 118 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 19853811 | 632 days ago | IN | 0 ETH | 0.00021213 | ||||
| Transfer | 19853508 | 633 days ago | IN | 0 ETH | 0.00028117 | ||||
| Black List Walle... | 17051339 | 1026 days ago | IN | 0 ETH | 0.00060322 | ||||
| Approve | 16943612 | 1041 days ago | IN | 0 ETH | 0.00115629 | ||||
| Transfer | 16833708 | 1056 days ago | IN | 0 ETH | 0.00245659 | ||||
| Approve | 16833704 | 1056 days ago | IN | 0 ETH | 0.00135802 | ||||
| Black List Walle... | 16810112 | 1060 days ago | IN | 0 ETH | 0.0008943 | ||||
| Black List Walle... | 16810105 | 1060 days ago | IN | 0 ETH | 0.00047046 | ||||
| Black List Walle... | 16810100 | 1060 days ago | IN | 0 ETH | 0.00099143 | ||||
| Black List Walle... | 16810097 | 1060 days ago | IN | 0 ETH | 0.00049011 | ||||
| Black List Walle... | 16810096 | 1060 days ago | IN | 0 ETH | 0.0004767 | ||||
| Black List Walle... | 16810094 | 1060 days ago | IN | 0 ETH | 0.00043197 | ||||
| Set Fees Status | 16810080 | 1060 days ago | IN | 0 ETH | 0.00052862 | ||||
| Approve | 16810061 | 1060 days ago | IN | 0 ETH | 0.00079722 | ||||
| Approve | 16805148 | 1060 days ago | IN | 0 ETH | 0.00211235 | ||||
| Approve | 16756439 | 1067 days ago | IN | 0 ETH | 0.00112337 | ||||
| Approve | 16737150 | 1070 days ago | IN | 0 ETH | 0.00110728 | ||||
| Approve | 16729280 | 1071 days ago | IN | 0 ETH | 0.00154552 | ||||
| Approve | 16728647 | 1071 days ago | IN | 0 ETH | 0.00377221 | ||||
| Approve | 16728647 | 1071 days ago | IN | 0 ETH | 0.00377221 | ||||
| Approve | 16728624 | 1071 days ago | IN | 0 ETH | 0.00367238 | ||||
| Approve | 16728608 | 1071 days ago | IN | 0 ETH | 0.00143739 | ||||
| Approve | 16728606 | 1071 days ago | IN | 0 ETH | 0.00242795 | ||||
| Approve | 16728590 | 1071 days ago | IN | 0 ETH | 0.0016173 | ||||
| Approve | 16728557 | 1071 days ago | IN | 0 ETH | 0.00187528 |
Latest 18 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 16810097 | 1060 days ago | 0.0217069 ETH | ||||
| Transfer | 16810097 | 1060 days ago | 0.0217069 ETH | ||||
| Transfer | 16728507 | 1071 days ago | 0.00001209 ETH | ||||
| Add Liquidity ET... | 16728507 | 1071 days ago | 0.06488034 ETH | ||||
| Transfer | 16728507 | 1071 days ago | 0.06488034 ETH | ||||
| Add Liquidity ET... | 16728477 | 1071 days ago | 0.02082278 ETH | ||||
| Transfer | 16728477 | 1071 days ago | 0.02082278 ETH | ||||
| Transfer | 16728473 | 1071 days ago | 0.00004421 ETH | ||||
| Add Liquidity ET... | 16728473 | 1071 days ago | 0.07231494 ETH | ||||
| Transfer | 16728473 | 1071 days ago | 0.07231494 ETH | ||||
| Add Liquidity ET... | 16728463 | 1071 days ago | 0.03535055 ETH | ||||
| Transfer | 16728463 | 1071 days ago | 0.03535055 ETH | ||||
| Transfer | 16728463 | 1071 days ago | 0.00014243 ETH | ||||
| Add Liquidity ET... | 16728463 | 1071 days ago | 0.08204238 ETH | ||||
| Transfer | 16728463 | 1071 days ago | 0.08204238 ETH | ||||
| Transfer | 16728463 | 1071 days ago | 0.00015083 ETH | ||||
| Add Liquidity ET... | 16728463 | 1071 days ago | 0.0836078 ETH | ||||
| Transfer | 16728463 | 1071 days ago | 0.0836078 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
FortifyX
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-02-28
*/
/*
http://fortifyX.co/
https://t.me/FortifyX
*/
// SPDX-License-Identifier: MIT
// File: contracts/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: contracts/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/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: contracts/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: contracts/Address.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: contracts/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: contracts/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.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 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 {
_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: contracts/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.6.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: contracts/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.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: contracts/old.sol
pragma solidity 0.8.17;
contract Blacklist {
struct AntiBot {
bool antiBotStatus;
mapping(address => uint256) _userFirstTry;
mapping(address => uint256) _userLastTry;
mapping(address => bool) _blacklistedUsers;
}
AntiBot antiBot;
}
abstract contract Configuration is IERC20 {
string public _name = "FortifyX";
string public _symbol = "FFX";
uint8 public _decimals = 18;
uint256 public _totalSupply = 1000000 * 10**_decimals; // 1 million total supply
address public developerAddress; // Developer Address
uint256 public maxTransactionAmount = _totalSupply / 200; // 0.50% of the total supply
uint256 public maxWalletBalance = _totalSupply / 100; // 1% of the total supply
address public uniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
uint256 public numberOfTokensToSwapToLiquidity = _totalSupply / 1000; // 0.1% of the total supply
uint8 public _liquidityFee = 4; // 4%
uint8 public _developerFee = 2; // 2%
bool public _FeeOnBuy = true;
bool public _FeeOnSell = true;
bool public _FeeOnTransfer = false;
}
contract FortifyX is Context, Configuration, Ownable, Blacklist {
using SafeMath for uint256;
using Address for address;
mapping(address => uint256) private _totalOwned;
mapping(address => mapping(address => uint256)) private _allowances;
mapping(address => bool) private _isExcludedFromFee;
bool private inSwapAndLiquify;
bool private swapAndLiquifyEnabled = true;
modifier lockTheSwap() {
inSwapAndLiquify = true;
_;
inSwapAndLiquify = false;
}
uint256 public launchingTime;
bool public tradeStarted;
IUniswapV2Router02 public _uniswapV2Router =
IUniswapV2Router02(uniswapV2Router);
address public uniswapV2Pair =
IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
address(this),
_uniswapV2Router.WETH()
);
/*
* Steps to launch:
* 0.
* 1. deploy contract.
* 2. add Liq
* 3. set _FeeOnTransfer to true (optional)
*
*/
constructor() {
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[address(this)] = true;
_isExcludedFromFee[developerAddress] = true;
_isExcludedFromFee[uniswapV2Router] = true;
developerAddress =_msgSender();
_approve(_msgSender(), address(uniswapV2Router), ~uint256(0));
_approve(address(this), address(uniswapV2Router), ~uint256(0));
antiBot.antiBotStatus = true;
_totalOwned[_msgSender()] = _totalSupply; //mint all to msg.sender
emit Transfer(address(0), _msgSender(), _totalSupply);
}
function name() public view returns (string memory) {
return _name;
}
function symbol() public view returns (string memory) {
return _symbol;
}
function decimals() public view returns (uint8) {
return _decimals;
}
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view override returns (uint256) {
return _totalOwned[account];
}
function transfer(address recipient, uint256 amount)
public
override
returns (bool)
{
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender)
public
view
override
returns (uint256)
{
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount)
public
override
returns (bool)
{
_approve(_msgSender(), spender, amount);
return true;
}
// once enabled, can never be turned off
function EnableTrading() external onlyOwner {
tradeStarted = true;
launchingTime = block.number;
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(
amount,
"ERC20: transfer amount exceeds allowance"
)
);
return true;
}
function increaseAllowance(address spender, uint256 addedValue)
public
virtual
returns (bool)
{
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender].add(addedValue)
);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue)
public
virtual
returns (bool)
{
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender].sub(
subtractedValue,
"ERC20: decreased allowance below zero"
)
);
return true;
}
function _approve(
address owner,
address spender,
uint256 amount
) private {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _transfer(
address from,
address to,
uint256 amount
) private {
require(tradeStarted, "Wait for trading to start");
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
require(
!antiBot._blacklistedUsers[to] && !antiBot._blacklistedUsers[from],
"You are not allowed"
);
if (
amount > maxTransactionAmount &&
!_isExcludedFromFee[from] &&
!_isExcludedFromFee[to]
) {
revert("Transfer is bigger than max tx amount");
}
if (
maxWalletBalance > 0 &&
!_isExcludedFromFee[from] &&
!_isExcludedFromFee[to] &&
to != uniswapV2Pair
) {
uint256 recipientBalance = balanceOf(to);
require(
recipientBalance + amount <= maxWalletBalance,
"Your balance is too high"
);
}
if (antiBot.antiBotStatus == true) {
if (
to != owner() &&
to != address(_uniswapV2Router) &&
to != uniswapV2Pair
) {
require(
antiBot._userLastTry[tx.origin] < block.number,
"You cannot do more than 1 transaction per block"
);
antiBot._userLastTry[tx.origin] = block.number;
}
}
if (
block.number <= (launchingTime + 2) &&
to != address(_uniswapV2Router) &&
to != uniswapV2Pair
) {
antiBot._blacklistedUsers[to] = true;
}
bool takeFee = _FeeOnTransfer;
if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
takeFee = false;
} else {
if (from == uniswapV2Pair) {
takeFee = _FeeOnBuy;
} else if (to == uniswapV2Pair) {
takeFee = _FeeOnSell;
}
}
_tokenTransfer(from, to, amount, takeFee);
}
function _beforeTransfer(address sender) internal {
uint256 contractTokenBalance = balanceOf(address(this));
checkLiqBal(contractTokenBalance, sender);
}
function _tokenTransfer(
address sender,
address recipient,
uint256 amount,
bool takeFee
) private {
if (!takeFee) {
_beforeTransfer(sender);
_transferStandard(sender, recipient, amount);
} else {
_beforeTransfer(sender);
_transferWithFee(sender, recipient, amount);
}
}
function _transferWithFee(
address sender,
address recipient,
uint256 tAmount
) private {
uint256 fromBalance = _totalOwned[sender];
require(
fromBalance >= tAmount,
"ERC20: transfer amount exceeds balance"
);
uint256 devFee = (tAmount * _developerFee) / 100;
uint256 liqFee = (tAmount * _liquidityFee) / 100;
uint256 tTransferAmount = tAmount - devFee - liqFee;
unchecked {
_totalOwned[sender] = fromBalance - tTransferAmount;
_totalOwned[recipient] += tTransferAmount;
_totalOwned[address(this)] += liqFee;
_totalOwned[developerAddress] += devFee;
}
emit Transfer(sender, recipient, tTransferAmount);
emit Transfer(sender, developerAddress, devFee);
emit Transfer(sender, address(this), liqFee);
}
function _transferStandard(
address sender,
address recipient,
uint256 tAmount
) private {
uint256 fromBalance = _totalOwned[sender];
require(
fromBalance >= tAmount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_totalOwned[sender] = fromBalance - tAmount;
_totalOwned[recipient] += tAmount;
}
emit Transfer(sender, recipient, tAmount);
}
function _getCurrentSupply() private view returns (uint256) {
uint256 tSupply = _totalSupply;
return tSupply;
}
function isExcludedFromFee(address _address) public view returns (bool) {
return _isExcludedFromFee[_address];
}
function excludeFromFee(address _address) public onlyOwner {
_isExcludedFromFee[_address] = true;
}
function includeInFee(address _address) public onlyOwner {
_isExcludedFromFee[_address] = false;
}
function setDeveloperAddress(address _dev) external onlyOwner {
developerAddress = _dev;
}
function setFeesStatus(
bool FeeOnBuy,
bool FeeOnsell,
bool FeeOnTransfer
) external onlyOwner {
_FeeOnBuy = FeeOnBuy;
_FeeOnSell = FeeOnsell;
_FeeOnTransfer = FeeOnTransfer;
}
function checkFeesStatus() public view onlyOwner returns (bool[] memory) {
bool[] memory result = new bool[](3);
result[0] = _FeeOnBuy;
result[1] = _FeeOnSell;
result[2] = _FeeOnTransfer;
return result;
}
function checkLiqBal(uint256 contractTokenBalance, address sender) internal {
if (contractTokenBalance >= maxTransactionAmount)
contractTokenBalance = maxTransactionAmount;
bool isOverRequiredTokenBalance = (contractTokenBalance >=
numberOfTokensToSwapToLiquidity);
if (
isOverRequiredTokenBalance &&
swapAndLiquifyEnabled &&
!inSwapAndLiquify &&
(sender != uniswapV2Pair)
) {
startSwappingForLiquidity(contractTokenBalance);
}
}
function startSwappingForLiquidity(uint256 amount) private lockTheSwap {
uint256 half = amount.div(2);
uint256 otherHalf = amount.sub(half);
uint256 initialBalance = address(this).balance;
_swapTokens(half);
uint256 newBalance = address(this).balance.sub(initialBalance);
_createLiquidity(otherHalf, newBalance);
}
function _swapTokens(uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = _uniswapV2Router.WETH();
_approve(address(this), address(_uniswapV2Router), tokenAmount);
_uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function _createLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
_approve(address(this), address(_uniswapV2Router), tokenAmount);
_uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0,
0,
owner(),
block.timestamp
);
}
function blackListWallets(address _wallet, bool _status) public onlyOwner {
antiBot._blacklistedUsers[_wallet] = _status; // true or false
}
// change the minimum amount of tokens to sell for ETH, swap add liquidity
function setMinimunAmountOfTokenToSwapToLiquidity(uint256 _minAmount)
external
onlyOwner
returns (bool)
{
numberOfTokensToSwapToLiquidity = _minAmount;
return true;
}
function setMaxTransactionAmount(uint256 _amount) external onlyOwner {
maxTransactionAmount = _amount * (10**_decimals);
}
function updateMaxWalletBalance(uint256 _newMaxBalance) external onlyOwner {
maxWalletBalance = _newMaxBalance * (10**_decimals);
}
// disable Transfer antiBotStatus ANTI BOT - cannot be reenabled
function disableAntiBot() external onlyOwner returns (bool) {
antiBot.antiBotStatus = false;
return true;
}
receive() external payable {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_FeeOnBuy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FeeOnSell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FeeOnTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developerFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"blackListWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkFeesStatus","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","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":"numberOfTokensToSwapToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"name":"setDeveloperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"FeeOnBuy","type":"bool"},{"internalType":"bool","name":"FeeOnsell","type":"bool"},{"internalType":"bool","name":"FeeOnTransfer","type":"bool"}],"name":"setFeesStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minAmount","type":"uint256"}],"name":"setMinimunAmountOfTokenToSwapToLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxBalance","type":"uint256"}],"name":"updateMaxWalletBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c0604052600860809081526708cdee4e8d2ccf2b60c31b60a05260009062000029908262000680565b5060408051808201909152600381526208c8cb60eb1b602082015260019062000053908262000680565b506002805460ff191660129081179091556200007190600a62000861565b6200008090620f424062000879565b60035560c860035462000094919062000893565b6005556064600354620000a8919062000893565b600655600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055600354620000e3906103e89062000893565b6008556009805464ffffffffff191663010102041790556011805461ff001916610100908117909155600754601380546001600160a01b039283168402610100600160a81b031990911617908190556040805163c45a015560e01b81529051939091049091169163c45a0155916004818101926020929091908290030181865afa15801562000176573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019c9190620008b6565b6001600160a01b031663c9c6539630601360019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002259190620008b6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000273573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002999190620008b6565b601480546001600160a01b0319166001600160a01b0392909216919091179055348015620002c657600080fd5b50620002d2336200044f565b600160106000620002f46009546501000000000090046001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526010909352818320805485166001908117909155600454821684528284208054861682179055600754909116835291208054909216179055620003653390565b600480546001600160a01b0319166001600160a01b0392909216919091179055620003a6620003913390565b6007546001600160a01b0316600019620004af565b600754620003c29030906001600160a01b0316600019620004af565b600a805460ff19166001179055600354600e6000620003de3390565b6001600160a01b03168152602081019190915260400160002055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003546040516200044191815260200190565b60405180910390a3620008e1565b600980546001600160a01b0383811665010000000000818102600160281b600160c81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620005175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200057a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200050e565b6001600160a01b038381166000818152600f602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060657607f821691505b6020821081036200062757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067b57600081815260208120601f850160051c81016020861015620006565750805b601f850160051c820191505b81811015620006775782815560010162000662565b5050505b505050565b81516001600160401b038111156200069c576200069c620005db565b620006b481620006ad8454620005f1565b846200062d565b602080601f831160018114620006ec5760008415620006d35750858301515b600019600386901b1c1916600185901b17855562000677565b600085815260208120601f198616915b828110156200071d57888601518255948401946001909101908401620006fc565b50858210156200073c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007a35781600019048211156200078757620007876200074c565b808516156200079557918102915b93841c939080029062000767565b509250929050565b600082620007bc575060016200085b565b81620007cb575060006200085b565b8160018114620007e45760028114620007ef576200080f565b60019150506200085b565b60ff8411156200080357620008036200074c565b50506001821b6200085b565b5060208310610133831016604e8410600b841016171562000834575081810a6200085b565b62000840838362000762565b80600019048211156200085757620008576200074c565b0290505b92915050565b60006200087260ff841683620007ab565b9392505050565b80820281158282048414176200085b576200085b6200074c565b600082620008b157634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620008c957600080fd5b81516001600160a01b03811681146200087257600080fd5b61203c80620008f16000396000f3fe60806040526004361061026b5760003560e01c8063583e056811610144578063a9059cbb116100b6578063d28d88521161007a578063d28d885214610737578063dcc345f21461074c578063dd62ed3e1461076c578063e3d5fdb6146107b2578063ea2f0b37146107d2578063f2fde38b146107f257600080fd5b8063a9059cbb146106b6578063b09f1266146106d6578063bbde77c1146106eb578063c8c8ebe414610701578063caccd7f71461071757600080fd5b80638d2efcb9116101085780638d2efcb9146105f85780638da5cb5b1461061a5780638ebe4fe51461063f57806395d89b411461065f578063a22b557c14610674578063a457c2d71461069657600080fd5b8063583e05681461054e5780636bc87c3a1461057357806370a082311461058d578063715018a6146105c35780638c52c6c8146105d857600080fd5b80632a1cb2e8116101dd5780633eaaf86b116101a15780633eaaf86b14610480578063437823ec1461049657806348de478e146104b657806349bd5a5e146104d55780634e363b65146104f55780635342acb41461051557600080fd5b80632a1cb2e8146103e9578063313ce5671461040a57806332424aa31461043057806337aa30ee1461044a578063395093511461046057600080fd5b806318160ddd1161022f57806318160ddd14610343578063188b1bf1146103585780631d97b7cd1461037a5780631e293c101461038f57806323b872dd146103af57806329d42dbd146103cf57600080fd5b806306fdde031461027757806307ce9de4146102a2578063095ea7b3146102c75780630b76dbec146102e75780631694505e1461030b57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b6040516102999190611ad2565b60405180910390f35b3480156102ae57600080fd5b506102b76108a4565b6040519015158152602001610299565b3480156102d357600080fd5b506102b76102e2366004611b35565b6108be565b3480156102f357600080fd5b506102fd60085481565b604051908152602001610299565b34801561031757600080fd5b5060075461032b906001600160a01b031681565b6040516001600160a01b039091168152602001610299565b34801561034f57600080fd5b506003546102fd565b34801561036457600080fd5b50610378610373366004611b61565b6108d5565b005b34801561038657600080fd5b506103786108fe565b34801561039b57600080fd5b506103786103aa366004611b61565b610919565b3480156103bb57600080fd5b506102b76103ca366004611b7a565b610942565b3480156103db57600080fd5b506013546102b79060ff1681565b3480156103f557600080fd5b506009546102b7906301000000900460ff1681565b34801561041657600080fd5b5060025460ff165b60405160ff9091168152602001610299565b34801561043c57600080fd5b5060025461041e9060ff1681565b34801561045657600080fd5b506102fd60125481565b34801561046c57600080fd5b506102b761047b366004611b35565b6109ab565b34801561048c57600080fd5b506102fd60035481565b3480156104a257600080fd5b506103786104b1366004611bbb565b6109e1565b3480156104c257600080fd5b5060095461041e90610100900460ff1681565b3480156104e157600080fd5b5060145461032b906001600160a01b031681565b34801561050157600080fd5b506102b7610510366004611b61565b610a0d565b34801561052157600080fd5b506102b7610530366004611bbb565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561055a57600080fd5b5060135461032b9061010090046001600160a01b031681565b34801561057f57600080fd5b5060095461041e9060ff1681565b34801561059957600080fd5b506102fd6105a8366004611bbb565b6001600160a01b03166000908152600e602052604090205490565b3480156105cf57600080fd5b50610378610a25565b3480156105e457600080fd5b506103786105f3366004611be8565b610a39565b34801561060457600080fd5b5061060d610a6c565b6040516102999190611c1d565b34801561062657600080fd5b50600954600160281b90046001600160a01b031661032b565b34801561064b57600080fd5b506009546102b79062010000900460ff1681565b34801561066b57600080fd5b5061028c610b3b565b34801561068057600080fd5b506009546102b790640100000000900460ff1681565b3480156106a257600080fd5b506102b76106b1366004611b35565b610b4a565b3480156106c257600080fd5b506102b76106d1366004611b35565b610b99565b3480156106e257600080fd5b5061028c610ba6565b3480156106f757600080fd5b506102fd60065481565b34801561070d57600080fd5b506102fd60055481565b34801561072357600080fd5b5060045461032b906001600160a01b031681565b34801561074357600080fd5b5061028c610c34565b34801561075857600080fd5b50610378610767366004611bbb565b610c41565b34801561077857600080fd5b506102fd610787366004611c63565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156107be57600080fd5b506103786107cd366004611c9c565b610c6b565b3480156107de57600080fd5b506103786107ed366004611bbb565b610cbd565b3480156107fe57600080fd5b5061037861080d366004611bbb565b610ce6565b60606000805461082190611cdf565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90611cdf565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108ae610d64565b50600a805460ff19169055600190565b60006108cb338484610dc6565b5060015b92915050565b6108dd610d64565b6002546108ee9060ff16600a611e13565b6108f89082611e22565b60065550565b610906610d64565b6013805460ff1916600117905543601255565b610921610d64565b6002546109329060ff16600a611e13565b61093c9082611e22565b60055550565b600061094f848484610eea565b6109a1843361099c85604051806060016040528060288152602001611f9a602891396001600160a01b038a166000908152600f602090815260408083203384529091529020549190611493565b610dc6565b5060019392505050565b336000818152600f602090815260408083206001600160a01b038716845290915281205490916108cb91859061099c90866114bf565b6109e9610d64565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6000610a17610d64565b50600881905560015b919050565b610a2d610d64565b610a3760006114d2565b565b610a41610d64565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6060610a76610d64565b6040805160038082526080820190925260009160208201606080368337019050509050600960029054906101000a900460ff1681600081518110610abc57610abc611e39565b602002602001019015159081151581525050600960039054906101000a900460ff1681600181518110610af157610af1611e39565b602002602001019015159081151581525050600960049054906101000a900460ff1681600281518110610b2657610b26611e39565b91151560209283029190910190910152905090565b60606001805461082190611cdf565b60006108cb338461099c85604051806060016040528060258152602001611fe260259139336000908152600f602090815260408083206001600160a01b038d1684529091529020549190611493565b60006108cb338484610eea565b60018054610bb390611cdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdf90611cdf565b8015610c2c5780601f10610c0157610100808354040283529160200191610c2c565b820191906000526020600020905b815481529060010190602001808311610c0f57829003601f168201915b505050505081565b60008054610bb390611cdf565b610c49610d64565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b610c73610d64565b600980549115156401000000000264ff000000001993151563010000000263ff0000001995151562010000029590951663ffff000019909316929092179390931791909116179055565b610cc5610d64565b6001600160a01b03166000908152601060205260409020805460ff19169055565b610cee610d64565b6001600160a01b038116610d585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b610d61816114d2565b50565b6009546001600160a01b03600160281b909104163314610a375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d4f565b6001600160a01b038316610e285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d4f565b6001600160a01b038216610e895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d4f565b6001600160a01b038381166000818152600f602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60135460ff16610f3c5760405162461bcd60e51b815260206004820152601960248201527f5761697420666f722074726164696e6720746f207374617274000000000000006044820152606401610d4f565b6001600160a01b038316610fa05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d4f565b6001600160a01b0382166110025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610d4f565b600081116110645760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610d4f565b6001600160a01b0382166000908152600d602052604090205460ff161580156110a657506001600160a01b0383166000908152600d602052604090205460ff16155b6110e85760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c99481b9bdd08185b1b1bddd959606a1b6044820152606401610d4f565b6005548111801561111257506001600160a01b03831660009081526010602052604090205460ff16155b801561113757506001600160a01b03821660009081526010602052604090205460ff16155b156111925760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657220697320626967676572207468616e206d617820747820616044820152641b5bdd5b9d60da1b6064820152608401610d4f565b60006006541180156111bd57506001600160a01b03831660009081526010602052604090205460ff16155b80156111e257506001600160a01b03821660009081526010602052604090205460ff16155b80156111fc57506014546001600160a01b03838116911614155b15611277576001600160a01b0382166000908152600e60205260409020546006546112278383611e4f565b11156112755760405162461bcd60e51b815260206004820152601860248201527f596f75722062616c616e636520697320746f6f206869676800000000000000006044820152606401610d4f565b505b600a5460ff161515600103611366576009546001600160a01b03838116600160281b90920416148015906112be57506013546001600160a01b038381166101009092041614155b80156112d857506014546001600160a01b03838116911614155b1561136657326000908152600c602052604090205443116113535760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e6e6f7420646f206d6f7265207468616e2031207472616e736160448201526e6374696f6e2070657220626c6f636b60881b6064820152608401610d4f565b326000908152600c602052604090204390555b601254611374906002611e4f565b431115801561139657506013546001600160a01b038381166101009092041614155b80156113b057506014546001600160a01b03838116911614155b156113d9576001600160a01b0382166000908152600d60205260409020805460ff191660011790555b6009546001600160a01b03841660009081526010602052604090205460ff640100000000909204821691168061142757506001600160a01b03831660009081526010602052604090205460ff165b1561143457506000611481565b6014546001600160a01b039081169085160361145c575060095462010000900460ff16611481565b6014546001600160a01b039081169084160361148157506009546301000000900460ff165b61148d84848484611532565b50505050565b600081848411156114b75760405162461bcd60e51b8152600401610d4f9190611ad2565b505050900390565b60006114cb8284611e4f565b9392505050565b600980546001600160a01b03838116600160281b81810265010000000000600160c81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806115505761154084611564565b61154b848484611582565b61148d565b61155984611564565b61148d848484611617565b306000908152600e602052604090205461157e8183611792565b5050565b6001600160a01b0383166000908152600e6020526040902054818110156115bb5760405162461bcd60e51b8152600401610d4f90611e62565b6001600160a01b038085166000818152600e60205260408082208686039055928616808252908390208054860190559151600080516020611fc2833981519152906116099086815260200190565b60405180910390a350505050565b6001600160a01b0383166000908152600e6020526040902054818110156116505760405162461bcd60e51b8152600401610d4f90611e62565b60095460009060649061166b90610100900460ff1685611e22565b6116759190611ea8565b60095490915060009060649061168e9060ff1686611e22565b6116989190611ea8565b90506000816116a78487611eca565b6116b19190611eca565b6001600160a01b038089166000818152600e6020526040808220858a0390558a8416808352818320805487019055308352818320805489019055600454909416825290819020805488019055519293509091600080516020611fc2833981519152906117209085815260200190565b60405180910390a36004546040518481526001600160a01b0391821691891690600080516020611fc28339815191529060200160405180910390a360405182815230906001600160a01b03891690600080516020611fc28339815191529060200160405180910390a350505050505050565b60055482106117a15760055491505b600854821080159081906117bc5750601154610100900460ff165b80156117cb575060115460ff16155b80156117e557506014546001600160a01b03838116911614155b156117f3576117f3836117f8565b505050565b6011805460ff191660011790556000611812826002611855565b905060006118208383611861565b90504761182c8361186d565b60006118384783611861565b905061184483826119ea565b50506011805460ff19169055505050565b60006114cb8284611ea8565b60006114cb8284611eca565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118a2576118a2611e39565b60200260200101906001600160a01b031690816001600160a01b031681525050601360019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611915573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119399190611edd565b8160018151811061194c5761194c611e39565b6001600160a01b03928316602091820292909201015260135461197791309161010090041684610dc6565b60135460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906119b4908590600090869030904290600401611efa565b600060405180830381600087803b1580156119ce57600080fd5b505af11580156119e2573d6000803e3d6000fd5b505050505050565b601354611a0790309061010090046001600160a01b031684610dc6565b6013546001600160a01b036101009091041663f305d719823085600080611a3e6009546001600160a01b03600160281b9091041690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611aa6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611acb9190611f6b565b5050505050565b600060208083528351808285015260005b81811015611aff57858101830151858201604001528201611ae3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d6157600080fd5b60008060408385031215611b4857600080fd5b8235611b5381611b20565b946020939093013593505050565b600060208284031215611b7357600080fd5b5035919050565b600080600060608486031215611b8f57600080fd5b8335611b9a81611b20565b92506020840135611baa81611b20565b929592945050506040919091013590565b600060208284031215611bcd57600080fd5b81356114cb81611b20565b80358015158114610a2057600080fd5b60008060408385031215611bfb57600080fd5b8235611c0681611b20565b9150611c1460208401611bd8565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611c57578351151583529284019291840191600101611c39565b50909695505050505050565b60008060408385031215611c7657600080fd5b8235611c8181611b20565b91506020830135611c9181611b20565b809150509250929050565b600080600060608486031215611cb157600080fd5b611cba84611bd8565b9250611cc860208501611bd8565b9150611cd660408501611bd8565b90509250925092565b600181811c90821680611cf357607f821691505b602082108103611d1357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611d6a578160001904821115611d5057611d50611d19565b80851615611d5d57918102915b93841c9390800290611d34565b509250929050565b600082611d81575060016108cf565b81611d8e575060006108cf565b8160018114611da45760028114611dae57611dca565b60019150506108cf565b60ff841115611dbf57611dbf611d19565b50506001821b6108cf565b5060208310610133831016604e8410600b8410161715611ded575081810a6108cf565b611df78383611d2f565b8060001904821115611e0b57611e0b611d19565b029392505050565b60006114cb60ff841683611d72565b80820281158282048414176108cf576108cf611d19565b634e487b7160e01b600052603260045260246000fd5b808201808211156108cf576108cf611d19565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600082611ec557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108cf576108cf611d19565b600060208284031215611eef57600080fd5b81516114cb81611b20565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f4a5784516001600160a01b031683529383019391830191600101611f25565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f8057600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cf08b563440df9e5a78c80623300a89e090b75bea3e66fb2a02c6810470994e464736f6c63430008110033
Deployed Bytecode
0x60806040526004361061026b5760003560e01c8063583e056811610144578063a9059cbb116100b6578063d28d88521161007a578063d28d885214610737578063dcc345f21461074c578063dd62ed3e1461076c578063e3d5fdb6146107b2578063ea2f0b37146107d2578063f2fde38b146107f257600080fd5b8063a9059cbb146106b6578063b09f1266146106d6578063bbde77c1146106eb578063c8c8ebe414610701578063caccd7f71461071757600080fd5b80638d2efcb9116101085780638d2efcb9146105f85780638da5cb5b1461061a5780638ebe4fe51461063f57806395d89b411461065f578063a22b557c14610674578063a457c2d71461069657600080fd5b8063583e05681461054e5780636bc87c3a1461057357806370a082311461058d578063715018a6146105c35780638c52c6c8146105d857600080fd5b80632a1cb2e8116101dd5780633eaaf86b116101a15780633eaaf86b14610480578063437823ec1461049657806348de478e146104b657806349bd5a5e146104d55780634e363b65146104f55780635342acb41461051557600080fd5b80632a1cb2e8146103e9578063313ce5671461040a57806332424aa31461043057806337aa30ee1461044a578063395093511461046057600080fd5b806318160ddd1161022f57806318160ddd14610343578063188b1bf1146103585780631d97b7cd1461037a5780631e293c101461038f57806323b872dd146103af57806329d42dbd146103cf57600080fd5b806306fdde031461027757806307ce9de4146102a2578063095ea7b3146102c75780630b76dbec146102e75780631694505e1461030b57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b6040516102999190611ad2565b60405180910390f35b3480156102ae57600080fd5b506102b76108a4565b6040519015158152602001610299565b3480156102d357600080fd5b506102b76102e2366004611b35565b6108be565b3480156102f357600080fd5b506102fd60085481565b604051908152602001610299565b34801561031757600080fd5b5060075461032b906001600160a01b031681565b6040516001600160a01b039091168152602001610299565b34801561034f57600080fd5b506003546102fd565b34801561036457600080fd5b50610378610373366004611b61565b6108d5565b005b34801561038657600080fd5b506103786108fe565b34801561039b57600080fd5b506103786103aa366004611b61565b610919565b3480156103bb57600080fd5b506102b76103ca366004611b7a565b610942565b3480156103db57600080fd5b506013546102b79060ff1681565b3480156103f557600080fd5b506009546102b7906301000000900460ff1681565b34801561041657600080fd5b5060025460ff165b60405160ff9091168152602001610299565b34801561043c57600080fd5b5060025461041e9060ff1681565b34801561045657600080fd5b506102fd60125481565b34801561046c57600080fd5b506102b761047b366004611b35565b6109ab565b34801561048c57600080fd5b506102fd60035481565b3480156104a257600080fd5b506103786104b1366004611bbb565b6109e1565b3480156104c257600080fd5b5060095461041e90610100900460ff1681565b3480156104e157600080fd5b5060145461032b906001600160a01b031681565b34801561050157600080fd5b506102b7610510366004611b61565b610a0d565b34801561052157600080fd5b506102b7610530366004611bbb565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561055a57600080fd5b5060135461032b9061010090046001600160a01b031681565b34801561057f57600080fd5b5060095461041e9060ff1681565b34801561059957600080fd5b506102fd6105a8366004611bbb565b6001600160a01b03166000908152600e602052604090205490565b3480156105cf57600080fd5b50610378610a25565b3480156105e457600080fd5b506103786105f3366004611be8565b610a39565b34801561060457600080fd5b5061060d610a6c565b6040516102999190611c1d565b34801561062657600080fd5b50600954600160281b90046001600160a01b031661032b565b34801561064b57600080fd5b506009546102b79062010000900460ff1681565b34801561066b57600080fd5b5061028c610b3b565b34801561068057600080fd5b506009546102b790640100000000900460ff1681565b3480156106a257600080fd5b506102b76106b1366004611b35565b610b4a565b3480156106c257600080fd5b506102b76106d1366004611b35565b610b99565b3480156106e257600080fd5b5061028c610ba6565b3480156106f757600080fd5b506102fd60065481565b34801561070d57600080fd5b506102fd60055481565b34801561072357600080fd5b5060045461032b906001600160a01b031681565b34801561074357600080fd5b5061028c610c34565b34801561075857600080fd5b50610378610767366004611bbb565b610c41565b34801561077857600080fd5b506102fd610787366004611c63565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b3480156107be57600080fd5b506103786107cd366004611c9c565b610c6b565b3480156107de57600080fd5b506103786107ed366004611bbb565b610cbd565b3480156107fe57600080fd5b5061037861080d366004611bbb565b610ce6565b60606000805461082190611cdf565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90611cdf565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108ae610d64565b50600a805460ff19169055600190565b60006108cb338484610dc6565b5060015b92915050565b6108dd610d64565b6002546108ee9060ff16600a611e13565b6108f89082611e22565b60065550565b610906610d64565b6013805460ff1916600117905543601255565b610921610d64565b6002546109329060ff16600a611e13565b61093c9082611e22565b60055550565b600061094f848484610eea565b6109a1843361099c85604051806060016040528060288152602001611f9a602891396001600160a01b038a166000908152600f602090815260408083203384529091529020549190611493565b610dc6565b5060019392505050565b336000818152600f602090815260408083206001600160a01b038716845290915281205490916108cb91859061099c90866114bf565b6109e9610d64565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b6000610a17610d64565b50600881905560015b919050565b610a2d610d64565b610a3760006114d2565b565b610a41610d64565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6060610a76610d64565b6040805160038082526080820190925260009160208201606080368337019050509050600960029054906101000a900460ff1681600081518110610abc57610abc611e39565b602002602001019015159081151581525050600960039054906101000a900460ff1681600181518110610af157610af1611e39565b602002602001019015159081151581525050600960049054906101000a900460ff1681600281518110610b2657610b26611e39565b91151560209283029190910190910152905090565b60606001805461082190611cdf565b60006108cb338461099c85604051806060016040528060258152602001611fe260259139336000908152600f602090815260408083206001600160a01b038d1684529091529020549190611493565b60006108cb338484610eea565b60018054610bb390611cdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdf90611cdf565b8015610c2c5780601f10610c0157610100808354040283529160200191610c2c565b820191906000526020600020905b815481529060010190602001808311610c0f57829003601f168201915b505050505081565b60008054610bb390611cdf565b610c49610d64565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b610c73610d64565b600980549115156401000000000264ff000000001993151563010000000263ff0000001995151562010000029590951663ffff000019909316929092179390931791909116179055565b610cc5610d64565b6001600160a01b03166000908152601060205260409020805460ff19169055565b610cee610d64565b6001600160a01b038116610d585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b610d61816114d2565b50565b6009546001600160a01b03600160281b909104163314610a375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d4f565b6001600160a01b038316610e285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d4f565b6001600160a01b038216610e895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d4f565b6001600160a01b038381166000818152600f602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60135460ff16610f3c5760405162461bcd60e51b815260206004820152601960248201527f5761697420666f722074726164696e6720746f207374617274000000000000006044820152606401610d4f565b6001600160a01b038316610fa05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d4f565b6001600160a01b0382166110025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610d4f565b600081116110645760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610d4f565b6001600160a01b0382166000908152600d602052604090205460ff161580156110a657506001600160a01b0383166000908152600d602052604090205460ff16155b6110e85760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c99481b9bdd08185b1b1bddd959606a1b6044820152606401610d4f565b6005548111801561111257506001600160a01b03831660009081526010602052604090205460ff16155b801561113757506001600160a01b03821660009081526010602052604090205460ff16155b156111925760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657220697320626967676572207468616e206d617820747820616044820152641b5bdd5b9d60da1b6064820152608401610d4f565b60006006541180156111bd57506001600160a01b03831660009081526010602052604090205460ff16155b80156111e257506001600160a01b03821660009081526010602052604090205460ff16155b80156111fc57506014546001600160a01b03838116911614155b15611277576001600160a01b0382166000908152600e60205260409020546006546112278383611e4f565b11156112755760405162461bcd60e51b815260206004820152601860248201527f596f75722062616c616e636520697320746f6f206869676800000000000000006044820152606401610d4f565b505b600a5460ff161515600103611366576009546001600160a01b03838116600160281b90920416148015906112be57506013546001600160a01b038381166101009092041614155b80156112d857506014546001600160a01b03838116911614155b1561136657326000908152600c602052604090205443116113535760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e6e6f7420646f206d6f7265207468616e2031207472616e736160448201526e6374696f6e2070657220626c6f636b60881b6064820152608401610d4f565b326000908152600c602052604090204390555b601254611374906002611e4f565b431115801561139657506013546001600160a01b038381166101009092041614155b80156113b057506014546001600160a01b03838116911614155b156113d9576001600160a01b0382166000908152600d60205260409020805460ff191660011790555b6009546001600160a01b03841660009081526010602052604090205460ff640100000000909204821691168061142757506001600160a01b03831660009081526010602052604090205460ff165b1561143457506000611481565b6014546001600160a01b039081169085160361145c575060095462010000900460ff16611481565b6014546001600160a01b039081169084160361148157506009546301000000900460ff165b61148d84848484611532565b50505050565b600081848411156114b75760405162461bcd60e51b8152600401610d4f9190611ad2565b505050900390565b60006114cb8284611e4f565b9392505050565b600980546001600160a01b03838116600160281b81810265010000000000600160c81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806115505761154084611564565b61154b848484611582565b61148d565b61155984611564565b61148d848484611617565b306000908152600e602052604090205461157e8183611792565b5050565b6001600160a01b0383166000908152600e6020526040902054818110156115bb5760405162461bcd60e51b8152600401610d4f90611e62565b6001600160a01b038085166000818152600e60205260408082208686039055928616808252908390208054860190559151600080516020611fc2833981519152906116099086815260200190565b60405180910390a350505050565b6001600160a01b0383166000908152600e6020526040902054818110156116505760405162461bcd60e51b8152600401610d4f90611e62565b60095460009060649061166b90610100900460ff1685611e22565b6116759190611ea8565b60095490915060009060649061168e9060ff1686611e22565b6116989190611ea8565b90506000816116a78487611eca565b6116b19190611eca565b6001600160a01b038089166000818152600e6020526040808220858a0390558a8416808352818320805487019055308352818320805489019055600454909416825290819020805488019055519293509091600080516020611fc2833981519152906117209085815260200190565b60405180910390a36004546040518481526001600160a01b0391821691891690600080516020611fc28339815191529060200160405180910390a360405182815230906001600160a01b03891690600080516020611fc28339815191529060200160405180910390a350505050505050565b60055482106117a15760055491505b600854821080159081906117bc5750601154610100900460ff165b80156117cb575060115460ff16155b80156117e557506014546001600160a01b03838116911614155b156117f3576117f3836117f8565b505050565b6011805460ff191660011790556000611812826002611855565b905060006118208383611861565b90504761182c8361186d565b60006118384783611861565b905061184483826119ea565b50506011805460ff19169055505050565b60006114cb8284611ea8565b60006114cb8284611eca565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118a2576118a2611e39565b60200260200101906001600160a01b031690816001600160a01b031681525050601360019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611915573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119399190611edd565b8160018151811061194c5761194c611e39565b6001600160a01b03928316602091820292909201015260135461197791309161010090041684610dc6565b60135460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906119b4908590600090869030904290600401611efa565b600060405180830381600087803b1580156119ce57600080fd5b505af11580156119e2573d6000803e3d6000fd5b505050505050565b601354611a0790309061010090046001600160a01b031684610dc6565b6013546001600160a01b036101009091041663f305d719823085600080611a3e6009546001600160a01b03600160281b9091041690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611aa6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611acb9190611f6b565b5050505050565b600060208083528351808285015260005b81811015611aff57858101830151858201604001528201611ae3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d6157600080fd5b60008060408385031215611b4857600080fd5b8235611b5381611b20565b946020939093013593505050565b600060208284031215611b7357600080fd5b5035919050565b600080600060608486031215611b8f57600080fd5b8335611b9a81611b20565b92506020840135611baa81611b20565b929592945050506040919091013590565b600060208284031215611bcd57600080fd5b81356114cb81611b20565b80358015158114610a2057600080fd5b60008060408385031215611bfb57600080fd5b8235611c0681611b20565b9150611c1460208401611bd8565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611c57578351151583529284019291840191600101611c39565b50909695505050505050565b60008060408385031215611c7657600080fd5b8235611c8181611b20565b91506020830135611c9181611b20565b809150509250929050565b600080600060608486031215611cb157600080fd5b611cba84611bd8565b9250611cc860208501611bd8565b9150611cd660408501611bd8565b90509250925092565b600181811c90821680611cf357607f821691505b602082108103611d1357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611d6a578160001904821115611d5057611d50611d19565b80851615611d5d57918102915b93841c9390800290611d34565b509250929050565b600082611d81575060016108cf565b81611d8e575060006108cf565b8160018114611da45760028114611dae57611dca565b60019150506108cf565b60ff841115611dbf57611dbf611d19565b50506001821b6108cf565b5060208310610133831016604e8410600b8410161715611ded575081810a6108cf565b611df78383611d2f565b8060001904821115611e0b57611e0b611d19565b029392505050565b60006114cb60ff841683611d72565b80820281158282048414176108cf576108cf611d19565b634e487b7160e01b600052603260045260246000fd5b808201808211156108cf576108cf611d19565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600082611ec557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108cf576108cf611d19565b600060208284031215611eef57600080fd5b81516114cb81611b20565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f4a5784516001600160a01b031683529383019391830191600101611f25565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f8057600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cf08b563440df9e5a78c80623300a89e090b75bea3e66fb2a02c6810470994e464736f6c63430008110033
Deployed Bytecode Sourcemap
32407:12753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34048:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44990:130;;;;;;;;;;;;;:::i;:::-;;;732:14:1;;725:22;707:41;;695:2;680:18;44990:130:0;567:187:1;34961:193:0;;;;;;;;;;-1:-1:-1;34961:193:0;;;;;:::i;:::-;;:::i;32104:68::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;32104:68:0;1215:177:1;32022:75:0;;;;;;;;;;-1:-1:-1;32022:75:0;;;;-1:-1:-1;;;;;32022:75:0;;;;;;-1:-1:-1;;;;;1561:32:1;;;1543:51;;1531:2;1516:18;32022:75:0;1397:203:1;34325:100:0;;;;;;;;;;-1:-1:-1;34405:12:0;;34325:100;;44767:145;;;;;;;;;;-1:-1:-1;44767:145:0;;;;;:::i;:::-;;:::i;:::-;;35208:121;;;;;;;;;;;;;:::i;44623:136::-;;;;;;;;;;-1:-1:-1;44623:136:0;;;;;:::i;:::-;;:::i;35337:446::-;;;;;;;;;;-1:-1:-1;35337:446:0;;;;;:::i;:::-;;:::i;32976:24::-;;;;;;;;;;-1:-1:-1;32976:24:0;;;;;;;;32329:29;;;;;;;;;;-1:-1:-1;32329:29:0;;;;;;;;;;;34234:83;;;;;;;;;;-1:-1:-1;34300:9:0;;;;34234:83;;;2423:4:1;2411:17;;;2393:36;;2381:2;2366:18;34234:83:0;2251:184:1;31666:27:0;;;;;;;;;;-1:-1:-1;31666:27:0;;;;;;;;32941:28;;;;;;;;;;;;;;;;35791:300;;;;;;;;;;-1:-1:-1;35791:300:0;;;;;:::i;:::-;;:::i;31700:53::-;;;;;;;;;;;;;;;;41469:113;;;;;;;;;;-1:-1:-1;41469:113:0;;;;;:::i;:::-;;:::i;32250:30::-;;;;;;;;;;-1:-1:-1;32250:30:0;;;;;;;;;;;33105:173;;;;;;;;;;-1:-1:-1;33105:173:0;;;;-1:-1:-1;;;;;33105:173:0;;;44394:221;;;;;;;;;;-1:-1:-1;44394:221:0;;;;;:::i;:::-;;:::i;41335:126::-;;;;;;;;;;-1:-1:-1;41335:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41425:28:0;41401:4;41425:28;;;:18;:28;;;;;;;;;41335:126;33009:89;;;;;;;;;;-1:-1:-1;33009:89:0;;;;;;;-1:-1:-1;;;;;33009:89:0;;;32207:30;;;;;;;;;;-1:-1:-1;32207:30:0;;;;;;;;34433:121;;;;;;;;;;-1:-1:-1;34433:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;34526:20:0;34499:7;34526:20;;;:11;:20;;;;;;;34433:121;20512:103;;;;;;;;;;;;;:::i;44152:154::-;;;;;;;;;;-1:-1:-1;44152:154:0;;;;;:::i;:::-;;:::i;42070:254::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19864:87::-;;;;;;;;;;-1:-1:-1;19937:6:0;;-1:-1:-1;;;19937:6:0;;-1:-1:-1;;;;;19937:6:0;19864:87;;32294:28;;;;;;;;;;-1:-1:-1;32294:28:0;;;;;;;;;;;34139:87;;;;;;;;;;;;;:::i;32365:34::-;;;;;;;;;;-1:-1:-1;32365:34:0;;;;;;;;;;;36099:400;;;;;;;;;;-1:-1:-1;36099:400:0;;;;;:::i;:::-;;:::i;34562:199::-;;;;;;;;;;-1:-1:-1;34562:199:0;;;;;:::i;:::-;;:::i;31630:29::-;;;;;;;;;;;;;:::i;31937:52::-;;;;;;;;;;;;;;;;31845:56;;;;;;;;;;;;;;;;31786:31;;;;;;;;;;-1:-1:-1;31786:31:0;;;;-1:-1:-1;;;;;31786:31:0;;;31591:32;;;;;;;;;;;;;:::i;41710:104::-;;;;;;;;;;-1:-1:-1;41710:104:0;;;;;:::i;:::-;;:::i;34769:184::-;;;;;;;;;;-1:-1:-1;34769:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;34918:18:0;;;34886:7;34918:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34769:184;41822:240;;;;;;;;;;-1:-1:-1;41822:240:0;;;;;:::i;:::-;;:::i;41590:112::-;;;;;;;;;;-1:-1:-1;41590:112:0;;;;;:::i;:::-;;:::i;20770:201::-;;;;;;;;;;-1:-1:-1;20770:201:0;;;;;:::i;:::-;;:::i;34048:83::-;34085:13;34118:5;34111:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34048:83;:::o;44990:130::-;45044:4;19750:13;:11;:13::i;:::-;-1:-1:-1;45061:7:0::1;:29:::0;;-1:-1:-1;;45061:29:0::1;::::0;;;44990:130;:::o;34961:193::-;35063:4;35085:39;18514:10;35108:7;35117:6;35085:8;:39::i;:::-;-1:-1:-1;35142:4:0;34961:193;;;;;:::o;44767:145::-;19750:13;:11;:13::i;:::-;44894:9:::1;::::0;44890:13:::1;::::0;44894:9:::1;;44890:2;:13;:::i;:::-;44872:32;::::0;:14;:32:::1;:::i;:::-;44853:16;:51:::0;-1:-1:-1;44767:145:0:o;35208:121::-;19750:13;:11;:13::i;:::-;35263:12:::1;:19:::0;;-1:-1:-1;;35263:19:0::1;35278:4;35263:19;::::0;;35309:12:::1;35293:13;:28:::0;35208:121::o;44623:136::-;19750:13;:11;:13::i;:::-;44741:9:::1;::::0;44737:13:::1;::::0;44741:9:::1;;44737:2;:13;:::i;:::-;44726:25;::::0;:7;:25:::1;:::i;:::-;44703:20;:48:::0;-1:-1:-1;44623:136:0:o;35337:446::-;35469:4;35486:36;35496:6;35504:9;35515:6;35486:9;:36::i;:::-;35533:220;35556:6;18514:10;35604:138;35660:6;35604:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35604:19:0;;;;;;:11;:19;;;;;;;;18514:10;35604:33;;;;;;;;;;:37;:138::i;:::-;35533:8;:220::i;:::-;-1:-1:-1;35771:4:0;35337:446;;;;;:::o;35791:300::-;18514:10;35906:4;36000:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;36000:34:0;;;;;;;;;;35906:4;;35928:133;;35978:7;;36000:50;;36039:10;36000:38;:50::i;41469:113::-;19750:13;:11;:13::i;:::-;-1:-1:-1;;;;;41539:28:0::1;;::::0;;;:18:::1;:28;::::0;;;;:35;;-1:-1:-1;;41539:35:0::1;41570:4;41539:35;::::0;;41469:113::o;44394:221::-;44519:4;19750:13;:11;:13::i;:::-;-1:-1:-1;44541:31:0::1;:44:::0;;;44603:4:::1;19774:1;44394:221:::0;;;:::o;20512:103::-;19750:13;:11;:13::i;:::-;20577:30:::1;20604:1;20577:18;:30::i;:::-;20512:103::o:0;44152:154::-;19750:13;:11;:13::i;:::-;-1:-1:-1;;;;;44237:34:0;;;::::1;;::::0;;;:25;:34:::1;::::0;;;;:44;;-1:-1:-1;;44237:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44152:154::o;42070:254::-;42128:13;19750;:11;:13::i;:::-;42177::::1;::::0;;42188:1:::1;42177:13:::0;;;;;::::1;::::0;;;42154:20:::1;::::0;42177:13:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;42177:13:0::1;42154:36;;42213:9;;;;;;;;;;;42201:6;42208:1;42201:9;;;;;;;;:::i;:::-;;;;;;:21;;;;;;;;;::::0;::::1;42245:10;;;;;;;;;;;42233:6;42240:1;42233:9;;;;;;;;:::i;:::-;;;;;;:22;;;;;;;;;::::0;::::1;42278:14;;;;;;;;;;;42266:6;42273:1;42266:9;;;;;;;;:::i;:::-;:26:::0;::::1;;:9;::::0;;::::1;::::0;;;;;;;:26;42310:6;-1:-1:-1;42070:254:0;:::o;34139:87::-;34178:13;34211:7;34204:14;;;;;:::i;36099:400::-;36219:4;36241:228;18514:10;36291:7;36313:145;36370:15;36313:145;;;;;;;;;;;;;;;;;18514:10;36313:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;36313:34:0;;;;;;;;;;;;:38;:145::i;34562:199::-;34667:4;34689:42;18514:10;34713:9;34724:6;34689:9;:42::i;31630:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31591:32::-;;;;;;;:::i;41710:104::-;19750:13;:11;:13::i;:::-;41783:16:::1;:23:::0;;-1:-1:-1;;;;;;41783:23:0::1;-1:-1:-1::0;;;;;41783:23:0;;;::::1;::::0;;;::::1;::::0;;41710:104::o;41822:240::-;19750:13;:11;:13::i;:::-;41960:9:::1;:20:::0;;42024:30;::::1;;::::0;::::1;-1:-1:-1::0;;41991:22:0;::::1;;::::0;::::1;-1:-1:-1::0;;41960:20:0;::::1;;::::0;::::1;41991:22:::0;;;;-1:-1:-1;;41991:22:0;;;;;;;;;;::::1;42024:30:::0;;;::::1;;::::0;;41822:240::o;41590:112::-;19750:13;:11;:13::i;:::-;-1:-1:-1;;;;;41658:28:0::1;41689:5;41658:28:::0;;;:18:::1;:28;::::0;;;;:36;;-1:-1:-1;;41658:36:0::1;::::0;;41590:112::o;20770:201::-;19750:13;:11;:13::i;:::-;-1:-1:-1;;;;;20859:22:0;::::1;20851:73;;;::::0;-1:-1:-1;;;20851:73:0;;7311:2:1;20851:73:0::1;::::0;::::1;7293:21:1::0;7350:2;7330:18;;;7323:30;7389:34;7369:18;;;7362:62;-1:-1:-1;;;7440:18:1;;;7433:36;7486:19;;20851:73:0::1;;;;;;;;;20935:28;20954:8;20935:18;:28::i;:::-;20770:201:::0;:::o;20029:132::-;19937:6;;-1:-1:-1;;;;;;;;19937:6:0;;;;18514:10;20093:23;20085:68;;;;-1:-1:-1;;;20085:68:0;;7718:2:1;20085:68:0;;;7700:21:1;;;7737:18;;;7730:30;7796:34;7776:18;;;7769:62;7848:18;;20085:68:0;7516:356:1;36507:371:0;-1:-1:-1;;;;;36634:19:0;;36626:68;;;;-1:-1:-1;;;36626:68:0;;8079:2:1;36626:68:0;;;8061:21:1;8118:2;8098:18;;;8091:30;8157:34;8137:18;;;8130:62;-1:-1:-1;;;8208:18:1;;;8201:34;8252:19;;36626:68:0;7877:400:1;36626:68:0;-1:-1:-1;;;;;36713:21:0;;36705:68;;;;-1:-1:-1;;;36705:68:0;;8484:2:1;36705:68:0;;;8466:21:1;8523:2;8503:18;;;8496:30;8562:34;8542:18;;;8535:62;-1:-1:-1;;;8613:18:1;;;8606:32;8655:19;;36705:68:0;8282:398:1;36705:68:0;-1:-1:-1;;;;;36786:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36838:32;;1361:25:1;;;36838:32:0;;1334:18:1;36838:32:0;;;;;;;36507:371;;;:::o;36886:2275::-;37008:12;;;;37000:50;;;;-1:-1:-1;;;37000:50:0;;8887:2:1;37000:50:0;;;8869:21:1;8926:2;8906:18;;;8899:30;8965:27;8945:18;;;8938:55;9010:18;;37000:50:0;8685:349:1;37000:50:0;-1:-1:-1;;;;;37069:18:0;;37061:68;;;;-1:-1:-1;;;37061:68:0;;9241:2:1;37061:68:0;;;9223:21:1;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;-1:-1:-1;;;9370:18:1;;;9363:35;9415:19;;37061:68:0;9039:401:1;37061:68:0;-1:-1:-1;;;;;37148:16:0;;37140:64;;;;-1:-1:-1;;;37140:64:0;;9647:2:1;37140:64:0;;;9629:21:1;9686:2;9666:18;;;9659:30;9725:34;9705:18;;;9698:62;-1:-1:-1;;;9776:18:1;;;9769:33;9819:19;;37140:64:0;9445:399:1;37140:64:0;37232:1;37223:6;:10;37215:64;;;;-1:-1:-1;;;37215:64:0;;10051:2:1;37215:64:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:39;10229:19;;37215:64:0;9849:405:1;37215:64:0;-1:-1:-1;;;;;37313:29:0;;;;;;:25;:29;;;;;;;;37312:30;:66;;;;-1:-1:-1;;;;;;37347:31:0;;;;;;:25;:31;;;;;;;;37346:32;37312:66;37290:135;;;;-1:-1:-1;;;37290:135:0;;10461:2:1;37290:135:0;;;10443:21:1;10500:2;10480:18;;;10473:30;-1:-1:-1;;;10519:18:1;;;10512:49;10578:18;;37290:135:0;10259:343:1;37290:135:0;37467:20;;37458:6;:29;:71;;;;-1:-1:-1;;;;;;37505:24:0;;;;;;:18;:24;;;;;;;;37504:25;37458:71;:111;;;;-1:-1:-1;;;;;;37547:22:0;;;;;;:18;:22;;;;;;;;37546:23;37458:111;37440:215;;;37596:47;;-1:-1:-1;;;37596:47:0;;10809:2:1;37596:47:0;;;10791:21:1;10848:2;10828:18;;;10821:30;10887:34;10867:18;;;10860:62;-1:-1:-1;;;10938:18:1;;;10931:35;10983:19;;37596:47:0;10607:401:1;37440:215:0;37702:1;37683:16;;:20;:62;;;;-1:-1:-1;;;;;;37721:24:0;;;;;;:18;:24;;;;;;;;37720:25;37683:62;:102;;;;-1:-1:-1;;;;;;37763:22:0;;;;;;:18;:22;;;;;;;;37762:23;37683:102;:138;;;;-1:-1:-1;37808:13:0;;-1:-1:-1;;;;;37802:19:0;;;37808:13;;37802:19;;37683:138;37665:381;;;-1:-1:-1;;;;;34526:20:0;;37848:24;34526:20;;;:11;:20;;;;;;37958:16;;37929:25;37948:6;34526:20;37929:25;:::i;:::-;:45;;37903:131;;;;-1:-1:-1;;;37903:131:0;;11345:2:1;37903:131:0;;;11327:21:1;11384:2;11364:18;;;11357:30;11423:26;11403:18;;;11396:54;11467:18;;37903:131:0;11143:348:1;37903:131:0;37833:213;37665:381;38060:7;:21;;;:29;;:21;:29;38056:471;;19937:6;;-1:-1:-1;;;;;38128:13:0;;;-1:-1:-1;;;19937:6:0;;;;38128:13;;;;:65;;-1:-1:-1;38176:16:0;;-1:-1:-1;;;;;38162:31:0;;;38176:16;;;;;38162:31;;38128:65;:105;;;;-1:-1:-1;38220:13:0;;-1:-1:-1;;;;;38214:19:0;;;38220:13;;38214:19;;38128:105;38106:410;;;38319:9;38298:31;;;;:20;:31;;;;;;38332:12;-1:-1:-1;38268:167:0;;;;-1:-1:-1;;;38268:167:0;;11698:2:1;38268:167:0;;;11680:21:1;11737:2;11717:18;;;11710:30;11776:34;11756:18;;;11749:62;-1:-1:-1;;;11827:18:1;;;11820:45;11882:19;;38268:167:0;11496:411:1;38268:167:0;38475:9;38454:31;;;;:20;:31;;;;;38488:12;38454:46;;38106:410;38572:13;;:17;;38588:1;38572:17;:::i;:::-;38555:12;:35;;:83;;;;-1:-1:-1;38621:16:0;;-1:-1:-1;;;;;38607:31:0;;;38621:16;;;;;38607:31;;38555:83;:119;;;;-1:-1:-1;38661:13:0;;-1:-1:-1;;;;;38655:19:0;;;38661:13;;38655:19;;38555:119;38537:212;;;-1:-1:-1;;;;;38701:29:0;;;;;;:25;:29;;;;;:36;;-1:-1:-1;;38701:36:0;38733:4;38701:36;;;38537:212;38776:14;;-1:-1:-1;;;;;38807:24:0;;38761:12;38807:24;;;:18;:24;;;;;;38776:14;;;;;;;;38807:24;;:50;;-1:-1:-1;;;;;;38835:22:0;;;;;;:18;:22;;;;;;;;38807:50;38803:297;;;-1:-1:-1;38884:5:0;38803:297;;;38934:13;;-1:-1:-1;;;;;38934:13:0;;;38926:21;;;;38922:167;;-1:-1:-1;38978:9:0;;;;;;;38922:167;;;39019:13;;-1:-1:-1;;;;;39019:13:0;;;39013:19;;;;39009:80;;-1:-1:-1;39063:10:0;;;;;;;39009:80;39112:41;39127:4;39133:2;39137:6;39145:7;39112:14;:41::i;:::-;36989:2172;36886:2275;;;:::o;26461:240::-;26581:7;26642:12;26634:6;;;;26626:29;;;;-1:-1:-1;;;26626:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;26677:5:0;;;26461:240::o;24182:98::-;24240:7;24267:5;24271:1;24267;:5;:::i;:::-;24260:12;24182:98;-1:-1:-1;;;24182:98:0:o;21131:191::-;21224:6;;;-1:-1:-1;;;;;21241:17:0;;;-1:-1:-1;;;21241:17:0;;;-1:-1:-1;;;;;;21241:17:0;;;;;;21274:40;;21224:6;;;;;;;;21274:40;;21205:16;;21274:40;21194:128;21131:191;:::o;39353:399::-;39509:7;39504:241;;39533:23;39549:6;39533:15;:23::i;:::-;39573:44;39591:6;39599:9;39610:6;39573:17;:44::i;:::-;39504:241;;;39650:23;39666:6;39650:15;:23::i;:::-;39690:43;39707:6;39715:9;39726:6;39690:16;:43::i;39169:176::-;39279:4;39230:28;34526:20;;;:11;:20;;;;;;39296:41;34526:20;39330:6;39296:11;:41::i;:::-;39219:126;39169:176;:::o;40689:494::-;-1:-1:-1;;;;;40843:19:0;;40821;40843;;;:11;:19;;;;;;40895:22;;;;40873:110;;;;-1:-1:-1;;;40873:110:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41019:19:0;;;;;;;:11;:19;;;;;;41041:21;;;41019:43;;41077:22;;;;;;;;;;:33;;;;;;41139:36;;-1:-1:-1;;;;;;;;;;;41139:36:0;;;41055:7;1361:25:1;;1349:2;1334:18;;1215:177;41139:36:0;;;;;;;;40810:373;40689:494;;;:::o;39760:921::-;-1:-1:-1;;;;;39913:19:0;;39891;39913;;;:11;:19;;;;;;39965:22;;;;39943:110;;;;-1:-1:-1;;;39943:110:0;;;;;;;:::i;:::-;40094:13;;40066:14;;40111:3;;40084:23;;40094:13;;;;;40084:7;:23;:::i;:::-;40083:31;;;;:::i;:::-;40153:13;;40066:48;;-1:-1:-1;40125:14:0;;40170:3;;40143:23;;40153:13;;40143:7;:23;:::i;:::-;40142:31;;;;:::i;:::-;40125:48;-1:-1:-1;40186:23:0;40125:48;40212:16;40222:6;40212:7;:16;:::i;:::-;:25;;;;:::i;:::-;-1:-1:-1;;;;;40275:19:0;;;;;;;:11;:19;;;;;;40297:29;;;40275:51;;40341:22;;;;;;;;;:41;;;;;;40417:4;40397:26;;;;;:36;;;;;;40460:16;;;;;40448:29;;;;;;:39;;;;;;40516:44;40186:51;;-1:-1:-1;40341:22:0;;-1:-1:-1;;;;;;;;;;;40516:44:0;;;40186:51;1361:25:1;;1349:2;1334:18;;1215:177;40516:44:0;;;;;;;;40593:16;;40576:42;;1361:25:1;;;-1:-1:-1;;;;;40593:16:0;;;;40576:42;;;-1:-1:-1;;;;;;;;;;;40576:42:0;1349:2:1;1334:18;40576:42:0;;;;;;;40634:39;;1361:25:1;;;40659:4:0;;-1:-1:-1;;;;;40634:39:0;;;-1:-1:-1;;;;;;;;;;;40634:39:0;1349:2:1;1334:18;40634:39:0;;;;;;;39880:801;;;;39760:921;;;:::o;42334:573::-;42449:20;;42425;:44;42421:106;;42507:20;;42484:43;;42421:106;42612:31;;42575:68;;;;;;;42673:64;;-1:-1:-1;42716:21:0;;;;;;;42673:64;:98;;;;-1:-1:-1;42755:16:0;;;;42754:17;42673:98;:140;;;;-1:-1:-1;42799:13:0;;-1:-1:-1;;;;;42789:23:0;;;42799:13;;42789:23;;42673:140;42655:245;;;42841:47;42867:20;42841:25;:47::i;:::-;42410:497;42334:573;;:::o;42915:374::-;32855:16;:23;;-1:-1:-1;;32855:23:0;32874:4;32855:23;;;:16;43012:13:::1;:6:::0;43023:1:::1;43012:10;:13::i;:::-;42997:28:::0;-1:-1:-1;43036:17:0::1;43056:16;:6:::0;42997:28;43056:10:::1;:16::i;:::-;43036:36:::0;-1:-1:-1;43108:21:0::1;43140:17;43152:4:::0;43140:11:::1;:17::i;:::-;43169:18;43190:41;:21;43216:14:::0;43190:25:::1;:41::i;:::-;43169:62;;43242:39;43259:9;43270:10;43242:16;:39::i;:::-;-1:-1:-1::0;;32901:16:0;:24;;-1:-1:-1;;32901:24:0;;;-1:-1:-1;;;42915:374:0:o;25319:98::-;25377:7;25404:5;25408:1;25404;:5;:::i;24563:98::-;24621:7;24648:5;24652:1;24648;:5;:::i;43297:471::-;43384:16;;;43398:1;43384:16;;;;;;;;43360:21;;43384:16;;;;;;;;;;-1:-1:-1;43384:16:0;43360:40;;43429:4;43411;43416:1;43411:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43411:23:0;;;-1:-1:-1;;;;;43411:23:0;;;;;43455:16;;;;;;;;;-1:-1:-1;;;;;43455:16:0;-1:-1:-1;;;;;43455:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43445:4;43450:1;43445:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43445:33:0;;;:7;;;;;;;;;:33;43521:16;;43489:63;;43506:4;;43521:16;;;;43540:11;43489:8;:63::i;:::-;43563:16;;:197;;-1:-1:-1;;;43563:197:0;;:16;;;;-1:-1:-1;;;;;43563:16:0;;:67;;:197;;43645:11;;43671:1;;43687:4;;43714;;43734:15;;43563:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43347:421;43297:471;:::o;43776:368::-;43893:16;;43861:63;;43878:4;;43893:16;;;-1:-1:-1;;;;;43893:16:0;43912:11;43861:8;:63::i;:::-;43937:16;;-1:-1:-1;;;;;43937:16:0;;;;;:32;43977:9;44010:4;44030:11;44056:1;;44088:7;19937:6;;-1:-1:-1;;;;;;;;19937:6:0;;;;;19864:87;44088:7;43937:199;;;;;;-1:-1:-1;;;;;;43937:199:0;;;-1:-1:-1;;;;;14274:15:1;;;43937:199:0;;;14256:34:1;14306:18;;;14299:34;;;;14349:18;;;14342:34;;;;14392:18;;;14385:34;14456:15;;;14435:19;;;14428:44;44110:15:0;14488:19:1;;;14481:35;14190:19;;43937:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43776:368;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;895:315;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1605:180::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;-1:-1:-1;1756:23:1;;1605:180;-1:-1:-1;1605:180:1:o;1790:456::-;1867:6;1875;1883;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;1991:9;1978:23;2010:31;2035:5;2010:31;:::i;:::-;2060:5;-1:-1:-1;2117:2:1;2102:18;;2089:32;2130:33;2089:32;2130:33;:::i;:::-;1790:456;;2182:7;;-1:-1:-1;;;2236:2:1;2221:18;;;;2208:32;;1790:456::o;2440:247::-;2499:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:52;;;2568:1;2565;2558:12;2520:52;2607:9;2594:23;2626:31;2651:5;2626:31;:::i;2926:160::-;2991:20;;3047:13;;3040:21;3030:32;;3020:60;;3076:1;3073;3066:12;3091:315;3156:6;3164;3217:2;3205:9;3196:7;3192:23;3188:32;3185:52;;;3233:1;3230;3223:12;3185:52;3272:9;3259:23;3291:31;3316:5;3291:31;:::i;:::-;3341:5;-1:-1:-1;3365:35:1;3396:2;3381:18;;3365:35;:::i;:::-;3355:45;;3091:315;;;;;:::o;3411:642::-;3576:2;3628:21;;;3698:13;;3601:18;;;3720:22;;;3547:4;;3576:2;3799:15;;;;3773:2;3758:18;;;3547:4;3842:185;3856:6;3853:1;3850:13;3842:185;;;3931:13;;3924:21;3917:29;3905:42;;4002:15;;;;3967:12;;;;3878:1;3871:9;3842:185;;;-1:-1:-1;4044:3:1;;3411:642;-1:-1:-1;;;;;;3411:642:1:o;4058:388::-;4126:6;4134;4187:2;4175:9;4166:7;4162:23;4158:32;4155:52;;;4203:1;4200;4193:12;4155:52;4242:9;4229:23;4261:31;4286:5;4261:31;:::i;:::-;4311:5;-1:-1:-1;4368:2:1;4353:18;;4340:32;4381:33;4340:32;4381:33;:::i;:::-;4433:7;4423:17;;;4058:388;;;;;:::o;4451:316::-;4519:6;4527;4535;4588:2;4576:9;4567:7;4563:23;4559:32;4556:52;;;4604:1;4601;4594:12;4556:52;4627:26;4643:9;4627:26;:::i;:::-;4617:36;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4726:35;4757:2;4746:9;4742:18;4726:35;:::i;:::-;4716:45;;4451:316;;;;;:::o;4772:380::-;4851:1;4847:12;;;;4894;;;4915:61;;4969:4;4961:6;4957:17;4947:27;;4915:61;5022:2;5014:6;5011:14;4991:18;4988:38;4985:161;;5068:10;5063:3;5059:20;5056:1;5049:31;5103:4;5100:1;5093:15;5131:4;5128:1;5121:15;4985:161;;4772:380;;;:::o;5157:127::-;5218:10;5213:3;5209:20;5206:1;5199:31;5249:4;5246:1;5239:15;5273:4;5270:1;5263:15;5289:422;5378:1;5421:5;5378:1;5435:270;5456:7;5446:8;5443:21;5435:270;;;5515:4;5511:1;5507:6;5503:17;5497:4;5494:27;5491:53;;;5524:18;;:::i;:::-;5574:7;5564:8;5560:22;5557:55;;;5594:16;;;;5557:55;5673:22;;;;5633:15;;;;5435:270;;;5439:3;5289:422;;;;;:::o;5716:806::-;5765:5;5795:8;5785:80;;-1:-1:-1;5836:1:1;5850:5;;5785:80;5884:4;5874:76;;-1:-1:-1;5921:1:1;5935:5;;5874:76;5966:4;5984:1;5979:59;;;;6052:1;6047:130;;;;5959:218;;5979:59;6009:1;6000:10;;6023:5;;;6047:130;6084:3;6074:8;6071:17;6068:43;;;6091:18;;:::i;:::-;-1:-1:-1;;6147:1:1;6133:16;;6162:5;;5959:218;;6261:2;6251:8;6248:16;6242:3;6236:4;6233:13;6229:36;6223:2;6213:8;6210:16;6205:2;6199:4;6196:12;6192:35;6189:77;6186:159;;;-1:-1:-1;6298:19:1;;;6330:5;;6186:159;6377:34;6402:8;6396:4;6377:34;:::i;:::-;6447:6;6443:1;6439:6;6435:19;6426:7;6423:32;6420:58;;;6458:18;;:::i;:::-;6496:20;;5716:806;-1:-1:-1;;;5716:806:1:o;6527:140::-;6585:5;6614:47;6655:4;6645:8;6641:19;6635:4;6614:47;:::i;6672:168::-;6745:9;;;6776;;6793:15;;;6787:22;;6773:37;6763:71;;6814:18;;:::i;6977:127::-;7038:10;7033:3;7029:20;7026:1;7019:31;7069:4;7066:1;7059:15;7093:4;7090:1;7083:15;11013:125;11078:9;;;11099:10;;;11096:36;;;11112:18;;:::i;11912:402::-;12114:2;12096:21;;;12153:2;12133:18;;;12126:30;12192:34;12187:2;12172:18;;12165:62;-1:-1:-1;;;12258:2:1;12243:18;;12236:36;12304:3;12289:19;;11912:402::o;12319:217::-;12359:1;12385;12375:132;;12429:10;12424:3;12420:20;12417:1;12410:31;12464:4;12461:1;12454:15;12492:4;12489:1;12482:15;12375:132;-1:-1:-1;12521:9:1;;12319:217::o;12541:128::-;12608:9;;;12629:11;;;12626:37;;;12643:18;;:::i;12674:251::-;12744:6;12797:2;12785:9;12776:7;12772:23;12768:32;12765:52;;;12813:1;12810;12803:12;12765:52;12845:9;12839:16;12864:31;12889:5;12864:31;:::i;12930:980::-;13192:4;13240:3;13229:9;13225:19;13271:6;13260:9;13253:25;13297:2;13335:6;13330:2;13319:9;13315:18;13308:34;13378:3;13373:2;13362:9;13358:18;13351:31;13402:6;13437;13431:13;13468:6;13460;13453:22;13506:3;13495:9;13491:19;13484:26;;13545:2;13537:6;13533:15;13519:29;;13566:1;13576:195;13590:6;13587:1;13584:13;13576:195;;;13655:13;;-1:-1:-1;;;;;13651:39:1;13639:52;;13746:15;;;;13711:12;;;;13687:1;13605:9;13576:195;;;-1:-1:-1;;;;;;;13827:32:1;;;;13822:2;13807:18;;13800:60;-1:-1:-1;;;13891:3:1;13876:19;13869:35;13788:3;12930:980;-1:-1:-1;;;12930:980:1:o;14527:306::-;14615:6;14623;14631;14684:2;14672:9;14663:7;14659:23;14655:32;14652:52;;;14700:1;14697;14690:12;14652:52;14729:9;14723:16;14713:26;;14779:2;14768:9;14764:18;14758:25;14748:35;;14823:2;14812:9;14808:18;14802:25;14792:35;;14527:306;;;;;:::o
Swarm Source
ipfs://cf08b563440df9e5a78c80623300a89e090b75bea3e66fb2a02c6810470994e4
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.78
Net Worth in ETH
0.00035
Token Allocations
ETH
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,245.5 | 0.00034958 | $0.784987 |
Loading...
Loading
Loading...
Loading
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.